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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/temp/temp.spec/temp.expl.spec/
p20.cpp 12 friend void f<float>(float); // okay
13 friend class A<float>; // okay
p4.cpp 26 xih.g(); // okay
49 xih.g(); // okay
50 xih.f(); // okay, uses specialization
52 X<IntHolder, long>::Inner inner; // okay, uses specialization
54 return X<IntHolder, long>::value; // okay, uses specialization
p15.cpp 15 // Okay; this is a declaration, not a definition.
32 template<> unsigned X<1>::Inner::array[]; // okay
p5.cpp 37 xih.g(); // okay
38 xih.f(); // okay, uses specialization
42 return X<IntHolder, long>::value; // okay, uses specialization
  /external/clang/test/SemaCXX/
member-name-lookup.cpp 39 (void)d.b; // okay
43 d.static_f(0); // okay
45 D::E e = D::enumerator; // okay
46 D::type t = 0; // okay
48 D::E2 e2 = D::enumerator2; // okay
55 (void)b; // okay
59 static_f(0); // okay
61 E e = enumerator; // okay
62 type t = 0; // okay
64 E2 e2 = enumerator2; // okay
    [all...]
convert-to-bool.cpp 46 bool b1(ecb); // okay
53 int& i2(ecr); // okay
65 B &b = c; // okay
  /external/clang/test/Modules/
linkage-merge.m 14 static int f1(float); // okay: considered distinct
15 static int f2(float); // okay: considered distinct
16 extern int f3(float); // okay: considered distinct
  /external/clang/test/CXX/class/class.nest/
p1-cxx0x.cpp 10 static char a[sizeof(x)]; // okay
11 static char b[sizeof(sx)]; // okay
  /external/llvm/test/Transforms/InstCombine/
2008-08-05-And.ll 16 br i1 %a1, label %incompatible, label %okay
18 okay:
  /dalvik/libdex/
DexClass.cpp 29 bool okay = true; local
32 while (okay && (count-- != 0)) {
33 readAndVerifyUnsignedLeb128(&pData, pLimit, &okay);
36 return okay;
41 * returns an "okay" flag (that is, false == failure). */
54 * returns an "okay" flag (that is, false == failure).
75 * returns an "okay" flag (that is, false == failure).
126 bool okay = true; local
163 for (i = 0; okay && (i < header.staticFieldsSize); i++) {
164 okay = dexReadAndVerifyClassDataField(pData, pLimit
    [all...]
  /external/chromium/third_party/libevent/test/
test.sh 24 echo OKAY ;
31 echo OKAY ;
38 echo OKAY ;
45 echo OKAY ;
  /external/clang/test/CXX/basic/basic.scope/basic.scope.hiding/
p2.cpp 22 Y(1); // okay
  /external/clang/test/CXX/class/class.friend/
p2.cpp 9 friend class C; // okay
p1.cpp 34 friend int myoperation(float); // okay
45 friend void a_member(); // okay (because we ignore class scopes when looking up friends)
46 friend class A::AInner; // this is okay as an extension
47 friend class AInner; // okay, refers to ::AInner
53 friend int Base::typedeffed_member(); // okay: should look through typedef
57 friend A operator|(const A& l, const A& r); // okay
64 friend ftypedef typedeffed_function; // okay (because it's not declared as a member)
  /external/clang/test/CXX/class.derived/class.virtual/
p2.cpp 25 virtual void f(); // okay
28 struct G : F { }; // okay
30 struct H : G, A { }; // okay
36 struct D : B, C { }; // okay
  /dalvik/vm/analysis/
DexVerify.cpp 811 bool okay = true; local
837 okay &= checkRegisterIndex(meth, decInsn.vA);
845 okay &= checkWideRegisterIndex(meth, decInsn.vA);
849 okay &= checkBranchTarget(meth, insnFlags, codeOffset, false);
852 okay &= checkBranchTarget(meth, insnFlags, codeOffset, true);
904 okay &= checkRegisterIndex(meth, decInsn.vA);
905 okay &= checkRegisterIndex(meth, decInsn.vB);
914 okay &= checkWideRegisterIndex(meth, decInsn.vA);
915 okay &= checkRegisterIndex(meth, decInsn.vB);
921 okay &= checkRegisterIndex(meth, decInsn.vA)
    [all...]
  /dalvik/tests/068-classloader/src/
DoubledExtendOkay.java 18 * "Okay" doubled sub-class, form #1.
22 //System.out.println("Ctor: doubled extend okay, type 1");
  /dalvik/tests/068-classloader/src-ex/
DoubledExtendOkay.java 18 * "Okay" doubled sub-class, form #2.
22 //System.out.println("Ctor: doubled extend okay, type 2");
  /external/clang/test/SemaTemplate/
implicit-instantiation-1.cpp 12 (void)sizeof(xip->f(2, 0)); // okay: does not instantiate
13 (void)xip->g(2, 0); // okay: does not instantiate
  /external/clang/test/Sema/
nested-redef.c 8 struct Y { }; // okay: this is a different Y
  /external/clang/test/SemaObjCXX/
ivar-lookup.mm 15 int *ip = [Ivar method]; // Okay; calls A's method on the instance variable Ivar.
  /external/llvm/test/CodeGen/X86/
fast-isel-agg-constant.ll 3 ; (Failing out is okay, as long as we don't miscompile.)
  /external/clang/test/CXX/class.derived/class.abstract/
p4.cpp 19 (void)new D; // okay
57 (void) new D; // okay
78 (void) new D; // okay
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/
p4.cpp 20 f0(); // okay
47 f(4); // okay
53 f2(6); // okay
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p6.cpp 9 // okay: deduce T=int from first argument, A=int during overload
13 // okay: deduce T=int from first and second arguments
24 // okay: deductions match
61 // okay: full template-id
69 // okay: only one overload matches
89 // okay: full template-id

Completed in 4590 milliseconds

1 2 3 4 5 6 7 8 91011>>