/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/mobly/ |
D | MoblyYamlResultHandlerFactory.java | 27 resultHandler = Type.RECORD.getHandlerInstance(); in getHandler() 30 resultHandler = Type.USER_DATA.getHandlerInstance(); in getHandler() 33 resultHandler = Type.TEST_NAME_LIST.getHandlerInstance(); in getHandler() 36 resultHandler = Type.CONTROLLER_INFO.getHandlerInstance(); in getHandler() 39 resultHandler = Type.SUMMARY.getHandlerInstance(); in getHandler() 54 public enum Type { enum in MoblyYamlResultHandlerFactory 64 Type(String tag, Class handlerClass) { in Type() method in MoblyYamlResultHandlerFactory.Type
|
D | MoblyYamlResultControllerInfoHandler.java | 19 import com.android.tradefed.testtype.mobly.MoblyYamlResultHandlerFactory.Type; 42 public Type getType() { in getType() 43 return Type.CONTROLLER_INFO; in getType()
|
D | MoblyYamlResultTestNameListHandler.java | 35 public MoblyYamlResultHandlerFactory.Type getType() { in getType() 36 return MoblyYamlResultHandlerFactory.Type.TEST_NAME_LIST; in getType()
|
D | MoblyYamlResultSummaryHandler.java | 41 public MoblyYamlResultHandlerFactory.Type getType() { in getType() 42 return MoblyYamlResultHandlerFactory.Type.SUMMARY; in getType()
|
D | MoblyYamlResultUserDataHandler.java | 41 public MoblyYamlResultHandlerFactory.Type getType() { in getType() 42 return MoblyYamlResultHandlerFactory.Type.USER_DATA; in getType()
|
D | MoblyYamlResultRecordHandler.java | 19 import com.android.tradefed.testtype.mobly.MoblyYamlResultHandlerFactory.Type; 69 public Type getType() { in getType() 70 return Type.RECORD; in getType()
|
D | IMoblyYamlResultHandler.java | 30 MoblyYamlResultHandlerFactory.Type getType(); in getType()
|
/tools/dexter/slicer/export/slicer/ |
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 | 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 | 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);
|
/tools/tradefederation/core/invocation_interfaces/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/tradefederation/core/src/com/android/tradefed/cluster/ |
D | TradefedConfigObject.java | 44 public static enum Type { enum in TradefedConfigObject 50 private final Type mType; 54 TradefedConfigObject(Type type, String className, MultiMap<String, String> optionValues) { in TradefedConfigObject() 60 public Type getType() { in getType() 89 Type type = Type.valueOf(json.optString("type", Type.UNKNOWN.name())); in fromJson()
|
D | ClusterCommandEvent.java | 45 public enum Type { enum in ClusterCommandEvent 60 private Type mType; 78 public Type getType() { in getType() 105 private Type mType; 120 public Builder setType(final Type type) { in setType()
|
/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 | instrumentation.cc | 34 ir::Type* type, in BoxValue() 70 std::vector<ir::Type*> param_types; in BoxValue() 118 std::vector<ir::Type*> param_types; in Apply() 120 ir::Type* this_argument_type; in Apply() 165 …auto param_types = param_types_list != nullptr ? param_types_list->types : std::vector<ir::Type*>(… in InjectArrayParamsHook() 170 needsBoxingReg |= type->GetCategory() != ir::Type::Category::Reference; in InjectArrayParamsHook() 209 code_ir->Alloc<lir::Type>(obj_array_type, obj_array_type->orig_index)); in InjectArrayParamsHook() 214 std::vector<ir::Type*> types; in InjectArrayParamsHook() 228 if (type->GetCategory() != ir::Type::Category::Reference) { in InjectArrayParamsHook() 231 current_reg += 1 + (type->GetCategory() == ir::Type::Category::WideScalar); in InjectArrayParamsHook() [all …]
|
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()
|
/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/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/tradefederation/core/tests/src/com/android/tradefed/cluster/ |
D | ClusterCommandEventTest.java | 37 .setType(ClusterCommandEvent.Type.InvocationStarted) in testToJSON() 59 .setType(ClusterCommandEvent.Type.InvocationStarted) in testToJSON_noDeviceSerial()
|
D | ClusterCommandSchedulerTest.java | 586 ClusterCommandEvent.Type type, Set<String> deviceSerials) { 611 static ClusterCommandEvent checkClusterCommandEvent(ClusterCommandEvent.Type type) { 632 checkClusterCommandEvent(ClusterCommandEvent.Type.InvocationInitiated)); 635 checkClusterCommandEvent(ClusterCommandEvent.Type.InvocationStarted)); 638 checkClusterCommandEvent(ClusterCommandEvent.Type.TestRunInProgress)); 641 checkClusterCommandEvent(ClusterCommandEvent.Type.InvocationEnded)); 651 new TestSummary(new TestSummary.TypedString("http://uri", TestSummary.Type.URI))); 669 assertTrue(capturedEvent.getType().equals(ClusterCommandEvent.Type.InvocationCompleted)); 704 checkClusterCommandEvent(ClusterCommandEvent.Type.InvocationInitiated)); 707 checkClusterCommandEvent(ClusterCommandEvent.Type.InvocationStarted)); [all …]
|
/tools/external_updater/ |
D | metadata.proto | 49 enum Type { enum 60 Type type = 1;
|
/tools/test/connectivity/acts/tests/google/fuchsia/bt/pts/ |
D | GATT_PTS_INSTRUCTIONS | 73 [Fuchsia interaction] Type 'y' on the bt-pairing-tool 96 [Fuchsia interaction] Type 'y' on the bt-pairing-tool 119 [Fuchsia interaction] Type 'y' on the bt-pairing-tool 162 [Fuchsia interaction] Type 'y' on the bt-pairing-tool 194 Fuchsia interaction] Type 'y' on the bt-pairing-tool
|
/tools/platform-compat/java/android/processor/compat/unsupportedappusage/ |
D | SignatureConverter.java | 21 import com.sun.tools.javac.code.Type; 159 Type.TypeVar typeVar = (Type.TypeVar) type; in getTypeSignature()
|
/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()
|