Searched refs:Scope (Results 151 - 175 of 427) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/renderer/net/
H A Dnet_error_page_controller.cc27 v8::Context::Scope context_scope(context);
/external/chromium_org/components/nacl/renderer/
H A Dprogress_event.cc68 v8::Context::Scope context_scope(context);
/external/chromium_org/content/renderer/
H A Dmemory_benchmarking_extension.cc32 v8::Context::Scope context_scope(context);
H A Dv8_value_converter_impl_unittest.cc223 v8::Context::Scope context_scope(context);
273 v8::Context::Scope context_scope(context);
287 v8::Context::Scope context_scope(context);
329 v8::Context::Scope context_scope(context);
369 v8::Context::Scope context_scope(context);
405 v8::Context::Scope context_scope(context);
429 v8::Context::Scope context_scope(context);
454 v8::Context::Scope context_scope(context);
487 v8::Context::Scope context_scope(context);
525 v8::Context::Scope context_scop
[all...]
H A Dweb_ui_runner.cc32 v8::Isolate::Scope isolate_scope(context_holder->isolate());
/external/chromium_org/gin/modules/
H A Dfile_module_provider.cc39 Runner::Scope scope(runner.get());
/external/chromium_org/gin/test/
H A Dfile_runner.cc66 gin::Runner::Scope scope(&runner);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDevToolsFrontendImpl.cpp83 ScriptState::Scope scope(scriptState);
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DCustomEventTest.cpp66 ScriptState::Scope scope(scriptState());
/external/chromium_org/tools/gn/
H A Daction_target_generator.cc18 Scope* scope,
H A Dfunction_get_label_info.cc84 Value RunGetLabelInfo(Scope* scope,
H A Dfunction_write_file.cc46 Value RunWriteFile(Scope* scope,
H A Dscope_per_file_provider.cc13 ScopePerFileProvider::ScopePerFileProvider(Scope* scope,
H A Dcommand_args.cc121 Scope::KeyValueMap build_args;
131 for (Scope::KeyValueMap::const_iterator i = build_args.begin();
136 Scope::KeyValueMap::const_iterator found_arg = build_args.find(list_value);
229 // Scope the setup. We only use it for some basic state. We'll do the
/external/clang/include/clang/Analysis/
H A DAnalysisContext.h203 enum ContextKind { StackFrame, Scope, Block }; enumerator in enum:clang::LocationContext::ContextKind
315 : LocationContext(Scope, ctx, parent), Enter(s) {}
324 ProfileCommon(ID, Scope, ctx, parent, s);
328 return Ctx->getKind() == Scope;
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DSymtab.py47 # A symbol table entry in a Scope or ModuleNamespace.
253 class Scope(object): class in inherits:object
255 # outer_scope Scope or None Enclosing scope
840 class PreImportScope(Scope):
845 Scope.__init__(self, Options.pre_import, None, None)
854 class BuiltinScope(Scope):
861 Scope.__init__(self, "__builtin__", None, None)
863 Scope.__init__(self, "__builtin__", PreImportScope(), None)
875 return Scope.lookup(self, name)
967 class ModuleScope(Scope)
[all...]
/external/chromium_org/chrome/renderer/extensions/
H A Dwebstore_bindings.cc210 v8::Context::Scope context_scope(context()->v8_context());
236 v8::Context::Scope context_scope(context()->v8_context());
246 v8::Context::Scope context_scope(context()->v8_context());
/external/chromium_org/content/renderer/java/
H A Dgin_java_bridge_value_converter_unittest.cc43 v8::Context::Scope context_scope(context);
80 v8::Context::Scope context_scope(context);
101 v8::Context::Scope context_scope(context);
/external/chromium_org/extensions/renderer/
H A Dscript_context.cc122 v8::Context::Scope scope(v8_context());
156 v8::Context::Scope context_scope(v8_context());
166 v8::Context::Scope context_scope(v8_context());
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DScriptEventListener.cpp117 v8::Context::Scope contextScope(context);
138 v8::Context::Scope contextScope(context);
163 v8::Context::Scope contextScope(context);
H A DWindowProxy.cpp124 ScriptState::Scope scope(m_scriptState.get());
199 ScriptState::Scope scope(m_scriptState.get());
330 ScriptState::Scope scope(m_scriptState.get());
462 ScriptState::Scope scope(m_scriptState.get());
479 ScriptState::Scope scope(m_scriptState.get());
H A DNPV8Object.cpp262 ScriptState::Scope scope(scriptState);
318 ScriptState::Scope scope(scriptState);
368 ScriptState::Scope scope(scriptState);
403 ScriptState::Scope scope(scriptState);
436 ScriptState::Scope scope(scriptState);
463 ScriptState::Scope scope(scriptState);
482 ScriptState::Scope scope(scriptState);
504 ScriptState::Scope scope(scriptState);
531 ScriptState::Scope scope(scriptState);
547 ScriptState::Scope scop
[all...]
/external/clang/include/clang/Sema/
H A DScopeInfo.h39 class Scope;
525 Scope *TheScope;
531 BlockScopeInfo(DiagnosticsEngine &Diag, Scope *BlockScope, BlockDecl *Block)
553 Scope *TheScope;
559 CapturedRegionScopeInfo(DiagnosticsEngine &Diag, Scope *S, CapturedDecl *CD,
/external/clang/lib/Analysis/
H A DCFG.cpp104 const LocalScope* Scope; member in class:__anon17770::LocalScope::const_iterator
107 /// Invalid iterator (with null Scope) has VarIter equal to 0.
115 : Scope(nullptr), VarIter(0) {}
120 : Scope(&S), VarIter(I) {
123 if (VarIter == 0 && Scope)
124 *this = Scope->Prev;
128 assert (Scope && "Dereferencing invalid iterator is not allowed");
130 return &Scope->Vars[VarIter - 1];
137 if (!Scope)
143 *this = Scope
1171 createOrReuseLocalScope(LocalScope* Scope) argument
1207 addLocalScopeForDeclStmt(DeclStmt *DS, LocalScope* Scope) argument
1221 addLocalScopeForVarDecl(VarDecl *VD, LocalScope* Scope) argument
[all...]
/external/clang/lib/Parse/
H A DParser.cpp22 #include "clang/Sema/Scope.h"
348 // Scope manipulation
354 Scope *N = ScopeCache[--NumCachedScopes];
358 Actions.CurScope = new Scope(getCurScope(), ScopeFlags, Diags);
364 assert(getCurScope() && "Scope imbalance!");
370 Scope *OldScope = getCurScope();
425 EnterScope(Scope::DeclScope);
986 ParseScope BodyScope(this, Scope::FnScope|Scope::DeclScope);
987 Scope *ParentScop
[all...]

Completed in 477 milliseconds

1234567891011>>