/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 | reader.h | 67 ir::Type* GetType(dex::u4 index); 92 ir::Type* ParseType(dex::u4 index);
|
D | writer.h | 210 dex::u4 WriteTypeList(const std::vector<ir::Type*>& types);
|
/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 | 27 std::vector<ir::Type*> param_types; in Apply() 29 ir::Type* this_argument_type; in Apply() 84 std::vector<ir::Type*> param_types; in Apply() 193 std::vector<ir::Type*> param_types; in Apply() 308 std::vector<ir::Type*> param_types; in ShiftParams() 332 case ir::Type::Category::Reference: in ShiftParams() 338 case ir::Type::Category::Scalar: in ShiftParams() 344 case ir::Type::Category::WideScalar: in ShiftParams() 350 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 | 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()
|
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 | writer.cc | 624 dex::u4 Writer::WriteTypeList(const std::vector<ir::Type*>& types) { in WriteTypeList()
|
/tools/test/connectivity/acts/framework/acts/test_utils/bt/ |
D | bluetooth.proto | 47 // Type is unknown. 67 // Type of technology used in the connection. 160 // Type is unknown. 188 // Scan Type is unknown.
|
/tools/tradefederation/core/src/com/android/tradefed/config/ |
D | OptionSetter.java | 31 import java.lang.reflect.Type; 131 private static Handler getHandler(Type type) throws ConfigurationException { in getHandler() 137 Type actualType = parameterizedType.getActualTypeArguments()[0]; in getHandler() 146 Type keyType = parameterizedType.getActualTypeArguments()[0]; in getHandler() 147 Type valueType = parameterizedType.getActualTypeArguments()[1]; in getHandler() 212 final Type type = field.getGenericType(); in getHandlerOrTimeVal() 386 Type valueType = pType.getActualTypeArguments()[1]; in setOptionValue() 400 Type keyType = pType.getActualTypeArguments()[0]; in setOptionValue() 450 Type fieldType = pType.getActualTypeArguments()[0]; in setFieldValue() 625 final Type type = field.getGenericType(); in addOptionsForObject()
|
D | Configuration.java | 56 import java.lang.reflect.Type; 1053 Type fieldType = field.getGenericType(); in getOptionJson() 1056 Type[] paramTypes = ((ParameterizedType) fieldType).getActualTypeArguments(); in getOptionJson()
|
/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/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/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() 343 std::vector<ir::Type*> param_types { builder.GetType("I") }; in CodeCoverage()
|
D | dissasembler.h | 46 virtual bool Visit(lir::Type* type) override;
|
D | dissasembler.cc | 197 bool PrintCodeIrVisitor::Visit(lir::Type* type) { in Visit()
|
/tools/tradefederation/core/src/com/android/tradefed/result/suite/ |
D | SuiteResultReporter.java | 25 import com.android.tradefed.result.TestSummary.Type; 352 TestSummary summary = new TestSummary(new TypedString(mSummary.toString(), Type.TEXT)); in getSummary()
|
/tools/apksig/src/apksigner/java/com/android/apksigner/ |
D | help_sign.txt | 137 --ks-type Type/algorithm of KeyStore to use. By default, the default
|
/tools/tradefederation/core/res/jacoco/ |
D | jacocoagent.jar | META-INF/MANIFEST.MF
META-INF/MTNMINDS.SF
META-INF/MTNMINDS ... |
D | jacocoant.jar | META-INF/MANIFEST.MF
META-INF/MTNMINDS.SF
META-INF/MTNMINDS ... |