/external/llvm/unittests/Support/ |
D | TypeNameTest.cpp | 26 StringRef S1Name = getTypeName<N1::S1>(); in TEST() 27 StringRef C1Name = getTypeName<N1::C1>(); in TEST() 28 StringRef U1Name = getTypeName<N1::U1>(); in TEST() 29 StringRef S2Name = getTypeName<S2>(); in TEST()
|
/external/llvm-project/llvm/unittests/Support/ |
D | TypeNameTest.cpp | 25 StringRef S1Name = getTypeName<N1::S1>(); in TEST() 26 StringRef C1Name = getTypeName<N1::C1>(); in TEST() 27 StringRef U1Name = getTypeName<N1::U1>(); in TEST() 28 StringRef S2Name = getTypeName<S2>(); in TEST()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
D | RecordName.cpp | 82 Name.append(Types.getTypeName(Indices[I])); in visitKnownRecord() 96 Name.append(Types.getTypeName(Indices[I])); in visitKnownRecord() 135 StringRef Ret = Types.getTypeName(Proc.getReturnType()); in visitKnownRecord() 136 StringRef Params = Types.getTypeName(Proc.getArgumentList()); in visitKnownRecord() 143 StringRef Ret = Types.getTypeName(MF.getReturnType()); in visitKnownRecord() 144 StringRef Class = Types.getTypeName(MF.getClassType()); in visitKnownRecord() 145 StringRef Params = Types.getTypeName(MF.getArgumentList()); in visitKnownRecord() 165 StringRef Pointee = Types.getTypeName(Ptr.getReferentType()); in visitKnownRecord() 166 StringRef Class = Types.getTypeName(MI.getContainingType()); in visitKnownRecord() 169 Name.append(Types.getTypeName(Ptr.getReferentType())); in visitKnownRecord() [all …]
|
/external/skia/tests/ |
D | FlattenDrawableTest.cpp | 49 const char* getTypeName() const override { return "IntDrawable"; } in getTypeName() function in IntDrawable 82 const char* getTypeName() const override { return "PaintDrawable"; } in getTypeName() function in PaintDrawable 113 SkASSERT(!strcmp("IntDrawable", intDrawable->getTypeName())); in CreateProc() 118 SkASSERT(!strcmp("PaintDrawable", paintDrawable->getTypeName())); in CreateProc() 129 const char* getTypeName() const override { return "CompoundDrawable"; } in getTypeName() function in CompoundDrawable 166 SkASSERT(!strcmp("CompoundDrawable", compoundDrawable->getTypeName())); in CreateProc() 171 SkASSERT(!strcmp("IntDrawable", intDrawable->getTypeName())); in CreateProc() 188 const char* getTypeName() const override { return "RootDrawable"; } in getTypeName() function in RootDrawable 227 REPORTER_ASSERT(r, !strcmp("RootDrawable", out->getTypeName())); in DEF_TEST() 243 REPORTER_ASSERT(r, !strcmp("IntDrawable", generic->getTypeName())); in DEF_TEST() [all …]
|
/external/llvm-project/llvm/lib/DebugInfo/CodeView/ |
D | RecordName.cpp | 82 Name.append(Types.getTypeName(Indices[I])); in visitKnownRecord() 98 Name.append(Types.getTypeName(Indices[I])); in visitKnownRecord() 137 StringRef Ret = Types.getTypeName(Proc.getReturnType()); in visitKnownRecord() 138 StringRef Params = Types.getTypeName(Proc.getArgumentList()); in visitKnownRecord() 145 StringRef Ret = Types.getTypeName(MF.getReturnType()); in visitKnownRecord() 146 StringRef Class = Types.getTypeName(MF.getClassType()); in visitKnownRecord() 147 StringRef Params = Types.getTypeName(MF.getArgumentList()); in visitKnownRecord() 167 StringRef Pointee = Types.getTypeName(Ptr.getReferentType()); in visitKnownRecord() 168 StringRef Class = Types.getTypeName(MI.getContainingType()); in visitKnownRecord() 171 Name.append(Types.getTypeName(Ptr.getReferentType())); in visitKnownRecord() [all …]
|
/external/skqp/tests/ |
D | FlattenDrawableTest.cpp | 49 const char* getTypeName() const override { return "IntDrawable"; } in getTypeName() function in IntDrawable 82 const char* getTypeName() const override { return "PaintDrawable"; } in getTypeName() function in PaintDrawable 113 SkASSERT(!strcmp("IntDrawable", intDrawable->getTypeName())); in CreateProc() 118 SkASSERT(!strcmp("PaintDrawable", paintDrawable->getTypeName())); in CreateProc() 129 const char* getTypeName() const override { return "CompoundDrawable"; } in getTypeName() function in CompoundDrawable 166 SkASSERT(!strcmp("CompoundDrawable", compoundDrawable->getTypeName())); in CreateProc() 171 SkASSERT(!strcmp("IntDrawable", intDrawable->getTypeName())); in CreateProc() 188 const char* getTypeName() const override { return "RootDrawable"; } in getTypeName() function in RootDrawable 227 REPORTER_ASSERT(r, !strcmp("RootDrawable", out->getTypeName())); in DEF_TEST() 243 REPORTER_ASSERT(r, !strcmp("IntDrawable", generic->getTypeName())); in DEF_TEST() [all …]
|
/external/autotest/frontend/client/src/autotest/tko/ |
D | ParameterizedField.java | 20 this.type = field.getTypeName(); in FieldIdentifier() 53 prototypeNames.add(prototype.getTypeName()); in prototype.getTypeName() 76 if (name.startsWith(prototype.getTypeName())) { in getPrototype() 109 public abstract String getTypeName(); in getTypeName() method in ParameterizedField 118 return getTypeName() + ": " + getValue(); in getName()
|
/external/javassist/src/main/javassist/bytecode/annotation/ |
D | AnnotationImpl.java | 88 public String getTypeName() { in getTypeName() method in AnnotationImpl 89 return annotation.getTypeName(); in getTypeName() 100 String typeName = annotation.getTypeName(); in getAnnotationType() 157 String classname = annotation.getTypeName(); in getDefault() 212 …timeException("Error retrieving value " + name + " for annotation " + annotation.getTypeName(), e); in hashCode() 273 …timeException("Error retrieving value " + name + " for annotation " + annotation.getTypeName(), e); in checkEquals()
|
D | Annotation.java | 214 buf.append(getTypeName()); in toString() 234 public String getTypeName() { in getTypeName() method in Annotation 284 Class<?> clazz = MemberValue.loadClass(cl, getTypeName()); in toAnnotationType() 323 return getTypeName().hashCode() + in hashCode() 340 if (getTypeName().equals(other.getTypeName()) == false) in equals()
|
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/metamodel/ |
D | PropertyMetaModelTest.java | 15 assertEquals("int", bert.getTypeName()); in whenPropertyIsVerySimpleThenTypeInfoIsCorrect() 24 assertEquals("BodyDeclaration", bert.getTypeName()); in whenPropertyIsVeryComplexThenTypeInfoIsCorrect() 33 assertEquals("Modifier", bert.getTypeName()); in whenPropertyIsANodeListThenTypeInfoIsCorrect()
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/metamodel/ |
D | PropertyMetaModel.java | 135 return "(" + getTypeName() + ")\t" + containingNodeMetaModel + "#" + name; in toString() 163 return getTypeName() + "<?>"; in getTypeNameGenerified() 165 return getTypeName(); in getTypeNameGenerified() 171 public String getTypeName() { in getTypeName() method in PropertyMetaModel
|
D | BaseNodeMetaModel.java | 164 return getTypeName() + "<?>"; in getTypeNameGenerified() 166 return getTypeName(); in getTypeNameGenerified() 172 public String getTypeName() { in getTypeName() method in BaseNodeMetaModel
|
/external/skia/include/core/ |
D | SkFlattenable.h | 56 virtual const char* getTypeName() const = 0; 105 const char* getTypeName() const override { return #type; } 114 const char* getTypeName() const override { return #type; }
|
/external/tensorflow/tensorflow/compiler/mlir/tfr/ir/ |
D | tfr_types.h | 97 static std::string getTypeName() { return "TFRTensorType"; } in getTypeName() function 103 static std::string getTypeName() { return "TFRTensorListType"; } in getTypeName() function 109 static std::string getTypeName() { return "TFRAttrType"; } in getTypeName() function
|
/external/javaparser/javaparser-core-testing/src/test/java/com/github/javaparser/ast/expr/ |
D | ThisExprTest.java | 21 Name className = expr.asThisExpr().getTypeName().get(); in singleScopeThis() 30 Name className = expr.asThisExpr().getTypeName().get(); in multiScopeThis()
|
D | SuperExprTest.java | 20 Name className = expr.asSuperExpr().getTypeName().get(); in singleScopeSuper() 29 Name className = expr.asSuperExpr().getTypeName().get(); in multiScopeSuper()
|
/external/llvm/lib/DebugInfo/CodeView/ |
D | TypeDumper.cpp | 250 StringRef ArgTypeName = getTypeName(Indices[I]); in visitArgList() 339 StringRef ReturnTypeName = getTypeName(Proc.getReturnType()); in visitProcedure() 340 StringRef ArgListTypeName = getTypeName(Proc.getArgumentList()); in visitProcedure() 360 StringRef ReturnTypeName = getTypeName(MF.getReturnType()); in visitMemberFunction() 361 StringRef ClassTypeName = getTypeName(MF.getClassType()); in visitMemberFunction() 362 StringRef ArgListTypeName = getTypeName(MF.getArgumentList()); in visitMemberFunction() 420 StringRef PointeeName = getTypeName(Ptr.getReferentType()); in visitPointer() 421 StringRef ClassName = getTypeName(MI.getContainingType()); in visitPointer() 436 TypeName.append(getTypeName(Ptr.getReferentType())); in visitPointer() 456 StringRef ModifiedName = getTypeName(Mod.getModifiedType()); in visitModifier() [all …]
|
/external/llvm/tools/llvm-pdbdump/ |
D | BuiltinDumper.cpp | 23 WithColor(Printer, PDB_ColorItem::Type).get() << getTypeName(Symbol); in start() 26 StringRef BuiltinDumper::getTypeName(const PDBSymbolTypeBuiltin &Symbol) { in getTypeName() function in BuiltinDumper
|
/external/llvm-project/llvm/tools/llvm-pdbutil/ |
D | PrettyBuiltinDumper.cpp | 25 WithColor(Printer, PDB_ColorItem::Type).get() << getTypeName(Symbol); in start() 28 StringRef BuiltinDumper::getTypeName(const PDBSymbolTypeBuiltin &Symbol) { in getTypeName() function in BuiltinDumper
|
/external/javaparser/javaparser-core-generators/src/main/java/com/github/javaparser/generator/ |
D | NodeGenerator.java | 30 …t nodeCu = sourceRoot.parse(nodeMetaModel.getPackageName(), nodeMetaModel.getTypeName() + ".java"); in parseNode() 31 …ClassOrInterfaceDeclaration nodeCoid = nodeCu.getClassByName(nodeMetaModel.getTypeName()).orElseTh… in parseNode()
|
/external/skqp/include/core/ |
D | SkFlattenable.h | 56 virtual const char* getTypeName() const = 0; 104 const char* getTypeName() const override { return #type; }
|
/external/javaparser/javaparser-core-generators/src/main/java/com/github/javaparser/generator/core/visitor/ |
D | EqualsVisitorGenerator.java | 28 body.addStatement(f("final %s n2 = (%s) arg;", node.getTypeName(), node.getTypeName())); in generateVisitMethodBody()
|
/external/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
D | NativeInlineSiteSymbol.cpp | 78 QualifiedName.append(std::string(Types.getTypeName(ClassTy))); in getName() 86 QualifiedName.append(std::string(Ids.getTypeName(ParentScope))); in getName() 91 QualifiedName.append(std::string(Ids.getTypeName(Sym.Inlinee))); in getName()
|
/external/clang/utils/ABITest/ |
D | TypeGen.py | 27 def getTypeName(self, printer): member in Type 49 def getTypeName(self, printer): member in BuiltinType 105 return '%s : 0;'%(printer.getTypeName(t),) 107 return '%s field%d : %d;'%(printer.getTypeName(t),i, 110 return '%s field%d;'%(printer.getTypeName(t),i) 143 elementName = printer.getTypeName(self.elementType) 164 return 'typedef _Complex %s %s;'%(printer.getTypeName(self.elementType), name)
|
/external/llvm-project/clang/utils/ABITest/ |
D | TypeGen.py | 28 def getTypeName(self, printer): member in Type 50 def getTypeName(self, printer): member in BuiltinType 107 return '%s : 0;'%(printer.getTypeName(t),) 109 return '%s field%d : %d;'%(printer.getTypeName(t),i, 112 return '%s field%d;'%(printer.getTypeName(t),i) 145 elementName = printer.getTypeName(self.elementType) 166 return 'typedef _Complex %s %s;'%(printer.getTypeName(self.elementType), name)
|