/external/v8/test/cctest/ |
D | test-deoptimization.cc | 132 CHECK_EQ(1, env->Global()->Get(v8_str("count"))->Int32Value()); in TEST() 133 CHECK(!GetJSFunction(env->Global(), "f")->IsOptimized()); in TEST() 148 CHECK_EQ(1, env->Global()->Get(v8_str("count"))->Int32Value()); in TEST() 149 CHECK(!GetJSFunction(env->Global(), "f")->IsOptimized()); in TEST() 172 CHECK_EQ(1, env->Global()->Get(v8_str("count"))->Int32Value()); in TEST() 173 CHECK(!GetJSFunction(env->Global(), "f")->IsOptimized()); in TEST() 189 CHECK_EQ(1, env->Global()->Get(v8_str("count"))->Int32Value()); in TEST() 190 CHECK(!GetJSFunction(env->Global(), "f")->IsOptimized()); in TEST() 214 CHECK_EQ(1, env->Global()->Get(v8_str("count"))->Int32Value()); in TEST() 215 CHECK_EQ(6, env->Global()->Get(v8_str("result"))->Int32Value()); in TEST() [all …]
|
D | test-debug.cc | 115 v8::Utils::OpenHandle(*context_->Global()))); in ExposeDebug() 137 return v8::Local<v8::Function>::Cast((*env)->Global()->Get( in CompileFunction() 147 v8::Local<v8::Object> global = isolate->GetCurrentContext()->Global(); in CompileFunction() 1109 env->Global()->Get(v8::String::NewFromUtf8(env->GetIsolate(), "foo"))); in TEST() 1112 foo->Call(env->Global(), 0, NULL); in TEST() 1117 foo->Call(env->Global(), 0, NULL); in TEST() 1119 foo->Call(env->Global(), 0, NULL); in TEST() 1124 foo->Call(env->Global(), 0, NULL); in TEST() 1144 env->Global()->Get(v8::String::NewFromUtf8(env->GetIsolate(), "foo"))); in TEST() 1147 foo->Call(env->Global(), 0, NULL); in TEST() [all …]
|
D | test-object-observe.cc | 57 context2->Global()->Set(String::NewFromUtf8(CcTest::isolate(), "obj"), in TEST() 66 context3->Global()->Set(String::NewFromUtf8(CcTest::isolate(), "obj"), in TEST() 74 context4->Global()->Set( in TEST() 76 context4->Global()->Set(String::NewFromUtf8(CcTest::isolate(), "fun1"), in TEST() 78 context4->Global()->Set(String::NewFromUtf8(CcTest::isolate(), "fun2"), in TEST() 80 context4->Global()->Set(String::NewFromUtf8(CcTest::isolate(), "fun3"), in TEST() 199 context2->Global()->Set(String::NewFromUtf8(CcTest::isolate(), "obj"), in TEST() 201 context2->Global()->Set( in TEST() 316 context->Global()->Set(String::NewFromUtf8(v8_isolate, "obj"), obj); in TEST() 317 context->Global()->Set(String::NewFromUtf8(v8_isolate, "proto"), in TEST() [all …]
|
/external/v8/test/mjsunit/ |
D | debug-scopes.js | 112 if (scopes[i] == debug.ScopeType.Global) { 218 debug.ScopeType.Global], exec_state); 234 debug.ScopeType.Global], exec_state); 251 debug.ScopeType.Global], exec_state); 269 debug.ScopeType.Global], exec_state); 286 debug.ScopeType.Global], exec_state); 303 debug.ScopeType.Global], exec_state); 324 debug.ScopeType.Global], exec_state); 343 debug.ScopeType.Global], exec_state); 365 debug.ScopeType.Global], exec_state); [all …]
|
D | arguments-apply.js | 37 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);
|
D | debug-function-scopes.js | 46 var ScopeType = { Global: 0, property 77 CheckScope(mirror.scope(4), {}, ScopeType.Global); 85 CheckScope(mirror.scope(0), {}, ScopeType.Global); 106 CheckScope(mirror.scope(2), {}, ScopeType.Global); 129 CheckScope(mirror.scope(2), {}, ScopeType.Global); 148 CheckScope(mirror.scope(2), {}, ScopeType.Global);
|
/external/skia/experimental/SkV8Example/ |
D | Global.cpp | 15 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 …]
|
D | Global.h | 27 class Global : SkNoncopyable { 29 Global(v8::Isolate* isolate) in Global() function 37 virtual ~Global() {} in ~Global() 75 static Global* gGlobal;
|
/external/compiler-rt/lib/asan/ |
D | asan_globals.cc | 30 typedef __asan_global Global; typedef 33 const Global *g; 43 Global g; 53 Global *g_first, *g_last; 58 ALWAYS_INLINE void PoisonShadowForGlobal(const Global *g, u8 value) { in PoisonShadowForGlobal() 62 ALWAYS_INLINE void PoisonRedZones(const Global &g) { in PoisonRedZones() 83 static void ReportGlobal(const Global &g, const char *prefix) { in ReportGlobal() 95 Global *output_global) { in DescribeOrGetInfoIfGlobal() 100 const Global &g = *l->g; in DescribeOrGetInfoIfGlobal() 122 Global g = {}; in GetInfoForAddressIfGlobal() [all …]
|
/external/compiler-rt/test/tsan/ |
D | benign_race.cc | 4 int Global; variable 17 Global = 42; in Thread() 26 &Global, sizeof(Global), "Race on Global"); in main() 33 Global = 43; in main()
|
D | tiny_race.c | 4 int Global; variable 8 Global = 42; in Thread1() 16 Global = 43; in main() 19 return Global; in main()
|
D | blacklist2.cc | 10 int Global; variable 17 Global++; in Thread1() 24 Global--; in TouchGlobal() 33 Global--; in Blacklisted_Thread2()
|
D | ignore_sync.cc | 8 int Global; variable 14 Global++; in Thread() 24 Global++; in main()
|
D | blacklist.cc | 8 int Global; variable 11 Global++; in Thread1() 16 Global--; in Blacklisted_Thread2()
|
D | default_options.cc | 9 int Global; variable 12 Global = 42; in Thread1() 17 Global = 43; in Thread2()
|
D | simple_race.c | 4 int Global; variable 8 Global = 42; in Thread1() 13 Global = 43; in Thread2()
|
D | simple_race.cc | 4 int Global; variable 8 Global++; in Thread1() 13 Global--; in Thread2()
|
D | suppressions_race2.cc | 4 int Global; variable 7 Global = 42; in Thread1() 14 Global = 43; in Thread2()
|
/external/v8/test/mjsunit/harmony/ |
D | debug-blockscopes.js | 91 if (scopes[i] == debug.ScopeType.Global) { 200 debug.ScopeType.Global], exec_state); 218 debug.ScopeType.Global], exec_state); 235 debug.ScopeType.Global], exec_state); 253 debug.ScopeType.Global], exec_state); 273 debug.ScopeType.Global], exec_state); 295 debug.ScopeType.Global], exec_state); 318 debug.ScopeType.Global], exec_state); 347 debug.ScopeType.Global], exec_state); 367 debug.ScopeType.Global], exec_state); [all …]
|
/external/v8/test/mjsunit/es6/ |
D | generators-debug-scopes.js | 79 if (scopes[i] == debug.ScopeType.Global) { 181 debug.ScopeType.Global], exec_state); 191 debug.ScopeType.Global], exec_state); 201 debug.ScopeType.Global], exec_state); 211 debug.ScopeType.Global], exec_state); 221 debug.ScopeType.Global], exec_state); 231 debug.ScopeType.Global], exec_state); 245 debug.ScopeType.Global], exec_state); 257 debug.ScopeType.Global], exec_state); 270 debug.ScopeType.Global], exec_state); [all …]
|
/external/llvm/test/Object/ |
D | readobj-shared-object.test | 216 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 …]
|
D | readobj-elf-versioning.test | 13 ELF: Binding: Global 19 ELF: Binding: Global 25 ELF: Binding: Global 34 ELF32: Binding: Global 42 ELF64: Binding: Global
|
/external/pdfium/testing/resources/javascript/ |
D | globals_expected.txt | 48 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/compiler-rt/test/BlocksRuntime/ |
D | nestedimport.c | 21 int Global = 0; variable 32 callVoidVoid(^{ Global = i; }); in main() 38 if (Global != 1) { in main()
|
/external/clang/test/CodeGen/ |
D | 2002-08-02-UnionTest.c | 11 union X Global; in foo() local 12 Global.B = (void*)123; /* Interesting part */ in foo() 13 return Global; in foo()
|