Searched defs:base2 (Results 1 - 8 of 8) sorted by relevance

/external/kernel-headers/original/asm-x86/
H A Ddesc_defs.h19 unsigned limit : 4, avl : 1, l : 1, d : 1, g : 1, base2 : 8; member in struct:desc_struct
56 unsigned limit1 : 4, zero0 : 3, g : 1, base2 : 8; member in struct:ldttss_desc
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.ref/
H A Dp5-0x.cpp34 Base&& base2 = prvalue<Base>(); local
/external/bluetooth/glib/tests/gobject/
H A Difaceinit.c173 static gboolean base1, base2, base3, base4, base5, base6; variable
293 base2 = TRUE;
349 g_assert (!base1 && !base2 && !base3 && !base4 && !base5 && !base6);
362 g_assert (base1 && base2 && base3 && base4 && !base5 && !base6);
405 g_assert (base1 && base2 && base3 && base4 && base5 && base6);
/external/chromium/third_party/libevent/test/
H A Dregress.c687 struct event_base *base1, *base2; local
693 base2 = event_init();
694 event_base_free(base2);
715 struct event_base *base1, *base2; local
720 base2 = event_init();
725 event_base_set(base2, &ev2) ||
735 event_base_loop(base2, EVLOOP_NONBLOCK);
749 event_base_loop(base2, EVLOOP_NONBLOCK);
753 event_base_free(base2);
/external/bluetooth/glib/gio/
H A Dglocalfile.c1576 char *path2, *base2; local
1580 base2 = expand_all_symlinks (base);
1583 if (path_has_prefix (path2, base2))
1585 relative = path2 + strlen (base2);
1591 g_free (base2);
/external/chromium/testing/gmock/test/
H A Dgmock-matchers_test.cc970 Base base, base2; local
974 EXPECT_FALSE(m1.Matches(base2));
980 EXPECT_FALSE(m1.Matches(base2));
/external/clang/tools/c-index-test/
H A Dc-index-test.c18 char* base2 = (char*)strrchr(path, '\\'); local
19 if (base1 && base2)
20 return((base1 > base2) ? base1 + 1 : base2 + 1);
23 else if (base2)
24 return(base2 + 1);
/external/v8/test/cctest/
H A Dtest-api.cc1163 v8::Handle<v8::FunctionTemplate> base2 = v8::FunctionTemplate::New(); local
1164 base2->Inherit(super);
1165 base2->PrototypeTemplate()->Set("v2", v8_num(10.1));
1171 env->Global()->Set(v8_str("base2"), base2->GetFunction());
1175 CHECK(CompileRun("base2.prototype.__proto__ == s.prototype")->BooleanValue());
1193 base2->GetFunction()->NewInstance());
1200 // base1 and base2 cannot cross reference to each's prototype

Completed in 246 milliseconds