/external/clang/test/CXX/class/class.union/ |
p1.cpp | 5 class Okay { 13 class VirtualBase : virtual Okay { // expected-note 4 {{because type 'VirtualBase' has a virtual base class}} 47 Okay okay; member in union:U1 73 Okay okay; member in struct:U2::__anon16277 92 struct s7 : Okay { 132 Either<int,Okay> okay(0);
|
/external/clang/test/SemaTemplate/ |
constructor-template.cpp | 62 return x2; // okay, uses copy constructor 81 X4 a(x4, 17); // okay, constructor template 82 X4 b(x4); // okay, copy constructor
|
instantiate-try-catch.cpp | 11 template struct TryCatch0<int&>; // okay
|
temp_explicit.cpp | 46 template struct X2<int>; // okay 56 void f1(X3<int&>); // okay, Inner, not instantiated 68 void f2(X4<int&>); // okay, Inner, not instantiated 69 void f3(X4<int&>::Inner); // okay, Inner::VeryInner, not instantiated
|
/external/chromium/chrome/browser/remoting/resources/ |
remoting_setup_done.html | 25 <input id="close" type="submit" i18n-values="value:okay"
|
/external/chromium_org/ppapi/shared_impl/ |
file_type_conversion.h | 21 // Returns |true| if okay.
|
/external/chromium_org/v8/test/webkit/ |
nested-functions.js | 40 return this ? "OKAY" : "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; 44 return !this ? "OKAY" : "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; 49 passed3 = test3() === "OKAY"; 50 passed4 = test4() === "OKAY";
|
array-defineOwnProperty.js | 55 // Reassigning the value is okay if the property is writable. 57 // Reassigning the value is okay if the value doesn't change. 60 shouldBe("Object.defineProperty(Object.defineProperty([], '0', { value: 'okay'.substring(0,2) }), '0', { value: 'not ok'.substring(4,6) })[0]", '"ok"'); 66 // Reassigning the value is not okay if the value changes. 68 shouldThrow("Object.defineProperty(Object.defineProperty([], '0', { value: 'okay' }), '0', { value: 'not ok' })[0]"); 72 // Reassigning the value is not okay if the type changes.
|
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.elab/ |
p2.cpp | 53 // This should magically be okay; see comment in SemaDecl.cpp.
|
/external/clang/test/CXX/dcl.decl/dcl.init/ |
p6.cpp | 28 template<> const struct s0 s2<int>::foo; // okay
|
/external/clang/test/CXX/expr/expr.prim/expr.prim.lambda/ |
p6.cpp | 21 l(17); // okay: uses conversion function
|
/external/clang/test/CXX/special/class.copy/ |
p20.cpp | 44 (void)sizeof(ImplicitNonConstCopy4() = cincc4); // okay
|
/external/clang/test/CXX/temp/temp.spec/temp.expl.spec/ |
p19.cpp | 29 xl.f(17, fp); // okay
|
/external/clang/test/CXX/temp/temp.spec/temp.explicit/ |
p7.cpp | 19 template class X0<int>; // okay
|
/external/clang/test/ARCMT/ |
cxx-checking.mm | 92 // It's okay to pass a retainable type through an ellipsis. 98 // It's okay to create a VLA of retainable types.
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/ |
p8.cpp | 6 // Redeclarations are okay in a namespace. 85 // Redeclarations are okay in a function.
|
/external/clang/test/Sema/ |
implicit-builtin-decl.c | 8 void *alloca(__SIZE_TYPE__); // redeclaration okay 14 void g(int malloc) { // okay: these aren't functions
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
atmsvc.h | 26 int reply; /* for okay and close: */ 32 struct sockaddr_atmpvc pvc; /* indicate, okay (connect) */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
atmsvc.h | 26 int reply; /* for okay and close: */ 32 struct sockaddr_atmpvc pvc; /* indicate, okay (connect) */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
atmsvc.h | 26 int reply; /* for okay and close: */ 32 struct sockaddr_atmpvc pvc; /* indicate, okay (connect) */
|
/external/chromium_org/v8/tools/testrunner/local/ |
statusfile.py | 33 OKAY = "OKAY" 46 for key in [SKIP, FAIL, PASS, OKAY, TIMEOUT, CRASH, SLOW, FLAKY, FAIL_OK, 50 DEFS = {FAIL_OK: [FAIL, OKAY], 79 (not CRASH in outcomes) and (not OKAY in outcomes)) 83 return (FAIL in outcomes) and (OKAY in outcomes)
|
/external/junit/src/org/junit/ |
Assert.java | 37 * okay) 63 * okay) 87 * okay) 111 * okay) 158 * okay) 194 * okay) 224 * okay) 254 * okay) 284 * okay) 314 * okay) [all...] |
/external/chromium_org/ppapi/generators/ |
idl_namespace.py | 134 okay = namespace.AddNode(node) 135 if not okay or node.errors or node.warns: 140 okay = namespace.AddNode(node) 141 if not okay or node.errors or not node.warns: 148 okay = namespace.AddNode(node) 149 if okay or not node.errors:
|
/dalvik/vm/mterp/armv5te/ |
OP_APUT_OBJECT.S | 18 bcc .L${opcode}_finish @ we're okay, continue on 34 cmp r0, #0 @ okay?
|
/external/qemu/distrib/sdl-1.2.15/src/cdrom/beos/ |
SDL_syscdrom.cc | 259 int okay; local 262 okay = 0; 266 okay = 1; 270 return(okay ? 0 : -1); 351 int okay; local 355 okay = 0; 361 okay = 1; 365 return(okay ? 0 : -1);
|