/tools/dexter/slicer/export/slicer/ |
D | dex_ir.h | 62 struct Type; 141 Type* type_value; 172 struct Type : public IndexedNode { struct 187 std::vector<Type*> types; argument 194 Type* return_type; 204 Type* type; 205 Type* parent; 243 Type* parent; 264 Type* type; 314 Type* type; [all …]
|
D | dex_ir_builder.h | 58 Type* GetType(String* descriptor); 59 Proto* GetProto(Type* return_type, TypeList* param_types); 60 FieldDecl* GetFieldDecl(String* name, Type* type, Type* parent); 61 MethodDecl* GetMethodDecl(String* name, Proto* proto, Type* parent); 62 TypeList* GetTypeList(const std::vector<Type*>& types); 65 Type* GetType(const char* descriptor) { in GetType()
|
D | code_ir.h | 66 struct Type; 102 virtual bool Visit(Type* type) { return false; } in Visit() 196 struct Type : public IndexedOperand { struct 197 ir::Type* ir_type; argument 199 Type(ir::Type* ir_type, dex::u4 index) : IndexedOperand(index), ir_type(ir_type) {} in Type() function 278 bool Visit(Type* val) override { 353 ir::Type* ir_type = nullptr; 445 Type* GetType(dex::u4 index);
|
D | reader.h | 67 ir::Type* GetType(dex::u4 index); 92 ir::Type* ParseType(dex::u4 index);
|
/tools/tradefederation/core/src/com/android/tradefed/result/ |
D | TestSummary.java | 31 public static enum Type { enum in TestSummary 35 Type() { in Type() method in TestSummary.Type 39 Type(String type) { in Type() method in TestSummary.Type 49 private Type mType; 52 this(string, Type.URI); in TypedString() 54 public TypedString(String string, Type type) { in TypedString() 58 public Type getType() { in getType()
|
/tools/dexter/slicer/ |
D | dex_ir_builder.cc | 94 Type* Builder::GetType(String* descriptor) { in GetType() 103 auto ir_type = dex_ir_->Alloc<Type>(); in GetType() 116 TypeList* Builder::GetTypeList(const std::vector<Type*>& types) { in GetTypeList() 135 static std::string CreateShorty(Type* return_type, TypeList* param_types) { in CreateShorty() 146 Proto* Builder::GetProto(Type* return_type, TypeList* param_types) { in GetProto() 178 FieldDecl* Builder::GetFieldDecl(String* name, Type* type, Type* parent) { in GetFieldDecl() 204 MethodDecl* Builder::GetMethodDecl(String* name, Proto* proto, Type* parent) { in GetMethodDecl()
|
D | dex_ir.cc | 78 std::string Type::Decl() const { in Decl() 82 Type::Category Type::GetCategory() const { in GetCategory() 136 for (Type* interfaceType : irClass->interfaces->types) { in TopSortClassIndex() 204 IndexItems(types, [](const own<Type>& a, const own<Type>& b) { in Normalize() 216 std::vector<Type*> empty; in Normalize() 222 [](const Type* t1, const Type* t2) { return t1->index < t2->index; }); in Normalize()
|
D | instrumentation.cc | 39 std::vector<ir::Type*> param_types; in Apply() 41 ir::Type* this_argument_type; in Apply() 98 std::vector<ir::Type*> param_types; in Apply() 202 std::vector<ir::Type*> param_types; in Apply() 343 std::vector<ir::Type*> param_types; in ShiftParams() 367 case ir::Type::Category::Reference: in ShiftParams() 373 case ir::Type::Category::Scalar: in ShiftParams() 379 case ir::Type::Category::WideScalar: in ShiftParams() 385 case ir::Type::Category::Void: in ShiftParams()
|
D | debuginfo_encoder.cc | 74 auto type_index = dbg_annotation->CastOperand<Type>(2)->index; in Visit() 84 auto type_index = dbg_annotation->CastOperand<Type>(2)->index; in Visit()
|
D | reader.cc | 138 ir::Type* Reader::GetType(dex::u4 index) { in GetType() 141 auto dummy = reinterpret_cast<ir::Type*>(1); in GetType() 791 ir::Type* Reader::ParseType(dex::u4 index) { in ParseType() 793 auto ir_type = dex_ir_->Alloc<ir::Type>(); in ParseType()
|
D | code_ir.cc | 602 return Alloc<Type>(dex_ir->types_map[index], index); in GetIndexedOperand() 616 Type* CodeIr::GetType(dex::u4 index) { in GetType() 618 return Alloc<Type>(ir_type, index); in GetType()
|
/tools/repohooks/tools/ |
D | checkpatch.pl | 417 our $Type; 766 $Type = qr{ 776 $Declare = qr{(?:$Storage\s+(?:$Inline\s+)?)?$Type}; 794 (?:$Storage\s+)?${Type}\s+uninitialized_var\s*\(| 828 if ($line =~ /^[ \t]*(?:#[ \t]*define|typedef\s+$Type)\s+(\w*(?:[A-Z][a-z]|[a-z][A-Z])\w*)/) { 1720 } elsif ($cur =~ /^(\(\s*$Type\s*)\)/ && $av_pending eq '_') { 1725 } elsif ($cur =~ /^($Type)\s*(?:$Ident|,|\)|\(|\s*$)/) { 1906 $Type| 1929 $possible =~ s/\s*$Type\s*//g; 3127 if ($line =~ /^\+(.*)\(\s*$Type\s*\)([ \t]++)((?![={]|\\$|$Attribute|__attribute__))/ && [all …]
|
/tools/test/graphicsbenchmark/performance_tests/helper/src/com/android/game/qualification/ |
D | ApkInfo.java | 28 public enum Type { enum in ApkInfo.Argument 40 private Type mType; 42 public Argument(String key, String value, Type type) { in Argument() 56 public Type getType() { in getType()
|
/tools/apkzlib/src/test/resources/testData/packaging/text-files/ |
D | rfc2460.txt | 372 Routing (Type 0) 463 | Option Type | Opt Data Len | Option Data 466 Option Type 8-bit identifier of the type of option. 471 Option Data Variable-length field. Option-Type-specific 480 The Option Type identifiers are internally encoded such that their 482 processing IPv6 node does not recognize the Option Type: 491 Source Address, pointing to the unrecognized Option Type. 496 pointing to the unrecognized Option Type. 498 The third-highest-order bit of the Option Type specifies whether or 520 of the Option Type, not independent of the Option Type. That is, a [all …]
|
/tools/tradefederation/core/src/com/android/tradefed/config/ |
D | OptionSetter.java | 32 import java.lang.reflect.Type; 135 private static Handler getHandler(Type type) throws ConfigurationException { in getHandler() 141 Type actualType = parameterizedType.getActualTypeArguments()[0]; in getHandler() 150 Type keyType = parameterizedType.getActualTypeArguments()[0]; in getHandler() 151 Type valueType = parameterizedType.getActualTypeArguments()[1]; in getHandler() 216 final Type type = field.getGenericType(); in getHandlerOrTimeVal() 390 Type valueType = pType.getActualTypeArguments()[1]; in setOptionValue() 404 Type keyType = pType.getActualTypeArguments()[0]; in setOptionValue() 454 Type fieldType = pType.getActualTypeArguments()[0]; in setFieldValue() 629 final Type type = field.getGenericType(); in addOptionsForObject()
|
/tools/loganalysis/src/com/android/loganalysis/util/config/ |
D | OptionSetter.java | 26 import java.lang.reflect.Type; 87 private static Handler getHandler(Type type) throws ConfigurationException { in getHandler() 93 Type actualType = parameterizedType.getActualTypeArguments()[0]; in getHandler() 101 Type keyType = parameterizedType.getActualTypeArguments()[0]; in getHandler() 102 Type valueType = parameterizedType.getActualTypeArguments()[1]; in getHandler() 357 Type keyType = pType.getActualTypeArguments()[0]; in setOptionMapValue() 358 Type valueType = pType.getActualTypeArguments()[1]; in setOptionMapValue() 451 final Type type = field.getGenericType(); in addOptionsForObject()
|
/tools/test/graphicsbenchmark/performance_tests/helper/proto/ |
D | resultdata.proto | 9 enum Type { enum 14 optional Type type = 1;
|
/tools/test/graphicsbenchmark/performance_tests/deviceside/src/com/android/game/qualification/device/ |
D | MetricsReporter.java | 37 .setType(ResultDataProto.Event.Type.APP_LAUNCH) in appLaunched() 43 .setType(ResultDataProto.Event.Type.START_LOOP) in startLoop()
|
/tools/metalava/src/main/java/com/android/tools/metalava/model/ |
D | Codebase.kt | 34 import org.objectweb.asm.Type in <lambda>() 188 val types = Type.getArgumentTypes(node.desc) in <lambda>() 212 val types = Type.getArgumentTypes(node.desc) in <lambda>()
|
/tools/test/graphicsbenchmark/performance_tests/hostside/src/com/android/game/qualification/metric/ |
D | GameQualificationFpsCollector.java | 275 if (e.getType() == ResultDataProto.Event.Type.APP_LAUNCH) { in doEnd() 281 if (e.getType() == ResultDataProto.Event.Type.START_LOOP) { in doEnd() 287 if (e.getType() != ResultDataProto.Event.Type.START_LOOP) { in doEnd()
|
/tools/dexter/dexter/ |
D | experimental.cc | 90 std::vector<ir::Type*> param_types; in StressWrapInvoke() 149 std::vector<ir::Type*> param_types; in StressEntryHook() 212 std::vector<ir::Type*> param_types; in StressExitHook() 346 std::vector<ir::Type*> param_types { builder.GetType("I") }; in CodeCoverage()
|
/tools/external_updater/ |
D | metadata.proto | 49 enum Type { enum 60 Type type = 1;
|
/tools/test/connectivity/acts/framework/acts/test_utils/bt/ |
D | bluetooth.proto | 66 // Type is unknown. 86 // Type of technology used in the connection. 296 // Type of headset profile connected
|
/tools/test/graphicsbenchmark/performance_tests/helper/test/com/android/game/qualification/ |
D | GameCoreConfigurationXmlParserTest.java | 165 assertEquals(ApkInfo.Argument.Type.STRING, args.get(0).getType()); in testApkWithArguments() 168 assertEquals(ApkInfo.Argument.Type.INT, args.get(1).getType()); in testApkWithArguments()
|
/tools/metalava/src/test/java/com/android/tools/metalava/ |
D | ApiFromTextTest.kt | 199 fun `Type use annotations`() { in Type use annotations() 681 fun `Type parameters in v3 format`() { in Type parameters in v3 format()
|