Home
last modified time | relevance | path

Searched refs:instanceMethod (Results 1 – 15 of 15) sorted by relevance

/external/clang/test/SemaObjC/
Dclass-method-lookup.m11 - (void) instanceMethod; method
16 - (void) instanceMethod { method
23 …[self instanceMethod];// expected-warning {{'+instanceMethod' not found (return type defaults to '…
24 …[MyDerived instanceMethod];// expected-warning {{'+instanceMethod' not found (return type defaults…
Dsuper.m13 - (void)instanceMethod; method
17 - (void)instanceMethod; method
23 - (void)instanceMethod { method
29 [super instanceMethod];
81 [(B*)super instanceMethod];
Dprotocol-lookup-2.m8 - (id)instanceMethod; method
31 return [super instanceMethod];
Dcategory-method-lookup-2.m19 - instanceMethod { method in Cat
/external/droiddriver/src/io/appium/droiddriver/instrumentation/
DRootFinder.java43 String instanceMethod = Build.VERSION.SDK_INT >= 17 ? "getInstance" : "getDefault";
46 Method getMethod = clazz.getMethod(instanceMethod);
51 throw new DroidDriverException(String.format("could not invoke: %s on %s", instanceMethod,
61 instanceMethod, windowManagerClassName), nsme);
65 instanceMethod, VIEW_FIELD_NAME), re);
69 instanceMethod, VIEW_FIELD_NAME), iae);
/external/junit-params/src/main/java/junitparams/internal/
DParameterisedFrameworkMethod.java48 for (InstanceFrameworkMethod instanceMethod : instanceMethods) { in getDescription()
49 description.addChild(instanceMethod.getInstanceDescription()); in getDescription()
64 InstanceFrameworkMethod instanceMethod = i.next(); in filter() local
65 if (filter.shouldRun(instanceMethod.getInstanceDescription())) { in filter()
67 filter.apply(instanceMethod); in filter()
/external/clang/test/Index/
Dcomplete-lambdas.mm5 - instanceMethod:(int)value withOther:(int)other;
16 [a instanceMethod:0 withOther:1];
18 [super instanceMethod];
20 [a,self instanceMethod:0 withOther:1]{};
26 // CHECK-CC1: ObjCInstanceMethodDecl:{ResultType id}{TypedText instanceMethod:}{Placeholder (int)}{…
49 // CHECK-CC6: ObjCInstanceMethodDecl:{ResultType id}{TypedText instanceMethod:}{Placeholder (int)}{…
/external/clang/test/Rewriter/
Drewrite-api-bug.m4 - (void) instanceMethod; method
8 - (void) instanceMethod { method
Dobjc-super-test.m11 - (int) instanceMethod; method
15 - (int) instanceMethod { method
Dundecl-objc-h.m16 - (int) instanceMethod; method
22 - (int) instanceMethod { method
/external/guice/core/test/com/google/inject/
DRequestInjectionTest.java61 assertEquals("test", hi.instanceMethod); in testInjectMembers()
94 assertEquals("test", hi.instanceMethod); in testInjectMembersAndStatics()
178 String instanceMethod; field in RequestInjectionTest.HasInjections
185 this.instanceMethod = instanceS; in setInstanceS()
/external/guice/core/test/com/google/inject/spi/
DInjectionPointTest.java173 Method instanceMethod = HasInjections.class.getMethod("instanceMethod", String.class); in testAddForInstanceMethodsAndFields() local
178 new InjectionPoint(type, instanceMethod, false), in testAddForInstanceMethodsAndFields()
198 @Inject public void instanceMethod(@Named("d") String d) {} in instanceMethod() method in InjectionPointTest.HasInjections
/external/clang/lib/CodeGen/
DCodeGenTypes.h325 bool instanceMethod,
DCGCall.cpp140 arrangeLLVMFunctionInfo(CodeGenTypes &CGT, bool instanceMethod, in arrangeLLVMFunctionInfo() argument
151 return CGT.arrangeLLVMFunctionInfo(resultType, instanceMethod, in arrangeLLVMFunctionInfo()
673 bool instanceMethod, in arrangeLLVMFunctionInfo() argument
684 CGFunctionInfo::Profile(ID, instanceMethod, chainCall, info, paramInfos, in arrangeLLVMFunctionInfo()
695 FI = CGFunctionInfo::create(CC, instanceMethod, chainCall, info, in arrangeLLVMFunctionInfo()
728 bool instanceMethod, in create() argument
745 FI->InstanceMethod = instanceMethod; in create()
/external/clang/include/clang/CodeGen/
DCGFunctionInfo.h510 bool instanceMethod,