Home
last modified time | relevance | path

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

/external/r8/src/main/java/com/android/tools/r8/graph/
DDexItemFactory.java167 compare = createMethod(boxedLongDescriptor, in LongMethods()
178 addSuppressed = createMethod(throwableDescriptor, in ThrowableMethods()
180 getSuppressed = createMethod(throwableDescriptor, in ThrowableMethods()
190 getClass = createMethod(objectsDescriptor, in ObjectMethods()
200 requireNonNull = createMethod(objectsDescriptor, in ObjectsMethods()
210 desiredAssertionStatus = createMethod(classDescriptor, in ClassMethods()
240 appendBoolean = createMethod(receiver, createProto(receiver, booleanType), append); in StringBuildingMethods()
241 appendChar = createMethod(receiver, createProto(receiver, charType), append); in StringBuildingMethods()
242 appendCharArray = createMethod(receiver, createProto(receiver, charArrayType), append); in StringBuildingMethods()
244 createMethod(receiver, createProto(receiver, charArrayType, intType, intType), append); in StringBuildingMethods()
[all …]
DDexEncodedMethod.java280 .createMethod(itemFactory.createType("Landroid/util/Log;"), proto, in toMethodThatLogsError()
284 .createMethod(exceptionType, itemFactory.createProto(itemFactory.voidType, in toMethodThatLogsError()
328 DexMethod newMethod = factory.createMethod(method.holder, method.proto, name); in toRenamedMethod()
336 DexMethod newMethod = itemFactory.createMethod(holder.type, method.proto, method.name); in toForwardingMethod()
DJarApplicationReader.java83 return options.itemFactory.createMethod(owner, getProto(desc), getString(name)); in getMethod()
/external/dagger2/compiler/src/main/java/dagger/internal/codegen/
DMapKeyGenerator.java130 MethodWriter createMethod = in writeCreateMethod() local
134 createMethod.annotate(AutoAnnotation.class); in writeCreateMethod()
135 createMethod.addModifiers(PUBLIC, STATIC); in writeCreateMethod()
141 createMethod.addParameter(parameterType, parameterName); in writeCreateMethod()
146 "AutoAnnotation_" + mapKeyCreatorWriter.name().simpleName() + "_" + createMethod.name()); in writeCreateMethod()
147 createMethod.body().addSnippet( in writeCreateMethod()
/external/r8/src/main/java/com/android/tools/r8/ir/desugar/
DLambdaMainMethodSourceCode.java423 return factory.createMethod(boxType, proto, factory.unboxBooleanMethodName); in getUnboxMethod()
426 return factory.createMethod(boxType, proto, factory.unboxByteMethodName); in getUnboxMethod()
429 return factory.createMethod(boxType, proto, factory.unboxShortMethodName); in getUnboxMethod()
432 return factory.createMethod(boxType, proto, factory.unboxCharMethodName); in getUnboxMethod()
435 return factory.createMethod(boxType, proto, factory.unboxIntMethodName); in getUnboxMethod()
438 return factory.createMethod(boxType, proto, factory.unboxLongMethodName); in getUnboxMethod()
441 return factory.createMethod(boxType, proto, factory.unboxFloatMethodName); in getUnboxMethod()
444 return factory.createMethod(boxType, proto, factory.unboxDoubleMethodName); in getUnboxMethod()
468 DexMethod method = factory.createMethod(boxType, proto, factory.valueOfMethodName); in addPrimitiveBoxing()
DLambdaClass.java74 this.constructor = factory.createMethod( in LambdaClass()
81 : factory.createMethod(lambdaClassType, constructorProto, rewriter.classConstructorName); in LambdaClass()
144 .createMethod(type, descriptor.erasedProto, descriptor.name); in synthesizeVirtualMethods()
154 DexMethod bridgeMethod = rewriter.factory.createMethod(type, bridgeProto, descriptor.name); in synthesizeVirtualMethods()
285 rewriter.factory.createMethod(implMethod.holder, newProto, implMethod.name)); in createLambdaImplMethodTarget()
310 DexMethod accessorMethod = rewriter.factory.createMethod( in createInstanceMethodTarget()
328 DexMethod accessorMethod = rewriter.factory.createMethod(accessedFrom, in createStaticMethodTarget()
352 DexMethod accessorMethod = rewriter.factory.createMethod(accessedFrom, in createConstructorTarget()
DLambdaRewriter.java104 this.metafactoryMethod = factory.createMethod(metafactoryType, in LambdaRewriter()
109 this.metafactoryAltMethod = factory.createMethod(metafactoryType, in LambdaRewriter()
116 this.objectInitMethod = factory.createMethod(factory.objectType, initProto, constructorName); in LambdaRewriter()
DInterfaceMethodRewriter.java175 return factory.createMethod(getCompanionClassType(method.holder), method.proto, method.name); in staticAsMethodOfCompanionClass()
187 return factory.createMethod(getCompanionClassType(method.holder), in defaultAsMethodOfCompanionClass()
DClassProcessor.java101 DexMethod newMethod = rewriter.factory.createMethod(clazz.type, method.proto, method.name); in addForwardingMethod()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/
DClassCoverageImplTest.java101 node.addMethod(createMethod(false)); in testAddMethodMissed()
109 node.addMethod(createMethod(true)); in testAddMethodCovered()
115 private MethodCoverageImpl createMethod(boolean covered) { in createMethod() method in ClassCoverageImplTest
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/
DNamePrepTransform.java190 … Method createMethod = cls.getMethod("createFromRules", String.class, String.class, Integer.TYPE); in initialize() local
191 translitInstance = createMethod.invoke(null, id, rule, Integer.valueOf(direction)); in initialize()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
DNamePrepTransform.java189 … Method createMethod = cls.getMethod("createFromRules", String.class, String.class, Integer.TYPE); in initialize() local
190 translitInstance = createMethod.invoke(null, id, rule, Integer.valueOf(direction)); in initialize()
/external/r8/src/test/java/com/android/tools/r8/graph/
DTargetLookupTest.java134 application.dexItemFactory.createMethod(classTest, methodXProto, methodXName); in lookupDirectSuper()
/external/swiftshader/third_party/LLVM/include/llvm/Analysis/
DDIBuilder.h445 DISubprogram createMethod(DIDescriptor Scope, StringRef Name,
/external/r8/src/main/java/com/android/tools/r8/optimize/
DMemberRebindingAnalysis.java47 return appInfo.dexItemFactory.createMethod(newHolder, original.proto, original.name); in validTargetFor()
/external/llvm/include/llvm/IR/
DDIBuilder.h572 createMethod(DIScope *Scope, StringRef Name, StringRef LinkageName,
/external/r8/src/test/java/com/android/tools/r8/maindexlist/
DMainDexListTests.java412 factory.createMethod( in generateApplication()
/external/r8/src/main/java/com/android/tools/r8/ir/optimize/
DCodeRewriter.java1462 DexMethod print = dexItemFactory.createMethod(javaIoPrintStreamType, proto, "print");
1463 DexMethod printLn = dexItemFactory.createMethod(javaIoPrintStreamType, proto, "println");
DOutliner.java139 return dexItemFactory.createMethod(clazz, buildProto(), name); in buildMethod()
/external/r8/src/main/java/com/android/tools/r8/shaking/
DSimpleClassMerger.java477 DexMethod newMethod = application.dexItemFactory.createMethod(newHolder, newProto, in substituteTypesIn()
/external/r8/src/test/java/com/android/tools/r8/utils/
DDexInspector.java394 dexItemFactory.createMethod(dexClass.type, proto, dexItemFactory.createString(name)); in method()
/external/llvm/lib/IR/
DDIBuilder.cpp660 DIBuilder::createMethod(DIScope *Context, StringRef Name, StringRef LinkageName, in createMethod() function in DIBuilder
/external/r8/src/main/java/com/android/tools/r8/dex/
DDexFileReader.java991 return dexItemFactory.createMethod(
/external/swiftshader/third_party/LLVM/lib/Analysis/
DDIBuilder.cpp796 DISubprogram DIBuilder::createMethod(DIDescriptor Context, in createMethod() function in DIBuilder
/external/clang/lib/CodeGen/
DCGDebugInfo.cpp1302 llvm::DISubprogram *SP = DBuilder.createMethod( in CreateCXXMemberFunction()