HomeSort by relevance Sort by last modified time
    Searched refs:Scope (Results 76 - 100 of 386) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/bindings/templates/
callback_interface.cpp 69 v8::Context::Scope scope(v8Context);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8PerContextData.cpp 96 v8::Context::Scope scope(v8::Local<v8::Context>::New(m_isolate, m_context));
110 v8::Context::Scope scope(v8::Local<v8::Context>::New(m_isolate, m_context));
179 v8::Context::Scope contextScope(context);
185 v8::Context::Scope contextScope(context);
193 v8::HandleScope scope;
201 v8::HandleScope scope; local
ScheduledAction.cpp 93 v8::Context::Scope scope(context);
113 v8::Context::Scope scope(context);
ScriptDebugServer.cpp 78 v8::HandleScope scope(m_isolate);
83 v8::Context::Scope contextScope(context);
104 v8::Context::Scope contextScope(context);
144 v8::HandleScope scope(m_isolate);
146 v8::Context::Scope contextScope(debuggerContext);
166 v8::HandleScope scope(m_isolate);
168 v8::Context::Scope contextScope(debuggerContext);
180 v8::HandleScope scope(m_isolate);
182 v8::Context::Scope contextScope(debuggerContext);
191 v8::HandleScope scope(m_isolate)
    [all...]
V8MutationCallback.cpp 60 v8::Context::Scope scope(v8Context);
  /external/chromium_org/tools/gn/
function_write_file.cc 40 Value RunWriteFile(Scope* scope,
56 scope->settings()->build_settings()->build_dir(),
72 scope->settings()->build_settings()->GetFullPath(source_file);
string_utils_unittest.cc 7 #include "tools/gn/scope.h"
16 Scope scope(static_cast<const Settings*>(NULL));
17 scope.SetValue("one", Value(NULL, 1), NULL);
18 scope.SetValue("onestring", Value(NULL, "one"), NULL);
29 bool ret = ExpandStringLiteral(&scope, literal, &result, &err);
string_utils.cc 8 #include "tools/gn/scope.h"
101 bool AppendIdentifierValue(Scope* scope,
106 const Value* value = scope->GetValue(identifier, true);
112 std::string("\"") + identifier + "\" is not currently in scope.");
122 bool ExpandStringLiteral(Scope* scope,
155 if (!AppendIdentifierValue(scope, literal, identifier, &output, err))
  /external/chromium_org/v8/src/
variables.cc 58 Variable::Variable(Scope* scope,
65 : scope_(scope),
compiler.h 78 Scope* scope() const { return scope_; } function in class:v8::internal::CompilationInfo
79 Scope* global_scope() const { return global_scope_; }
168 void SetScope(Scope* scope) {
170 scope_ = scope;
172 void SetGlobalScope(Scope* global_scope) {
378 // The scope of the function literal as a convenience. Set to indicate
380 Scope* scope_;
381 // The global scope provided as a convenience
    [all...]
  /external/clang/include/clang/Frontend/
ChainedIncludesSource.h 70 virtual bool LookupUnqualified(LookupResult &R, Scope *S);
  /external/v8/src/
variables.cc 57 Variable::Variable(Scope* scope,
64 : scope_(scope),
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
symbols.py 14 class Scope:
88 """Return scope of name.
90 The scope of a name could be LOCAL, GLOBAL, FREE, or CELL.
123 """Force name to be global in scope.
127 variable. Now that all its enclosing scope have been
143 """Process list of free vars from nested scope.
147 the nested scope should treat them as globals.
172 class ModuleScope(Scope):
173 __super_init = Scope.__init__
178 class FunctionScope(Scope)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/
symbols.py 14 class Scope:
88 """Return scope of name.
90 The scope of a name could be LOCAL, GLOBAL, FREE, or CELL.
123 """Force name to be global in scope.
127 variable. Now that all its enclosing scope have been
143 """Process list of free vars from nested scope.
147 the nested scope should treat them as globals.
172 class ModuleScope(Scope):
173 __super_init = Scope.__init__
178 class FunctionScope(Scope)
    [all...]
  /external/clang/lib/Parse/
ParseStmt.cpp 24 #include "clang/Sema/Scope.h"
418 ParseScope ExpectScope(this, Scope::DeclScope | Scope::ControlScope);
687 return ParseCompoundStatement(isStmtExpr, Scope::DeclScope);
721 // Enter a scope to hold everything within the compound stmt. Compound
773 /// consume the '}' at the end of the block. It does not manipulate the scope
    [all...]
  /external/chromium_org/content/renderer/
v8_value_converter_impl_unittest.cc 229 v8::Context::Scope context_scope(isolate_, context_);
266 v8::Context::Scope context_scope(isolate_, context_);
280 v8::Context::Scope context_scope(isolate_, context_);
320 v8::Context::Scope context_scope(isolate_, context_);
359 v8::Context::Scope context_scope(isolate_, context_);
393 v8::Context::Scope context_scope(isolate_, context_);
416 v8::Context::Scope context_scope(isolate_, context_);
440 v8::Context::Scope context_scope(isolate_, context_);
472 v8::Context::Scope context_scope(isolate_, context_);
509 v8::Context::Scope context_scope(isolate_, context_)
    [all...]
v8_value_converter_impl.cc 26 // Level scope which updates the current depth of some FromV8ValueState.
114 v8::Context::Scope context_scope(context);
122 v8::Context::Scope context_scope(context);
303 scoped_ptr<v8::Context::Scope> scope;
308 scope.reset(new v8::Context::Scope(val->CreationContext()));
372 scoped_ptr<v8::Context::Scope> scope;
377 scope.reset(new v8::Context::Scope(val->CreationContext()))
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 357 // scope then create and insert DIEs for these variables.
434 // Construct new DW_TAG_lexical_block for this scope and attach
437 LexicalScope *Scope) {
439 if (Scope->isAbstractScope())
442 const SmallVectorImpl<InsnRange> &Ranges = Scope->getRanges();
473 assert(Start->isDefined() && "Invalid starting label for an inlined scope!");
474 assert(End->isDefined() && "Invalid end label for an inlined scope!");
482 // This scope represents inlined body of a function. Construct DIE to
485 LexicalScope *Scope) {
486 const SmallVectorImpl<InsnRange> &Ranges = Scope->getRanges()
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-2073.js 38 function Scope() {
48 Scope.prototype = {
81 function inc(scope) {
82 scope.counter = scope.counter + 1;
85 var $root = new Scope();
  /external/v8/test/cctest/
test-thread-termination.cc 124 v8::HandleScope scope; local
128 v8::Context::Scope context_scope(context);
144 v8::HandleScope scope; local
148 v8::Context::Scope context_scope(context);
184 v8::HandleScope scope; local
187 v8::Context::Scope context_scope(context);
206 v8::HandleScope scope; local
211 v8::Context::Scope context_scope(context);
305 v8::HandleScope scope; local
314 v8::Context::Scope context_scope(context)
356 v8::HandleScope scope; local
    [all...]
  /external/chromium_org/chrome/renderer/extensions/
v8_schema_registry.cc 70 v8::Context::Scope context_scope(GetOrCreateContext(isolate));
90 v8::Context::Scope context_scope(context);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8InjectedScriptManager.cpp 75 v8::Context::Scope contextScope(inspectedContext);
114 v8::Context::Scope contextScope(context);
  /external/clang/lib/Sema/
Android.mk 35 Scope.cpp \
  /external/llvm/lib/IR/
DIBuilder.cpp 404 DIDescriptor Scope, StringRef Name, DIFile File, unsigned LineNumber,
411 getNonCompileUnitScope(Scope),
426 DIBuilder::createStaticMemberType(DIDescriptor Scope, StringRef Name,
435 getNonCompileUnitScope(Scope),
662 DICompositeType DIBuilder::createUnionType(DIDescriptor Scope, StringRef Name,
672 getNonCompileUnitScope(Scope),
713 DIDescriptor Scope, StringRef Name, DIFile File, unsigned LineNumber,
720 getNonCompileUnitScope(Scope),
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/tests/
CustomEventTest.cpp 63 v8::Context::Scope scope(m_v8Context);

Completed in 3859 milliseconds

1 2 34 5 6 7 8 91011>>