Home
last modified time | relevance | path

Searched refs:Global (Results 1 – 25 of 456) sorted by relevance

12345678910>>...19

/external/v8/test/cctest/
Dtest-deoptimization.cc119 context->Global()->Get(context, v8_str(property_name)).ToLocalChecked()); in GetJSFunction()
140 CHECK_EQ(1, env->Global() in TEST()
160 CHECK_EQ(1, env->Global() in TEST()
186 CHECK_EQ(1, env->Global() in TEST()
207 CHECK_EQ(1, env->Global() in TEST()
234 CHECK_EQ(1, env->Global() in TEST()
239 CHECK_EQ(6, env->Global() in TEST()
267 CHECK_EQ(1, env->Global() in TEST()
272 CHECK_EQ(11, env->Global() in TEST()
280 env->Global() in TEST()
[all …]
Dtest-compiler.cc283 context->Global()->Get(context.local(), v8_str("f")).ToLocalChecked()); in TEST()
374 env->Global() in TEST()
389 env->Global() in TEST()
394 env->Global() in TEST()
422 env->Global() in TEST()
436 env->Global() in TEST()
444 env->Global() in TEST()
460 env->Global() in TEST()
465 env->Global() in TEST()
494 env->Global() in TEST()
[all …]
Dtest-debug.cc114 v8::Utils::OpenHandle(*context_->Global()))); in ExposeDebug()
139 context->Global()->Get(context, name); in CompileFunction()
957 foo->Call(env.context(), env->Global(), 0, NULL).ToLocalChecked(); in TEST()
962 foo->Call(env.context(), env->Global(), 0, NULL).ToLocalChecked(); in TEST()
964 foo->Call(env.context(), env->Global(), 0, NULL).ToLocalChecked(); in TEST()
969 foo->Call(env.context(), env->Global(), 0, NULL).ToLocalChecked(); in TEST()
990 foo->Call(env.context(), env->Global(), 0, NULL).ToLocalChecked(); in TEST()
995 foo->Call(env.context(), env->Global(), 0, NULL).ToLocalChecked(); in TEST()
997 foo->Call(env.context(), env->Global(), 0, NULL).ToLocalChecked(); in TEST()
1002 foo->Call(env.context(), env->Global(), 0, NULL).ToLocalChecked(); in TEST()
[all …]
Dtest-api-interceptors.cc361 context->Global() in THREADED_TEST()
389 context->Global() in THREADED_TEST()
422 context->Global() in CheckInterceptorLoadIC()
646 context->Global() in THREADED_TEST()
682 context->Global() in THREADED_TEST()
686 context->Global() in THREADED_TEST()
722 context->Global() in THREADED_TEST()
756 context->Global() in THREADED_TEST()
760 context->Global() in THREADED_TEST()
792 context->Global() in THREADED_TEST()
[all …]
Dtest-global-object.cc47 context->Global()->GetPrototype().As<v8::Object>(); in TEST()
71 env1->Global() in TEST()
72 ->Set(env1.local(), v8_str("global2"), env2->Global()) in TEST()
75 env2->Global()->Set(env2, v8_str("a"), v8_str("a")).FromJust(); in TEST()
76 env2->Global()->Set(env2, v8_str("42"), v8_str("42")).FromJust(); in TEST()
Dtest-object-observe.cc62 context2->Global() in TEST()
73 context3->Global() in TEST()
82 context4->Global() in TEST()
86 context4->Global() in TEST()
90 context4->Global() in TEST()
94 context4->Global() in TEST()
275 context2->Global() in TEST()
279 context2->Global() in TEST()
436 context->Global() in TEST()
439 context->Global() in TEST()
[all …]
/external/skia/experimental/SkV8Example/
DGlobal.cpp15 Global* Global::gGlobal = NULL;
22 int32_t Global::getNextTimerID() { in getNextTimerID()
33 void Global::reportException(v8::TryCatch* tryCatch) { in reportException()
75 void Global::Inval(const v8::FunctionCallbackInfo<v8::Value>& args) { in Inval()
84 void Global::Print(const v8::FunctionCallbackInfo<v8::Value>& args) { in Print()
104 void Global::SetTimeout(const v8::FunctionCallbackInfo<v8::Value>& args) { in SetTimeout()
126 evt->setTargetProc(Global::TimeOutProc); in SetTimeout()
134 bool Global::TimeOutProc(const SkEvent& evt) { in TimeOutProc()
156 v8::Handle<v8::Value> result = onTimeout->Call(context->Global(), argc, NULL); in TimeOutProc()
178 v8::Handle<v8::Context> Global::createRootContext() { in createRootContext()
[all …]
DGlobal.h27 class Global : SkNoncopyable {
29 Global(v8::Isolate* isolate) in Global() function
37 virtual ~Global() {} in ~Global()
75 static Global* gGlobal;
/external/v8/include/
Dv8-util.h107 static void Dispose(Isolate* isolate, Global<V> value, K key) {} in Dispose()
138 static void Dispose(Isolate* isolate, Global<V> value, K key) {} in Dispose()
211 Global<V> Remove(const K& key) {
301 static PersistentContainerValue ClearAndLeak(Global<V>* persistent) {
307 static PersistentContainerValue Leak(Global<V>* persistent) {
316 static Global<V> Release(PersistentContainerValue v) {
317 Global<V> p;
327 Global<V> p;
366 Global<V> Set(const K& key, Local<V> value) {
367 Global<V> persistent(this->isolate(), value);
[all …]
/external/compiler-rt/lib/asan/
Dasan_globals.cc31 typedef __asan_global Global; typedef
34 const Global *g;
44 Global g;
54 Global *g_first, *g_last;
59 ALWAYS_INLINE void PoisonShadowForGlobal(const Global *g, u8 value) { in PoisonShadowForGlobal()
63 ALWAYS_INLINE void PoisonRedZones(const Global &g) { in PoisonRedZones()
84 static void ReportGlobal(const Global &g, const char *prefix) { in ReportGlobal()
95 static u32 FindRegistrationSite(const Global *g) { in FindRegistrationSite()
106 int GetGlobalsForAddress(uptr addr, Global *globals, u32 *reg_sites, in GetGlobalsForAddress()
112 const Global &g = *l->g; in GetGlobalsForAddress()
[all …]
/external/v8/test/mjsunit/
Darguments-apply.js37 function Global() { class
41 assertEquals(0, Global().length);
42 assertEquals(1, Global(1).length);
43 assertEquals(2, Global(2)[0]);
44 assertEquals(2, Global(3, 4).length);
45 assertEquals(3, Global(3, 4)[0]);
46 assertEquals(4, Global(3, 4)[1]);
134 assertEquals(2048, Global.apply(this, array).length);
Ddebug-scopes.js112 if (scopes[i] == debug.ScopeType.Global) {
237 debug.ScopeType.Global], exec_state);
254 debug.ScopeType.Global], exec_state);
272 debug.ScopeType.Global], exec_state);
291 debug.ScopeType.Global], exec_state);
309 debug.ScopeType.Global], exec_state);
327 debug.ScopeType.Global], exec_state);
349 debug.ScopeType.Global], exec_state);
369 debug.ScopeType.Global], exec_state);
392 debug.ScopeType.Global], exec_state);
[all …]
Ddebug-function-scopes.js46 var ScopeType = { Global: 0, property
79 CheckScope(mirror.scope(5), {}, ScopeType.Global);
88 CheckScope(mirror.scope(1), {}, ScopeType.Global);
110 CheckScope(mirror.scope(3), {}, ScopeType.Global);
134 CheckScope(mirror.scope(3), {}, ScopeType.Global);
154 CheckScope(mirror.scope(3), {}, ScopeType.Global);
/external/compiler-rt/test/tsan/
Dbenign_race.cc4 int Global; variable
17 Global = 42; in Thread()
26 &Global, sizeof(Global), "Race on Global"); in main()
33 Global = 43; in main()
Dtiny_race.c4 int Global; variable
8 Global = 42; in Thread1()
16 Global = 43; in main()
19 return Global; in main()
Dblacklist2.cc10 int Global; variable
17 Global++; in Thread1()
24 Global--; in TouchGlobal()
33 Global--; in Blacklisted_Thread2()
Drace_top_suppression.cc7 int Global; variable
15 TopFunction(&Global); in Thread()
23 Global--; in main()
/external/v8/test/mjsunit/es6/
Ddebug-blockscopes.js92 if (scopes[i] == debug.ScopeType.Global) {
211 debug.ScopeType.Global], exec_state);
230 debug.ScopeType.Global], exec_state);
248 debug.ScopeType.Global], exec_state);
267 debug.ScopeType.Global], exec_state);
288 debug.ScopeType.Global], exec_state);
311 debug.ScopeType.Global], exec_state);
335 debug.ScopeType.Global], exec_state);
365 debug.ScopeType.Global], exec_state);
387 debug.ScopeType.Global], exec_state);
[all …]
Dgenerators-debug-scopes.js79 if (scopes[i] == debug.ScopeType.Global) {
184 debug.ScopeType.Global], exec_state);
195 debug.ScopeType.Global], exec_state);
206 debug.ScopeType.Global], exec_state);
217 debug.ScopeType.Global], exec_state);
228 debug.ScopeType.Global], exec_state);
239 debug.ScopeType.Global], exec_state);
254 debug.ScopeType.Global], exec_state);
267 debug.ScopeType.Global], exec_state);
281 debug.ScopeType.Global], exec_state);
[all …]
/external/pdfium/testing/resources/javascript/
Dglobals_expected.txt48 Alert: For undefined_var: Set Persistent: ERROR: global.setPersistent: Global value not found.
72 Alert: For true_var: Set Persistent: ERROR: global.setPersistent: Global value not found.
73 Alert: For false_var: Set Persistent: ERROR: global.setPersistent: Global value not found.
74 Alert: For zero_var: Set Persistent: ERROR: global.setPersistent: Global value not found.
75 Alert: For number_var: Set Persistent: ERROR: global.setPersistent: Global value not found.
76 Alert: For string_var: Set Persistent: ERROR: global.setPersistent: Global value not found.
77 Alert: For object_var: Set Persistent: ERROR: global.setPersistent: Global value not found.
78 Alert: For null_var: Set Persistent: ERROR: global.setPersistent: Global value not found.
79 Alert: For undefined_var: Set Persistent: ERROR: global.setPersistent: Global value not found.
92 Alert: For undefined_var: Set Persistent: ERROR: global.setPersistent: Global value not found.
/external/llvm/test/Object/
Dreadobj-shared-object.test216 ELF: Binding: Global
222 ELF: Binding: Global
228 ELF: Binding: Global
234 ELF: Binding: Global
240 ELF: Binding: Global
246 ELF: Binding: Global
252 ELF: Binding: Global
261 ELF: Binding: Global
267 ELF: Binding: Global
273 ELF: Binding: Global
[all …]
Dreadobj-elf-versioning.test13 ELF: Binding: Global
19 ELF: Binding: Global
25 ELF: Binding: Global
34 ELF32: Binding: Global
42 ELF64: Binding: Global
/external/llvm/lib/DebugInfo/Symbolize/
DDIPrinter.cpp59 DIPrinter &DIPrinter::operator<<(const DIGlobal &Global) { in operator <<() argument
60 std::string Name = Global.Name; in operator <<()
64 OS << Global.Start << " " << Global.Size << "\n"; in operator <<()
/external/compiler-rt/test/BlocksRuntime/
Dnestedimport.c21 int Global = 0; variable
32 callVoidVoid(^{ Global = i; }); in main()
38 if (Global != 1) { in main()
/external/clang/test/CodeGen/
D2002-08-02-UnionTest.c11 union X Global; in foo() local
12 Global.B = (void*)123; /* Interesting part */ in foo()
13 return Global; in foo()

12345678910>>...19