Home
last modified time | relevance | path

Searched refs:base1 (Results 1 – 9 of 9) sorted by relevance

/external/clang/test/FixIt/
Dfixit-cxx11-attributes.cpp37 struct base1 {}; struct
42 …virtual [[b]] base1, // expected-error {{an attribute list cannot appear here}} expected-warning {…
/external/kernel-headers/original/asm-x86/
Ddesc_defs.h18 unsigned base1 : 8, type : 4, s : 1, dpl : 2, p : 1; member
55 unsigned base1 : 8, type : 5, dpl : 2, p : 1; member
/external/chromium/third_party/libevent/test/
Dregress.c687 struct event_base *base1, *base2; in test_signal_pipeloss() local
691 base1 = event_init(); in test_signal_pipeloss()
692 pipe1 = base1->sig.ev_signal_pair[0]; in test_signal_pipeloss()
695 event_base_free(base1); in test_signal_pipeloss()
715 struct event_base *base1, *base2; in test_signal_switchbase() local
719 base1 = event_init(); in test_signal_switchbase()
724 if (event_base_set(base1, &ev1) || in test_signal_switchbase()
741 event_base_loop(base1, EVLOOP_NONBLOCK); in test_signal_switchbase()
746 event_base_loop(base1, EVLOOP_NONBLOCK); in test_signal_switchbase()
748 event_base_loop(base1, EVLOOP_NONBLOCK); in test_signal_switchbase()
[all …]
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_3/inherit/
Dproto_12.js75 this.base1 = WorkerBee;
76 this.base1( name, "engineering", projs )
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
Dp5-0x.cpp30 Base&& base1 = xvalue<Derived>(); in test_rvalue_refs()
/external/webkit/Tools/android/webkitmerge/
Dwebkitmerge.cpp462 void CheckForExec(const char* base1, const char* dir1, const char* file1, in CheckForExec() argument
472 base1, dir1, file1, file1Ex ? "" : "no ", in CheckForExec()
479 bool CompareFiles(const char* base1, const char* dir1, const char* file1, in CompareFiles() argument
485 CheckForExec(base1, dir1, file1, base2, dir2, file2, &file1Ex, &file2Ex); in CompareFiles()
487 base1, dir1, (int) strlen(file1) - (int) file1Ex, file1, in CompareFiles()
498 bool CompareFiles(const char* base1, const char* base2, const char* dir, const char* file) in CompareFiles() argument
500 return CompareFiles(base1, dir, file, base2, dir, file); in CompareFiles()
/external/clang/tools/c-index-test/
Dc-index-test.c31 char* base1 = (char*)strrchr(path, '/'); in basename() local
33 if (base1 && base2) in basename()
34 return((base1 > base2) ? base1 + 1 : base2 + 1); in basename()
35 else if (base1) in basename()
36 return(base1 + 1); in basename()
44 char* base1 = (char*)strrchr(path, '/'); in dirname() local
46 if (base1 && base2) in dirname()
47 if (base1 > base2) in dirname()
48 *base1 = 0; in dirname()
51 else if (base1) in dirname()
[all …]
/external/clang/test/CXX/expr/expr.const/
Dp2-0x.cpp512 …constexpr bool base1 = &e.c[0] < &e.d; // expected-error {{constant expression}} expected-note {{c… variable
/external/v8/test/cctest/
Dtest-api.cc1243 v8::Handle<v8::FunctionTemplate> base1 = v8::FunctionTemplate::New(); in THREADED_TEST() local
1244 base1->Inherit(super); in THREADED_TEST()
1245 base1->PrototypeTemplate()->Set("v1", v8_num(20.1)); in THREADED_TEST()
1254 env->Global()->Set(v8_str("base1"), base1->GetFunction()); in THREADED_TEST()
1269 base1->GetFunction()->NewInstance()); in THREADED_TEST()