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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/web/
InspectorFrontendClientImpl.cpp 68 v8::Context::Scope contextScope(frameContext);
WebDevToolsFrontendImpl.cpp 154 v8::HandleScope scope; local
156 v8::Context::Scope contextScope(frameContext);
  /external/chromium_org/tools/gn/
scope_per_file_provider.cc 14 ScopePerFileProvider::ScopePerFileProvider(Scope* scope,
16 : ProgrammaticProvider(scope),
toolchain_manager.cc 17 #include "tools/gn/scope.h"
26 void SetSystemVars(const Settings& settings, Scope* scope) {
28 scope->SetValue("is_win", Value(NULL, 1), NULL);
29 scope->SetValue("is_posix", Value(NULL, 0), NULL);
31 scope->SetValue("is_win", Value(NULL, 0), NULL);
32 scope->SetValue("is_posix", Value(NULL, 1), NULL);
36 scope->SetValue("is_mac", Value(NULL, 1), NULL);
38 scope->SetValue("is_mac", Value(NULL, 0), NULL);
42 scope->SetValue("is_linux", Value(NULL, 1), NULL)
    [all...]
  /external/chromium_org/v8/test/cctest/
test-random.cc 74 v8::HandleScope scope(isolate);
75 v8::Context::Scope context_scope(v8::Context::New(isolate));
test-disasm-x64.cc 51 v8::HandleScope scope; local
95 CpuFeatures::Scope fscope(CPUID);
100 CpuFeatures::Scope fscope(RDTSC);
345 CpuFeatures::Scope fscope(SSE2);
368 CpuFeatures::Scope use_cmov(CMOV);
391 CpuFeatures::Scope fscope(SSE2);
  /external/clang/lib/CodeGen/
CGCleanup.h 31 /// A protected scope for zero-cost EH handling.
72 /// Always a multiple of the scope-stack alignment.
76 /// this one). If this is the top cleanup scope, all the fixups
77 /// from this index onwards belong to this scope.
133 /// A scope which attempts to handle some, possibly all, types of
136 /// Objective C \@finally blocks are represented using a cleanup scope
137 /// after the catch scope.
201 static bool classof(const EHScope *Scope) {
202 return Scope->getKind() == Catch;
206 /// A cleanup scope which generates the cleanup blocks lazily
    [all...]
  /external/clang/lib/Sema/
AttributeList.cpp 135 StringRef Scope = ScopeName ? ScopeName->getName() : "";
JumpDiagnostics.cpp 1 //===--- JumpDiagnostics.cpp - Protected scope jump analysis ------*- C++ -*-=//
11 // jumps that enter a protected scope in an invalid way.
36 /// scopes that are introduced by VLAs and other things that scope jumps like
37 /// gotos. This scope tree has nothing to do with the source scope tree,
41 /// ParentScope - The index in ScopeMap of the parent scope. This is 0 for
42 /// the parent scope is the function body.
45 /// InDiag - The note to emit if there is a jump into this scope.
49 /// of this scope. Direct jumps always clean up their current scope
    [all...]
SemaCodeComplete.cpp 25 #include "clang/Sema/Scope.h"
118 /// this name within a particular scope and their index within the list of
311 /// \brief Enter into a new scope.
314 /// \brief Exit from the current scope.
442 /// typically based on the current scope.
816 assert(!ShadowMaps.empty() && "Must enter into a results scope");
865 // This is a new declaration in this scope. However, check whether this
867 // scope.
    [all...]
SemaPseudoObject.cpp 219 ExprResult buildAssignmentOperation(Scope *Sc,
223 ExprResult buildIncDecOperation(Scope *Sc, SourceLocation opLoc,
271 ExprResult buildAssignmentOperation(Scope *Sc,
275 ExprResult buildIncDecOperation(Scope *Sc, SourceLocation opLoc,
310 ExprResult buildAssignmentOperation(Scope *Sc,
399 PseudoOpBuilder::buildAssignmentOperation(Scope *Sc, SourceLocation opcLoc,
449 PseudoOpBuilder::buildIncDecOperation(Scope *Sc, SourceLocation opcLoc,
815 ObjCPropertyOpBuilder::buildAssignmentOperation(Scope *Sc,
862 ObjCPropertyOpBuilder::buildIncDecOperation(Scope *Sc, SourceLocation opcLoc,
    [all...]
SemaLookup.cpp 29 #include "clang/Sema/Scope.h"
100 void visitScopeChain(Scope *S, Scope *InnermostFileScope) {
111 // A using-directive shall not appear in class scope, but may
112 // appear in namespace scope or in block scope.
117 Scope::udir_iterator I = S->using_directives_begin(),
177 // The using-directive is transitive: if a scope contains a
383 // Redeclarations of types via typedef can occur both within a scope
428 // C++ [basic.scope.hiding]p2
    [all...]
  /external/chromium_org/chrome/renderer/extensions/
content_watcher.cc 100 v8::HandleScope scope; local
101 v8::Context::Scope context_scope(frame->mainWorldScriptContext());
103 ModuleSystem::NativesEnabledScope scope(module_system);
132 v8::HandleScope scope; local
138 v8::Context::Scope context_scope(frame->mainWorldScriptContext());
chrome_v8_context.cc 80 v8::Context::Scope scope(v8_context());
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
WorkerScriptController.cpp 105 v8::Context::Scope scope(context);
150 v8::Context::Scope scope(context);
  /external/clang/lib/Parse/
ParseTemplate.cpp 21 #include "clang/Sema/Scope.h"
67 // Enter template-parameter scope.
68 ParseScope TemplateParmScope(this, Scope::TemplateParamScope);
76 // parameter scope, e.g.,
160 /// declaration. Will be AS_none for namespace-scope declarations.
510 // Per C++0x [basic.scope.pdecl]p9, we parse the default argument before
511 // we introduce the type parameter into the local scope.
542 ParseScope TemplateParmScope(this, Scope::TemplateParamScope);
604 // Per C++0x [basic.scope.pdecl]p9, we parse the default argument before
605 // we introduce the template parameter into the local scope
    [all...]
  /external/llvm/unittests/ExecutionEngine/JIT/
JITEventListenerTestCommon.h 61 llvm::MDNode* Scope;
84 Scope = DebugBuilder->createFile(getFilename(), ".");
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGDumper.cpp 498 Scope(dl.getScope(G->getMachineFunction().getFunction()->getContext()));
500 assert((!Scope || Scope.isScope()) &&
501 "Scope of a DebugLoc should be null or a DIScope.");
503 if (Scope)
504 OS << Scope.getFilename();
  /external/v8/test/cctest/
test-disasm-x64.cc 59 v8::HandleScope scope; local
103 CpuFeatures::Scope fscope(CPUID);
108 CpuFeatures::Scope fscope(RDTSC);
352 CpuFeatures::Scope fscope(SSE2);
375 CpuFeatures::Scope use_cmov(CMOV);
398 CpuFeatures::Scope fscope(SSE2);
  /external/qemu-pc-bios/bochs/bios/
acpi-dsdt.dsl 28 Scope (\)
40 Scope(\_SB) {
216 Scope(\_SB.PCI0) {
431 Scope(\_SB) {
656 Scope (\_GPE)
  /external/chromium_org/v8/src/
parser.h 499 Scope* scope,
549 Scope* outer_scope_;
600 Scope* DeclarationScope(VariableMode mode) {
794 // For harmony block scoping mode: Check if the scope has conflicting var/let
800 // The var declarations are hoisted to the function scope, but originate from
801 // a scope where the name has also been let bound or the var declaration is
802 // hoisted over such a scope.
803 void CheckConflictingVarDeclarations(Scope* scope, bool* ok)
    [all...]
d8.cc 91 HandleScope scope(isolate);
243 v8::Context::Scope context_scope(context);
599 v8::Context::Scope context_scope(utility_context);
617 v8::Context::Scope context_scope(context);
632 v8::Context::Scope context_scope(context);
647 v8::Context::Scope context_scope(context);
755 HandleScope scope(isolate);
764 v8::Context::Scope context_scope(utility_context);
768 // Install the debugger object in the utility scope
909 HandleScope scope(isolate)
    [all...]
  /external/chromium_org/content/renderer/pepper/
v8_var_converter_unittest.cc 155 v8::Context::Scope context_scope(isolate_, context_);
277 v8::Context::Scope context_scope(isolate_, context_);
343 v8::Context::Scope context_scope(isolate_, context_);
  /libcore/json/src/main/java/org/json/
JSONObject.java 717 stringer.open(JSONStringer.Scope.NULL, "");
719 stringer.close(JSONStringer.Scope.NULL, JSONStringer.Scope.NULL, "");
  /external/chromium/base/memory/
scoped_vector_unittest.cc 118 TEST(ScopedVectorTest, Scope) {
139 // Start scope for ScopedVector.

Completed in 2205 milliseconds

1 2 3 4 56 7 8 91011>>