Home
last modified time | relevance | path

Searched refs:typeName (Results 1 – 25 of 156) sorted by relevance

1234567

/external/opencv3/3rdparty/openexr/IlmImf/
DImfAttribute.cpp105 Attribute::knownType (const char typeName[]) in knownType() argument
110 return tMap.find (typeName) != tMap.end(); in knownType()
115 Attribute::registerAttributeType (const char typeName[], in registerAttributeType() argument
121 if (tMap.find (typeName) != tMap.end()) in registerAttributeType()
123 "type \"" << typeName << "\". " in registerAttributeType()
126 tMap.insert (TypeMap::value_type (typeName, newAttribute)); in registerAttributeType()
131 Attribute::unRegisterAttributeType (const char typeName[]) in unRegisterAttributeType() argument
136 tMap.erase (typeName); in unRegisterAttributeType()
141 Attribute::newAttribute (const char typeName[]) in newAttribute() argument
146 TypeMap::const_iterator i = tMap.find (typeName); in newAttribute()
[all …]
DImfOpaqueAttribute.cpp50 OpaqueAttribute::OpaqueAttribute (const char typeName[]): in OpaqueAttribute() argument
51 _typeName (strlen (typeName) + 1), in OpaqueAttribute()
54 strcpy (_typeName, typeName); in OpaqueAttribute()
76 OpaqueAttribute::typeName () const in typeName() function in Imf::OpaqueAttribute
114 "\"" << other.typeName() << "\" " in copyValueFrom()
DImfAttribute.h70 virtual const char * typeName () const = 0;
98 static Attribute * newAttribute (const char typeName[]);
105 static bool knownType (const char typeName[]);
115 static void registerAttributeType (const char typeName[],
124 static void unRegisterAttributeType (const char typeName[]);
159 virtual const char * typeName () const;
293 TypedAttribute<T>::typeName () const in typeName() function
DImfHeader.cpp132 if (strlen (i.name()) >= 32 || strlen (i.attribute().typeName()) >= 32) in usesLongNames()
311 if (strcmp (i->second->typeName(), attribute.typeName())) in insert()
313 "type \"" << attribute.typeName() << "\" " in insert()
315 "type \"" << i->second->typeName() << "\"."); in insert()
919 Xdr::write <StreamIO> (os, i.attribute().typeName()); in writeTo()
1003 char typeName[Name::SIZE]; in readFrom() local
1006 Xdr::read <StreamIO> (is, Name::MAX_LENGTH, typeName); in readFrom()
1007 checkIsNullTerminated (typeName, "attribute type name"); in readFrom()
1020 if (strncmp (i->second->typeName(), typeName, sizeof (typeName))) in readFrom()
1038 if (Attribute::knownType (typeName)) in readFrom()
[all …]
DImfOpaqueAttribute.h66 OpaqueAttribute (const char typeName[]);
75 virtual const char * typeName () const;
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
DItemType.java52 private final String typeName; field in ItemType
63 private ItemType(int mapValue, String typeName) { in ItemType() argument
65 this.typeName = typeName; in ItemType()
68 String human = typeName; in ItemType()
90 return typeName; in getTypeName()
DStatistics.java45 String typeName = item.typeName(); in add() local
46 Data data = dataMap.get(typeName); in add()
49 dataMap.put(typeName, new Data(item, typeName)); in add()
/external/libgdx/extensions/gdx-bullet/jni/src/custom/gdx/common/
DjniHelpers.cpp3 GdxPool::GdxPool(const char * const &poolField, const char * const &typeName, const char * const &t… in GdxPool() argument
7 …: env(0), cls(0), pool(0), tmp(0), poolField(poolField), typeName(typeName), tempField(tempField),… in GdxPool()
21 cls = (jclass)env->NewGlobalRef(env->FindClass(typeName)); in setEnv()
29 if (typeName && tempField) { in setEnv()
30 jfieldID tempFieldID = env->GetStaticFieldID(cls, tempField, typeName); in setEnv()
/external/javassist/src/main/javassist/bytecode/stackmap/
DTypeData.java202 protected void setType(String typeName, ClassPool cp) throws BadBytecode { in setType() argument
203 if (update(cp, expectedName, typeName)) in setType()
204 expectedName = typeName; in setType()
253 private boolean update(ClassPool cp, String oldName, String typeName) throws BadBytecode { in update() argument
254 if (typeName == null) in update()
258 else if (oldName.equals(typeName)) in update()
260 else if (typeName.charAt(0) == '[' in update()
273 CtClass cache2 = cp.get(typeName); in update()
402 protected void setType(String typeName, ClassPool cp) throws BadBytecode { in setType() argument
403 super.setType(typeName, cp); in setType()
[all …]
/external/gptfdisk/
Dparttypes.cc315 string typeName; in TypeName() local
319 typeName = theItem->name; in TypeName()
326 typeName = "Unknown"; in TypeName()
328 return typeName; in TypeName()
336 UnicodeString typeName; in UTypeName() local
340 typeName = theItem->name.c_str(); in UTypeName()
347 typeName = "Unknown"; in UTypeName()
349 return typeName; in UTypeName()
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gwtref/gen/
DReflectionCacheGenerator.java29 …public String generate (TreeLogger logger, GeneratorContext context, String typeName) throws Unabl… in generate() argument
32 JClassType type = oracle.findType(typeName); in generate()
34 logger.log(ERROR, "Couldn't find type '" + typeName + "'"); in generate()
39 logger.log(ERROR, "Type '" + typeName + "' must be an interface"); in generate()
/external/deqp/modules/gles3/functional/
Des3fShaderPrecisionTests.cpp68 const char* typeName = glu::getDataTypeName(type); in createFloatPrecisionEvalProgram() local
77 << "in " << precName << " " << typeName << " a_in0;\n" in createFloatPrecisionEvalProgram()
78 << "in " << precName << " " << typeName << " a_in1;\n"; in createFloatPrecisionEvalProgram()
84 vtx << "flat out " << precName << " " << typeName << " v_out;\n"; in createFloatPrecisionEvalProgram()
85 frag << "flat in " << precName << " " << typeName << " v_out;\n"; in createFloatPrecisionEvalProgram()
89 vtx << "flat out " << precName << " " << typeName << " v_in0;\n" in createFloatPrecisionEvalProgram()
90 << "flat out " << precName << " " << typeName << " v_in1;\n"; in createFloatPrecisionEvalProgram()
91 frag << "flat in " << precName << " " << typeName << " v_in0;\n" in createFloatPrecisionEvalProgram()
92 << "flat in " << precName << " " << typeName << " v_in1;\n"; in createFloatPrecisionEvalProgram()
99 op << "\t" << precName << " " << typeName << " in0 = " << (isVertexCase ? "a_" : "v_") << "in0;\n" in createFloatPrecisionEvalProgram()
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DMessagePatternUtil.java239 return typeName; in getTypeName()
266 sb.append(',').append(typeName); in toString()
288 private String typeName; field in MessagePatternUtil.ArgNode
500 node.typeName = pattern.getSubstring(pattern.getPart(start++)); in buildArgNode()
507 node.typeName = "choice"; in buildArgNode()
511 node.typeName = "plural"; in buildArgNode()
515 node.typeName = "select"; in buildArgNode()
519 node.typeName = "selectordinal"; in buildArgNode()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DMessagePatternUtil.java219 return typeName; in getTypeName()
243 sb.append(',').append(typeName); in toString()
265 private String typeName; field in MessagePatternUtil.ArgNode
464 node.typeName = pattern.getSubstring(pattern.getPart(start++)); in buildArgNode()
471 node.typeName = "choice"; in buildArgNode()
475 node.typeName = "plural"; in buildArgNode()
479 node.typeName = "select"; in buildArgNode()
483 node.typeName = "selectordinal"; in buildArgNode()
/external/doclava/src/com/google/doclava/apicheck/
DXmlApiFile.java182 String typeName = attributes.getValue("type"); in startElement() local
183 TypeInfo type = Converter.obtainTypeFromString(typeName); in startElement()
187 value = ApiFile.parseValue(typeName, attributes.getValue("value")); in startElement()
204 String typeName = attributes.getValue("type"); in startElement() local
205 TypeInfo type = Converter.obtainTypeFromString(typeName); in startElement()
206 boolean isVarArg = typeName.endsWith("..."); in startElement()
211 new ParameterInfo(name, typeName, type, isVarArg, position, annotations)); in startElement()
/external/javassist/src/main/javassist/bytecode/annotation/
DAnnotation.java85 public Annotation(String typeName, ConstPool cp) { in Annotation() argument
86 this(cp.addUtf8Info(Descriptor.of(typeName)), cp); in Annotation()
306 String typeName = pool.getUtf8Info(typeIndex); in write() local
308 writer.annotation(typeName, 0); in write()
312 writer.annotation(typeName, members.size()); in write()
/external/emma/core/java12/com/vladium/emma/report/
DItem.java114 ItemMetadata (final int typeID, final String typeName, final long attributeIDs) in ItemMetadata() argument
117 if ($assert.ENABLED) $assert.ASSERT (typeName != null, "typeName = null"); in ItemMetadata()
121 m_typeName = typeName; in ItemMetadata()
/external/dagger2/compiler/src/test/java/dagger/internal/codegen/
DErrorMessagesTest.java27 String typeName = "com.google.common.collect.ImmutableList<java.lang.Boolean>"; in stripCommonTypePrefixes() local
28 assertThat(ErrorMessages.stripCommonTypePrefixes(typeName)).isEqualTo("ImmutableList<Boolean>"); in stripCommonTypePrefixes()
/external/deqp/modules/glshared/
DglsShaderConstExprTests.cpp141 …string typeName = glu::getDataTypeName((glu::DataType)(inType + compCount)); // results in … in createTests() local
145 … caseName = string(cases[caseNdx].name) + (minComponents==maxComponents ? "" : ("_" + typeName)); in createTests()
148 expressionTemplateParams["T"] = typeName; in createTests()
149 expressionTemplateParams["MT"] = typeName; in createTests()
202 …const string scalarCaseName = string(cases[caseNdx].name) + "_" + typeName + "_" + glu::getDataTyp… in createTests()
/external/deqp/modules/gles31/functional/
Des31fUniformBlockTests.cpp207 const char* typeName = glu::getDataTypeName(type); in init() local
213 …createBlockBasicTypeCases(layoutGroup, m_context, typeName, parentType, layoutFlags[layoutFlagNdx]… in init()
218 …cTypeCases(layoutGroup, m_context, (string(matrixFlags[matFlagNdx].name) + "_" + typeName).c_str(), in init()
238 const char* typeName = glu::getDataTypeName(type); in init() local
246 …createBlockBasicTypeCases(layoutGroup, m_context, typeName, parentType, layoutFlags[layoutFlagNdx]… in init()
251 …cTypeCases(layoutGroup, m_context, (string(matrixFlags[matFlagNdx].name) + "_" + typeName).c_str(), in init()
Des31fSSBOLayoutTests.cpp815 const char* typeName = glu::getDataTypeName(type); in init() local
818 …layoutGroup->addChild(new BlockBasicTypeCase(m_context, typeName, "", VarType(type, glu::PRECISION… in init()
824 const string caseName = string(glu::getPrecisionName(precision)) + "_" + typeName; in init()
837 …ng(matrixFlags[matFlagNdx].name) + "_" + string(glu::getPrecisionName(precision)) + "_" + typeName; in init()
860 const char* typeName = glu::getDataTypeName(type); in init() local
863 layoutGroup->addChild(new BlockBasicTypeCase(m_context, typeName, "", in init()
870 … BlockBasicTypeCase(m_context, (string(matrixFlags[matFlagNdx].name) + "_" + typeName).c_str(), "", in init()
891 const char* typeName = glu::getDataTypeName(type); in init() local
894 layoutGroup->addChild(new BlockBasicUnsizedArrayCase(m_context, typeName, "", in init()
901 …sicUnsizedArrayCase(m_context, (string(matrixFlags[matFlagNdx].name) + "_" + typeName).c_str(), "", in init()
[all …]
/external/doclava/src/com/google/doclava/
DParameterInfo.java27 public ParameterInfo(String name, String typeName, TypeInfo type, boolean isVarArg, in ParameterInfo() argument
30 mTypeName = typeName; in ParameterInfo()
54 String typeName() { in typeName() method in ParameterInfo
/external/icu/icu4c/source/test/cintltst/
Dsprpdata.c55 const char* typeName; in strprepProfileLineFn() local
58 typeName = fields[2][0]; in strprepProfileLineFn()
61 if(strstr(typeName, usprepTypeNames[USPREP_UNASSIGNED])!=NULL){ in strprepProfileLineFn()
68 }else if(strstr(typeName, usprepTypeNames[USPREP_PROHIBITED])!=NULL){ in strprepProfileLineFn()
75 }else if(strstr(typeName, usprepTypeNames[USPREP_MAP])!=NULL){ in strprepProfileLineFn()
/external/deqp/external/vulkancts/modules/vulkan/ubo/
DvktUniformBlockTests.cpp441 const char* typeName = glu::getDataTypeName(type); in init() local
447 …createBlockBasicTypeCases(layoutGroup, m_testCtx, typeName, parentType, layoutFlags[layoutFlagNdx]… in init()
452 …asicTypeCases(layoutGroup, m_testCtx, (std::string(matrixFlags[matFlagNdx].name) + "_" + typeName), in init()
472 const char* typeName = glu::getDataTypeName(type); in init() local
480 …createBlockBasicTypeCases(layoutGroup, m_testCtx, typeName, parentType, layoutFlags[layoutFlagNdx]… in init()
485 …asicTypeCases(layoutGroup, m_testCtx, (std::string(matrixFlags[matFlagNdx].name) + "_" + typeName), in init()
536 const char* typeName = glu::getDataTypeName(type); in init() local
539 …createBlockBasicTypeCases(layoutGroup, m_testCtx, typeName, VarType(type, 0), layoutFlags[layoutFl… in init()
543 … createBlockBasicTypeCases(layoutGroup, m_testCtx, precisionFlags[precNdx].name + "_" + typeName, in init()
552 …oup, m_testCtx, matrixFlags[matFlagNdx].name + "_" + precisionFlags[precNdx].name + "_" + typeName, in init()
[all …]
/external/llvm/lib/Target/CppBackend/
DCPPBackend.cpp125 void printType(const std::string& fname, const std::string& typeName );
563 std::string typeName(getCppName(Ty)); in printType() local
569 Out << "std::vector<Type*>" << typeName << "_args;"; in printType()
577 Out << typeName << "_args.push_back(" << argName; in printType()
583 Out << "FunctionType* " << typeName << " = FunctionType::get("; in printType()
586 nl(Out) << "/*Params=*/" << typeName << "_args,"; in printType()
595 Out << "StructType *" << typeName << " = mod->getTypeByName(\""; in printType()
599 Out << "if (!" << typeName << ") {"; in printType()
601 Out << typeName << " = "; in printType()
612 Out << "std::vector<Type*>" << typeName << "_fields;"; in printType()
[all …]

1234567