/external/chromium_org/v8/src/mips/ |
deoptimizer-mips.cc | 443 AllowExternalCallThatCantCauseGC scope(masm()); 504 AllowExternalCallThatCantCauseGC scope(masm());
|
/external/chromium_org/v8/src/x64/ |
deoptimizer-x64.cc | 448 { AllowExternalCallThatCantCauseGC scope(masm()); 496 AllowExternalCallThatCantCauseGC scope(masm());
|
/external/chromium_org/v8/test/cctest/ |
test-log.cc | 64 // Need to run this prior to creating the scope. 246 v8::HandleScope scope; 250 v8::Context::Scope context_scope(context); 372 v8::HandleScope scope(v8::Isolate::GetCurrent());
|
/external/chromium_org/v8/test/mjsunit/harmony/ |
block-leave.js | 72 // NOTE: This checks that the block scope containing xx has been
|
module-parsing.js | 168 // Check that module declarations are rejected in eval or local scope.
|
/external/llvm/lib/Transforms/Instrumentation/ |
DebugIR.cpp | 258 else if (MDNode *scope = findScope(&I)) 259 NewLoc = DebugLoc::get(Line, Col, scope, 0); 261 DEBUG(dbgs() << "WARNING: no valid scope for instruction " << &I 304 /// Returns the MDNode* that represents the DI scope to associate with I 310 DEBUG(dbgs() << "WARNING: Using fallback lexical block file scope " 311 << LexicalBlockFileNode << " as scope for instruction " << I 323 DEBUG(dbgs() << "searching for DI scope node for Function " << F
|
/external/v8/samples/ |
process.cc | 138 HandleScope scope; 149 // Create a handle scope to hold the temporary references. 166 Context::Scope context_scope(context_); 244 // Create a handle scope to keep the temporary object references. 249 Context::Scope context_scope(context_); 292 // Handle scope for temporary handles. 313 // Return the result through the current handle scope. Since each 314 // of these handles will go away when the handle scope is deleted 316 // outer handle scope. 383 // Again, return the result through the current handle scope 607 HandleScope scope; local [all...] |
/external/v8/src/ |
api.h | 250 v8::HandleScope* scope) { 255 return Utils::OpenHandle(*scope->Close(Utils::ToLocal(handle))); 520 // If there's a spare block, use it for growing the current scope.
|
d8-posix.cc | 173 // A utility class that closes a file descriptor when it goes out of scope. 185 // scope. 452 HandleScope scope; local 521 return scope.Close(accumulator);
|
full-codegen.h | 83 scope_(info->scope()), 563 Scope* scope() { return scope_; } function in class:v8::internal::FullCodeGenerator 789 Scope* scope_;
|
liveobjectlist.cc | 1392 HandleScope scope; local 1731 HandleScope scope; local 1785 HandleScope scope; local 2250 HandleScope scope; local [all...] |
parser.h | 484 Scope* scope, 536 Scope* outer_scope_; 570 Scope* DeclarationScope(VariableMode mode) { 756 // For harmony block scoping mode: Check if the scope has conflicting var/let 762 // The var declarations are hoisted to the function scope, but originate from 763 // a scope where the name has also been let bound or the var declaration is 764 // hoisted over such a scope. 765 void CheckConflictingVarDeclarations(Scope* scope, bool* ok) [all...] |
mirror-debugger.js | 160 var SCOPE_TYPE = 'scope'; 193 // A copy of the scope types from runtime.cc. 390 * Check whether the mirror reflects a scope. 391 * @returns {boolean} True if the mirror reflects a scope [all...] |
/external/v8/src/ia32/ |
code-stubs-ia32.h | 633 CpuFeatures::Scope scope(SSE2); 647 CpuFeatures::Scope scope(SSE2);
|
/external/v8/test/cctest/ |
test-assembler-x64.cc | 364 v8::HandleScope scope; local 377 v8::HandleScope scope; local
|
test-lockers.cc | 70 v8::Isolate::Scope isolate_scope(isolate_); 72 v8::HandleScope scope; local 73 v8::Context::Scope context_scope(context_); 80 v8::Isolate::Scope isolate_scope(isolate_); 81 v8::Context::Scope context_scope(context_); 82 v8::HandleScope scope; local 102 v8::Isolate::Scope isolate_scope(isolate); 105 v8::Context::Scope context_scope(context); 182 v8::Isolate::Scope isolate_scope(isolate_); 230 v8::Isolate::Scope isolate_scope(isolate) [all...] |
test-log.cc | 37 // Need to run this prior to creating the scope. 217 v8::HandleScope scope; 221 v8::Context::Scope context_scope(context); 343 v8::HandleScope scope; local
|
/external/v8/test/mjsunit/harmony/ |
block-leave.js | 72 // NOTE: This checks that the block scope containing xx has been
|
/external/chromium_org/chrome/renderer/extensions/ |
extension_helper.cc | 356 v8::HandleScope scope; local
|
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
AccessibilityTable.cpp | 128 // cells have borders, or use attributes like headers, abbr, scope or axis 197 || !cellElement->axis().isEmpty() || !cellElement->scope().isEmpty())
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
SVGCSSParser.cpp | 276 ShorthandScope scope(this, propId);
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
Text.cpp | 63 EventQueueScope scope; local
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
RangeInputType.cpp | 232 EventQueueScope scope; local
|
/external/chromium_org/third_party/libxml/src/include/libxml/ |
schemasInternals.h | 785 const xmlChar *scope; member in struct:_xmlSchemaElement
|
/external/chromium_org/v8/src/ |
handles.h | 84 // Closes the given scope, but lets this handle escape. See 86 inline Handle<T> EscapeFrom(v8::HandleScope* scope); 121 // After a handle scope has been created, all local handles will be 122 // allocated within that handle scope until either the handle scope is 123 // deleted or another handle scope is created. If there is already a 124 // handle scope and a new one is created, all allocations will take 125 // place in the new handle scope until it is deleted. After that, 126 // new handles will again be allocated in the original handle scope. 128 // After the handle scope of a local handle has been deleted th [all...] |