/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
D | HTMLSchema.java | 35 elementType("<pcdata>", M_EMPTY, M_PCDATA, 0); in HTMLSchema() 36 elementType("<root>", M_ROOT, M_EMPTY, 0); in HTMLSchema() 37 elementType("a", M_PCDATA|M_NOLINK, M_INLINE, 0); in HTMLSchema() 38 elementType("abbr", M_PCDATA|M_INLINE, M_INLINE|M_NOLINK, F_RESTART); in HTMLSchema() 39 elementType("acronym", M_PCDATA|M_INLINE, M_INLINE|M_NOLINK, F_RESTART); in HTMLSchema() 40 elementType("address", M_PCDATA|M_INLINE|M_P, M_BLOCK, 0); in HTMLSchema() 41 elementType("applet", M_PCDATA|M_PARAM|M_INLINE|M_BLOCK, M_INLINE|M_NOLINK, 0); in HTMLSchema() 42 elementType("area", M_EMPTY, M_AREA, 0); in HTMLSchema() 43 elementType("b", M_PCDATA|M_INLINE, M_INLINE|M_NOLINK, F_RESTART); in HTMLSchema() 44 elementType("base", M_EMPTY, M_HEAD, 0); in HTMLSchema() [all …]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
D | ArrayProto.java | 48 protected final String elementType; field in ArrayProto 65 elementType = type.substring(i); in ArrayProto() 70 @Nonnull @Override public String getType() { return makeArrayType(elementType, dimensions); } in getType() 77 @Nonnull public String getElementType() { return elementType; } in getElementType() 85 return makeArrayType(elementType, dimensions-1); in getImmediateElementType() 87 return elementType; in getImmediateElementType() 112 TypeProto thisClass = classPath.getClass(elementType); in getCommonSuperclass() 113 TypeProto otherClass = classPath.getClass(((ArrayProto)other).elementType); in getCommonSuperclass() 148 private static String makeArrayType(@Nonnull String elementType, int dimensions) { in makeArrayType() argument 149 return BRACKETS.substring(0, dimensions) + elementType; in makeArrayType()
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/ |
D | CoverageNodeImpl.java | 23 private final ElementType elementType; field in CoverageNodeImpl 53 public CoverageNodeImpl(final ElementType elementType, final String name) { in CoverageNodeImpl() argument 54 this.elementType = elementType; in CoverageNodeImpl() 97 return elementType; in getElementType() 147 final CoverageNodeImpl copy = new CoverageNodeImpl(elementType, name); in getPlainCopy() 160 sb.append(name).append(" [").append(elementType).append("]"); in toString()
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/ |
D | PsiBuilderTokenStream.java | 97 SmaliLexicalElementType elementType = (SmaliLexicalElementType)element; in buildCurrentToken() local 98 currentToken = new CommonToken(elementType.tokenId, psiBuilder.getTokenText()); in buildCurrentToken() 110 IElementType elementType = psiBuilder.lookAhead(i-1); in LA() local 111 if (elementType == null) { in LA() 113 } else if (elementType instanceof SmaliLexicalElementType) { in LA() 114 return ((SmaliLexicalElementType)elementType).tokenId; in LA() 115 } else if (elementType == TokenType.BAD_CHARACTER) { in LA()
|
D | SmaliParserDefinition.java | 81 IElementType elementType = node.getElementType(); in createElement() local 82 if (elementType instanceof SmaliStubElementType) { in createElement() 83 return ((SmaliStubElementType)elementType).createPsi(node); in createElement()
|
/external/libmojo/mojo/public/js/ |
D | validator.js | 187 offset, elementSize, elementType, nullable, expectedDimensionSizes, argument 197 return this.validateArray(arrayOffset, elementSize, elementType, 303 function (offset, elementSize, elementType, expectedDimensionSizes, argument 316 var elementsTotalSize = (elementType === codec.PackedBool) ? 333 var nullable = isNullable(elementType); 335 if (isHandleClass(elementType)) 337 if (isInterfaceClass(elementType)) 340 if (isStringClass(elementType)) 343 if (elementType instanceof codec.PointerTo) 345 elementsOffset, numElements, elementType.cls, nullable); [all …]
|
/external/guice/extensions/multibindings/src/com/google/inject/multibindings/ |
D | Multibinder.java | 193 static <T> TypeLiteral<Set<T>> setOf(TypeLiteral<T> elementType) { in setOf() argument 194 Type type = Types.setOf(elementType.getType()); in setOf() 200 TypeLiteral<T> elementType) { in collectionOfProvidersOf() argument 201 Type providerType = Types.providerOf(elementType.getType()); in collectionOfProvidersOf() 208 TypeLiteral<T> elementType) { in collectionOfJavaxProvidersOf() argument 210 Types.newParameterizedType(javax.inject.Provider.class, elementType.getType()); in collectionOfJavaxProvidersOf() 262 private final TypeLiteral<T> elementType; field in Multibinder.RealMultibinder 279 private RealMultibinder(Binder binder, TypeLiteral<T> elementType, Key<Set<T>> setKey) { in RealMultibinder() argument 281 this.elementType = checkNotNull(elementType, "elementType"); in RealMultibinder() 283 this.collectionOfProvidersKey = setKey.ofType(collectionOfProvidersOf(elementType)); in RealMultibinder() [all …]
|
/external/deqp/framework/opengl/ |
D | gluVarType.cpp | 49 VarType::VarType (const VarType& elementType, int arraySize) in VarType() argument 54 m_data.array.elementType = new VarType(elementType); in VarType() 66 delete m_data.array.elementType; in ~VarType() 75 delete m_data.array.elementType; in operator =() 82 m_data.array.elementType = new VarType(*other.m_data.array.elementType); in operator =() 96 case TYPE_ARRAY: return m_data.array.elementType->getScalarSize()*m_data.array.size; in getScalarSize() 124 return *m_data.array.elementType == *other.m_data.array.elementType && in operator ==()
|
D | gluVarType.hpp | 54 VarType (const VarType& elementType, int arraySize); //!< Array type constructor. 65 …rType& getElementType (void) const { DE_ASSERT(isArrayType()); return *m_data.array.elementType; } in getElementType() 105 VarType* elementType; member 114 array.elementType = DE_NULL; in Data()
|
/external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/serialization/ |
D | SppPropertyInfo.java | 82 public PropertyInfo elementType; field in SppPropertyInfo 101 return elementType; in getElementType() 108 public void setElementType(PropertyInfo elementType) in setElementType() argument 110 this.elementType = elementType; in setElementType()
|
D | PropertyInfo.java | 82 public PropertyInfo elementType; field in PropertyInfo 101 return elementType; in getElementType() 108 public void setElementType(PropertyInfo elementType) in setElementType() argument 110 this.elementType = elementType; in setElementType()
|
D | SoapSerializationEnvelope.java | 300 protected void readVector(XmlPullParser parser, Vector v, PropertyInfo elementType) in readVector() argument 320 if (elementType == null) { in readVector() 321 elementType = PropertyInfo.OBJECT_TYPE; in readVector() 333 v.setElementAt(read(parser, v, position, namespace, name, elementType), position); in readVector() 457 readVector(parser, (Vector) obj, expected.elementType); in readInstance() 705 writeVectorBody(writer, (Vector) element, type.elementType); in writeElement() 711 protected void writeVectorBody(XmlSerializer writer, Vector vector, PropertyInfo elementType) in writeVectorBody() argument 716 if (elementType == null) { in writeVectorBody() 717 elementType = PropertyInfo.OBJECT_TYPE; in writeVectorBody() 718 } else if (elementType instanceof PropertyInfo) { in writeVectorBody() [all …]
|
/external/deqp/modules/glshared/ |
D | glsLifetimeTests.hpp | 224 Type& elementType, Type& containerType) in Attacher() argument 226 , m_elementType (elementType) in Attacher() 285 Type& elementType, Type& containerType) in FboAttacher() argument 286 : Attacher (ctx, elementType, containerType) {} in FboAttacher() 310 TextureFboAttacher (const Context& ctx, Type& elementType, Type& containerType) in TextureFboAttacher() argument 311 : FboAttacher (ctx, elementType, containerType) {} in TextureFboAttacher() 322 RboFboAttacher (const Context& ctx, Type& elementType, Type& containerType) in RboFboAttacher() argument 323 : FboAttacher (ctx, elementType, containerType) {} in RboFboAttacher() 335 Type& elementType, Type& containerType) in ShaderProgramAttacher() argument 336 : Attacher (ctx, elementType, containerType) {} in ShaderProgramAttacher()
|
D | glsUniformBlockCase.hpp | 77 VarType (const VarType& elementType, int arraySize); 88 const VarType& getElementType (void) const { return *m_data.array.elementType; } in getElementType() 112 VarType* elementType; member 119 array.elementType = DE_NULL; in Data()
|
/external/guice/core/src/com/google/inject/util/ |
D | Types.java | 99 public static ParameterizedType listOf(Type elementType) { in listOf() argument 100 return newParameterizedType(List.class, elementType); in listOf() 109 public static ParameterizedType setOf(Type elementType) { in setOf() argument 110 return newParameterizedType(Set.class, elementType); in setOf()
|
/external/clang/utils/ABITest/ |
D | TypeGen.py | 117 def __init__(self, index, isVector, elementType, size): argument 125 self.elementType = elementType 128 eltSize = self.elementType.sizeof() 136 return 'vector (%s)[%d]'%(self.elementType,self.size) 138 return '(%s)[%d]'%(self.elementType,self.size) 140 return '(%s)[]'%(self.elementType,) 143 elementName = printer.getTypeName(self.elementType) 156 def __init__(self, index, elementType): argument 158 self.elementType = elementType 161 return '_Complex (%s)'%(self.elementType) [all …]
|
D | ABITestGen.py | 241 for t in self.getTestValues(t.elementType): 244 values = list(self.getTestValues(t.elementType)) 302 … self.printValueOfType(prefix, '(__real %s)'%name, t.elementType, output=output,indent=indent) 303 … self.printValueOfType(prefix, '(__imag %s)'%name, t.elementType, output=output,indent=indent) 309 …self.printValueOfType(prefix, '((%s*) &%s)[%d]'%(t.elementType,name,i), t.elementType, output=outp… 311 …self.printValueOfType(prefix, '%s[%d]'%(name,i), t.elementType, output=output,indent=indent) … 332 …self.checkTypeValues('(__real %s)'%nameLHS, '(__real %s)'%nameRHS, t.elementType, output=output,in… 333 …self.checkTypeValues('(__imag %s)'%nameLHS, '(__imag %s)'%nameRHS, t.elementType, output=output,in… 339 self.checkTypeValues('((%s*) &%s)[%d]'%(t.elementType,nameLHS,i), 340 '((%s*) &%s)[%d]'%(t.elementType,nameRHS,i), [all …]
|
/external/javassist/sample/vector/ |
D | VectorAssistant.java | 61 CtClass elementType = pool.get(args[0]); in assist() local 62 if (elementType.isPrimitive()) in assist() 63 subclass = makeSubclass2(pool, elementType); in assist() 65 subclass = makeSubclass(pool, elementType); in assist()
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/ |
D | SmaliCatchStatement.java | 50 protected SmaliCatchStatement(IElementType elementType) { in SmaliCatchStatement() argument 51 super(elementType); in SmaliCatchStatement()
|
/external/deqp/framework/randomshaders/ |
D | rsgVariableType.hpp | 133 VariableType (Type baseType, const VariableType& elementType, int numElements); 196 inline VariableType::VariableType (Type baseType, const VariableType& elementType, int numElements) in VariableType() argument 201 , m_elementType (new VariableType(elementType)) in VariableType()
|
/external/pdfium/xfa/fxfa/parser/ |
D | cxfa_object.cpp | 16 XFA_Element elementType, in CXFA_Object() argument 20 m_elementType(elementType), in CXFA_Object()
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/check/ |
D | Rule.java | 55 public void setElement(final ElementType elementType) { in setElement() argument 56 this.element = elementType; in setElement()
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/stub/ |
D | SmaliBaseReferenceListStub.java | 49 …@NotNull StubElement parent, @NotNull IStubElementType elementType, @NotNull String[] smaliTypeNam… in SmaliBaseReferenceListStub() argument 50 super(parent, elementType); in SmaliBaseReferenceListStub()
|
/external/deqp/external/vulkancts/modules/vulkan/ubo/ |
D | vktUniformBlockCase.hpp | 79 VarType (const VarType& elementType, int arraySize); 90 const VarType& getElementType (void) const { return *m_data.array.elementType; } in getElementType() 114 VarType* elementType; member 121 array.elementType = DE_NULL; in Data()
|
D | vktUniformBlockCase.cpp | 78 VarType::VarType (const VarType& elementType, int arraySize) in VarType() argument 83 m_data.array.elementType = new VarType(elementType); in VarType() 96 delete m_data.array.elementType; in ~VarType() 105 delete m_data.array.elementType; in operator =() 113 m_data.array.elementType = new VarType(*other.m_data.array.elementType); in operator =() 1032 bool isMatrix (glu::DataType elementType) in isMatrix() argument 1034 return (elementType >= glu::TYPE_FLOAT_MAT2) && (elementType <= glu::TYPE_FLOAT_MAT4); in isMatrix() 1105 void generateTestSrcMatrixPerVec (glu::DataType elementType, in generateTestSrcMatrixPerVec() argument 1113 switch (elementType) in generateTestSrcMatrixPerVec() 1148 void generateTestSrcMatrixPerElement (glu::DataType elementType, in generateTestSrcMatrixPerElement() argument [all …]
|