HomeSort by relevance Sort by last modified time
    Searched full:instancemethod (Results 1 - 25 of 29) sorted by null

1 2

  /external/clang/test/Rewriter/
rewrite-api-bug.m 4 - (void) instanceMethod;
8 - (void) instanceMethod {
objc-super-test.m 11 - (int) instanceMethod;
15 - (int) instanceMethod {
undecl-objc-h.m 16 - (int) instanceMethod;
22 - (int) instanceMethod {
  /external/clang/test/SemaObjC/
class-method-lookup.m 11 - (void) instanceMethod;
16 - (void) instanceMethod {
23 [self instanceMethod];// expected-warning {{'+instanceMethod' not found (return type defaults to 'id')}}
24 [MyDerived instanceMethod];// expected-warning {{'+instanceMethod' not found (return type defaults to 'id')}}
super.m 13 - (void)instanceMethod;
17 - (void)instanceMethod;
23 - (void)instanceMethod {
29 [super instanceMethod];
81 [(B*)super instanceMethod];
protocol-lookup-2.m 8 - (id)instanceMethod;
31 return [super instanceMethod];
category-method-lookup-2.m 19 - instanceMethod {
attr-deprecated.m 91 - (int) instancemethod;
  /external/clang/test/Index/
complete-lambdas.mm 5 - 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)}{HorizontalSpace }{TypedText withOther:}{Placeholder (int)} (35)
49 // CHECK-CC6: ObjCInstanceMethodDecl:{ResultType id}{TypedText instanceMethod:}{Placeholder (int)}{HorizontalSpace }{TypedText withOther:}{Placeholder (int)} (37)
  /external/droiddriver/src/com/google/android/droiddriver/instrumentation/
RootFinder.java 41 String instanceMethod = Build.VERSION.SDK_INT >= 17 ? "getInstance" : "getDefault";
44 Method getMethod = clazz.getMethod(instanceMethod);
49 throw new DroidDriverException(String.format("could not invoke: %s on %s", instanceMethod,
59 instanceMethod, windowManagerClassName), nsme);
63 instanceMethod, VIEW_FIELD_NAME), re);
67 instanceMethod, VIEW_FIELD_NAME), iae);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
new.py 14 from types import MethodType as instancemethod namespace
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
new.py 14 from types import MethodType as instancemethod namespace
  /frameworks/testing/espresso/espresso-lib/src/main/java/com/google/android/apps/common/testing/ui/espresso/base/
RootsOracle.java 138 String instanceMethod = Build.VERSION.SDK_INT > 16 ? GET_GLOBAL_INSTANCE : GET_DEFAULT_IMPL;
142 Method getMethod = clazz.getMethod(instanceMethod);
149 Log.e(TAG, String.format("could not invoke: %s on %s", instanceMethod, accessClass),
157 Log.e(TAG, String.format("could not find method: %s on %s", instanceMethod, accessClass),
161 accessClass, instanceMethod, VIEWS_FIELD), re);
164 accessClass, instanceMethod, VIEWS_FIELD), iae);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_new.py 36 # new.instancemethod()
37 im = new.instancemethod(break_yolks, c, C)
50 im = new.instancemethod(break_yolks, c)
55 self.assertRaises(TypeError, new.instancemethod, break_yolks, None)
57 # Verify that instancemethod() doesn't allow keyword args
58 self.assertRaises(TypeError, new.instancemethod, break_yolks, c, kw=1)
test_sys.py 552 # instancemethod (old-style class)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_new.py 36 # new.instancemethod()
37 im = new.instancemethod(break_yolks, c, C)
50 im = new.instancemethod(break_yolks, c)
55 self.assertRaises(TypeError, new.instancemethod, break_yolks, None)
57 # Verify that instancemethod() doesn't allow keyword args
58 self.assertRaises(TypeError, new.instancemethod, break_yolks, c, kw=1)
test_sys.py 552 # instancemethod (old-style class)
  /external/clang/include/clang/CodeGen/
CGFunctionInfo.h 340 unsigned InstanceMethod : 1;
370 bool InstanceMethod,
397 bool isInstanceMethod() const { return InstanceMethod; }
448 ID.AddBoolean(InstanceMethod);
459 bool InstanceMethod,
465 ID.AddBoolean(InstanceMethod);
  /external/clang/lib/Sema/
SemaExprObjC.cpp     [all...]
SemaDeclAttr.cpp     [all...]
  /external/clang/include/clang/Basic/
Attr.td 904 IdentifierArgument<"InstanceMethod">];
    [all...]
  /external/clang/lib/Parse/
ParseDecl.cpp     [all...]
  /external/clang/lib/CodeGen/
CGCall.cpp 539 FI->InstanceMethod = IsInstanceMethod;
    [all...]
  /prebuilts/python/linux-x86/2.7.5/bin/
python 
python2 

Completed in 2114 milliseconds

1 2