HomeSort by relevance Sort by last modified time
    Searched full:meth (Results 26 - 50 of 365) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/SemaObjC/
objc-qualified-property-lookup.m 14 - (id) Meth;
18 - (id) Meth {
protocol-id-test-2.m 11 - (void)IMeth { [(id<P>)self Meth]; } // expected-warning {{method '-Meth' not found (return type defaults to 'id')}}
check-dup-decl-methods-1.m 4 - (int) meth;
11 - (int) meth; // expected-note {{previous declaration is here}}
12 - (int*) meth; // expected-error {{duplicate declaration of method 'meth'}}
35 - (int) meth; // expected-note {{previous declaration is here}}
36 - (int*) meth; // expected-error {{duplicate declaration of method 'meth'}}
incomplete-implementation.m 4 - Meth; // expected-note{{method definition for 'Meth' not found}} \
5 // expected-note{{method 'Meth' declared here}}
14 - Meth {return 0;} // expected-warning {{category is implementing a method which will also be implemented by its primary class}}
19 - Meth; // expected-note{{method 'Meth' declared here}}
26 - Meth {return 0;} // expected-warning {{category is implementing a method which will also be implemented by its primary class}}
method-def-1.m 4 - (int)meth;
8 - (int) meth { return [self meth]; }
objc-buffered-methods.m 8 - (void) Meth;
20 - (void) Meth { [self Forw]; } // No warning now
no-ivar-access-control.m 14 - (int) meth {
30 - (int) meth : (I*) arg {
51 - (int) Meth {
64 - (int) Meth {
property-method-lookup-impl.m 20 - (id)Meth : (SSyncConflictList*)other
  /external/openssl/crypto/ec/
ec_lib.c 76 EC_GROUP *EC_GROUP_new(const EC_METHOD *meth)
80 if (meth == NULL)
85 if (meth->group_init == 0)
98 ret->meth = meth;
113 if (!meth->group_init(ret))
127 if (group->meth->group_finish != 0)
128 group->meth->group_finish(group);
148 if (group->meth->group_clear_finish != 0)
149 group->meth->group_clear_finish(group)
    [all...]
ec_oct.c 74 if (group->meth->point_set_compressed_coordinates == 0
75 && !(group->meth->flags & EC_FLAGS_DEFAULT_OCT))
80 if (group->meth != point->meth)
85 if(group->meth->flags & EC_FLAGS_DEFAULT_OCT)
87 if (group->meth->field_type == NID_X9_62_prime_field)
101 return group->meth->point_set_compressed_coordinates(group, point, x, y_bit, ctx);
108 if (group->meth->point_set_compressed_coordinates == 0
109 && !(group->meth->flags & EC_FLAGS_DEFAULT_OCT))
114 if (group->meth != point->meth
    [all...]
  /dalvik/vm/native/
java_lang_reflect_Method.cpp 35 Method* meth; local
37 meth = dvmSlotToMethod(declaringClass, slot);
38 RETURN_INT(dvmFixMethodFlags(meth->accessFlags));
58 const Method* meth; local
65 meth = dvmSlotToMethod(declaringClass, slot);
66 assert(meth != NULL);
68 if (dvmIsStaticMethod(meth)) {
89 meth = dvmGetVirtualizedMethod(methObj->clazz, meth);
90 if (meth == NULL)
125 Method* meth; local
146 Method* meth = dvmSlotToMethod(clazz, slot); local
161 Method* meth = dvmSlotToMethod(clazz, slot); local
175 Method* meth; local
197 Method* meth; local
221 Method* meth; local
    [all...]
  /external/clang/test/Index/
cursor-dynamic-call.mm 3 virtual void meth();
8 this->meth();
9 SB::meth();
14 -(void)meth;
25 [self meth];
26 [super meth];
34 ss->meth();
35 [is meth];
51 // CHECK: 8:11 MemberRefExpr=meth:3:16 {{.*}} Dynamic-call
53 // CHECK: 25:3 ObjCMessageExpr=meth:14:8 {{.*}} Dynamic-call Receiver-type=ObjCObjectPointe
    [all...]
pch-with-errors.m 5 -(void)meth;
9 -(void)meth;
15 [i meth];
25 // CHECK-PARSE: pch-with-errors.m:{{.*}} ObjCMessageExpr=meth
28 // CHECK-INDEX: [indexEntityReference]: kind: objc-instance-method | name: meth
unmatched-braces.m 2 -(void)meth {
  /external/clang/test/SemaObjCXX/
cstyle-block-pointer-cast.mm 11 - (blocktype)Meth;
15 - (blocktype)Meth {
30 - (id)Meth;
34 - (id)Meth {
void_to_obj.mm 18 - (I*) Meth;
23 - (I*) Meth { return static_cast<I*>(delegate); }
  /dalvik/vm/analysis/
DexVerify.cpp 27 static bool verifyMethod(Method* meth);
85 const Method* meth = vdata->method; local
88 const u2* insns = meth->insns;
97 LOG_VFY_METH(meth, "VFY: invalid instruction (0x%04x)", *insns);
100 LOG_VFY_METH(meth,
115 LOG_VFY_METH(meth, "VFY: code did not end where expected (%d vs. %d)",
116 i, dvmGetMethodInsnsSize(meth));
137 static bool scanTryCatchBlocks(const Method* meth, InsnFlags* insnFlags)
139 u4 insnsSize = dvmGetMethodInsnsSize(meth);
140 const DexCode* pCode = dvmGetMethodCode(meth);
796 const Method* meth = vdata->method; local
    [all...]
VerifySubs.cpp 29 bool dvmWantVerboseVerification(const Method* meth)
36 return (strcmp(meth->clazz->descriptor, cd) == 0 &&
37 dvmCompareNameDescriptorAndMethod(mn, sg, meth) == 0);
45 void dvmLogVerifyFailure(const Method* meth, const char* format, ...)
59 if (meth != NULL) {
60 char* desc = dexProtoCopyMethodDescriptor(&meth->prototype);
62 meth->clazz->descriptor, meth->name, desc);
75 const Method* meth)
82 std::string dotFromClass = dvmHumanReadableDescriptor(meth->clazz->descriptor)
    [all...]
  /external/openssl/crypto/rand/
rand_lib.c 79 int RAND_set_rand_method(const RAND_METHOD *meth)
88 default_RAND_meth = meth;
140 const RAND_METHOD *meth = RAND_get_rand_method(); local
141 if (meth && meth->cleanup)
142 meth->cleanup();
148 const RAND_METHOD *meth = RAND_get_rand_method(); local
149 if (meth && meth->seed)
150 meth->seed(buf,num)
155 const RAND_METHOD *meth = RAND_get_rand_method(); local
162 const RAND_METHOD *meth = RAND_get_rand_method(); local
170 const RAND_METHOD *meth = RAND_get_rand_method(); local
178 const RAND_METHOD *meth = RAND_get_rand_method(); local
    [all...]
  /external/clang/test/ARCMT/
check-with-pch.m 9 -(void)Meth;
13 -(void)Meth {
  /external/clang/test/CodeGenObjCXX/
selector-expr-lvalue.mm 7 - (void)Meth;
11 - (void)Meth {
  /external/openssl/crypto/dso/
dso_lib.c 71 void DSO_set_default_method(DSO_METHOD *meth)
73 default_DSO_meth = meth;
83 return(dso->meth);
86 DSO_METHOD *DSO_set_method(DSO *dso, DSO_METHOD *meth)
89 mtmp = dso->meth;
90 dso->meth = meth;
94 DSO *DSO_new_method(DSO_METHOD *meth)
118 if(meth == NULL)
119 ret->meth = default_DSO_meth
471 DSO_METHOD *meth = default_DSO_meth; local
483 DSO_METHOD *meth = default_DSO_meth; local
    [all...]
  /dalvik/tests/032-concrete-sub/src/
ConcreteSub.java 41 Method meth; local
46 meth = absClass.getMethod("redefineMe", (Class[]) null);
51 System.out.println("meth modifiers=" + meth.getModifiers());
  /external/clang/test/Parser/
objc-init.m 6 - () METH;
15 id objects[] = {[NSNumber METH]};
19 id objects[] = {[x METH]};
23 id objects[] = {[x METH]};
objc-type-printing.m 8 - (INTF<P1>*) METH;

Completed in 599 milliseconds

12 3 4 5 6 7 8 91011>>