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

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/tools/gn/
function_toolchain.cc 9 #include "tools/gn/scope.h"
18 // the toolchain property on a scope.
21 // Reads the given string from the scope (if present) and puts the result into
23 bool ReadString(Scope& scope, const char* var, std::string* dest, Err* err) {
24 const Value* v = scope.GetValue(var, true);
42 Value RunToolchain(Scope* scope,
47 if (!EnsureNotProcessingImport(function, scope, err) ||
48 !EnsureNotProcessingBuildConfig(function, scope, err)
    [all...]
operators.cc 10 #include "tools/gn/scope.h"
18 // Applies the sources assignment filter from the given scope to each element
21 void AppendFilteredSourcesToValue(const Scope* scope,
24 const PatternList* filter = scope->GetSourcesAssignmentFilter();
95 Value ExecuteEquals(Scope* scope,
100 const Value* old_value = scope->GetValue(left.value(), false);
102 if (scope->IsSetButUnused(left.value())) {
112 err->AppendSubErr(Err(*scope->GetValue(left.value())
    [all...]
function_read_file.cc 40 Value RunReadFile(Scope* scope,
56 scope->settings()->build_settings()->GetFullPath(source_file);
function_set_default_toolchain.cc 8 #include "tools/gn/scope.h"
44 Value RunSetDefaultToolchain(Scope* scope,
48 if (!scope->IsProcessingBuildConfig()) {
56 if (!scope->IsProcessingDefaultBuildConfig())
60 const Label& default_toolchain = ToolchainLabelForScope(scope);
70 scope->settings()->build_settings()->toolchain_manager();
parse_tree.cc 13 #include "tools/gn/scope.h"
55 Value AccessorNode::Execute(Scope* scope, Err* err) const {
56 Value index_value = index_->Execute(scope, err);
62 const Value* base_value = scope->GetValue(base_.value(), true);
121 Value BinaryOpNode::Execute(Scope* scope, Err* err) const {
122 return ExecuteBinaryOperator(scope, this, left_.get(), right_.get(), err);
156 Value BlockNode::Execute(Scope* containing_scope, Err* err) const {
158 Scope our_scope(containing_scope)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/tests/results/
V8TestCallback.cpp 59 v8::Context::Scope scope(v8Context);
80 v8::Context::Scope scope(v8Context);
109 v8::Context::Scope scope(v8Context);
145 v8::Context::Scope scope(v8Context);
174 v8::Context::Scope scope(v8Context)
    [all...]
  /external/chromium_org/v8/src/
variables.h 67 // the context object on the heap, starting at 0. scope() is the
68 // corresponding scope.
77 Variable(Scope* scope,
91 // in an outer scope about which we don't know anything (it may not
92 // be the global scope). scope() is NULL in that case. Currently the
93 // scope is only used to follow the context chain length.
94 Scope* scope() const { return scope_; function in class:v8::internal::Variable
    [all...]
prettyprinter.h 73 void PrintParameters(Scope* scope);
102 void PrintParameters(Scope* scope);
preparser.h 165 Scope top_scope(&scope_, kTopLevelScope);
478 class Scope {
480 Scope(Scope** variable, ScopeType type)
492 ~Scope() { *variable_ = prev_; }
513 explicit InsideWith(Scope* scope) : scope_(scope) {
514 scope->with_nesting_count_++;
520 Scope* scope_
    [all...]
  /external/llvm/lib/IR/
DebugInfo.cpp 240 /// isScope - Return true if the specified tag is one of the scope
657 // This variable is not inlined function argument if its scope
695 // If the current node has a parent scope then return that,
696 // else return an empty scope.
714 assert((isFile() || isCompileUnit()) && "Unhandled type of scope.");
814 // Insert inlined scope as 7th element.
821 /// cleanseInlinedVariable - Remove inlined scope from the variable.
824 // Insert inlined scope as 7th element.
832 /// getDISubprogram - Find subprogram that is enclosing this scope.
833 DISubprogram llvm::getDISubprogram(const MDNode *Scope) {
    [all...]
  /external/v8/src/
variables.h 67 // the context object on the heap, starting at 0. scope() is the
68 // corresponding scope.
77 Variable(Scope* scope,
91 // in an outer scope about which we don't know anything (it may not
92 // be the global scope). scope() is NULL in that case. Currently the
93 // scope is only used to follow the context chain length.
94 Scope* scope() const { return scope_; function in class:v8::internal::Variable
    [all...]
prettyprinter.h 73 void PrintParameters(Scope* scope);
100 void PrintParameters(Scope* scope);
compiler.h 62 Scope* scope() const { return scope_; } function in class:v8::internal::BASE_EMBEDDED
63 Scope* global_scope() const { return global_scope_; }
101 void SetScope(Scope* scope) {
103 scope_ = scope;
105 void SetGlobalScope(Scope* global_scope) {
232 // The scope of the function literal as a convenience. Set to indicate
234 Scope* scope_;
235 // The global scope provided as a convenience
    [all...]
preparser.h 444 class Scope {
446 Scope(Scope** variable, ScopeType type)
457 ~Scope() { *variable_ = prev_; }
477 Scope** const variable_;
478 Scope* const prev_;
489 Scope top_scope(&scope_, kTopLevelScope);
648 Scope* scope_;
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8CustomSQLStatementErrorCallback.cpp 55 v8::Context::Scope scope(v8Context);
  /external/clang/lib/Parse/
ParseCXXInlineMethods.cpp 19 #include "clang/Sema/Scope.h"
279 ParseScope ClassTemplateScope(this, Scope::TemplateParamScope, HasTemplateScope);
286 // The current scope is still active if we're the top-level class.
287 // Otherwise we'll need to push and enter a new scope.
289 ParseScope ClassScope(this, Scope::ClassScope|Scope::DeclScope,
303 // If this is a member template, introduce the template parameter scope.
304 ParseScope TemplateScope(this, Scope::TemplateParamScope, LM.TemplateScope);
313 // Introduce the parameters into scope and parse their default
315 ParseScope PrototypeScope(this, Scope::FunctionPrototypeScope
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
JavaScriptCallFrame.cpp 55 v8::Context::Scope contextScope(debuggerContext);
67 v8::Context::Scope contextScope(m_debuggerContext.newLocal(m_isolate));
77 v8::Context::Scope contextScope(m_debuggerContext.newLocal(m_isolate));
87 v8::Context::Scope contextScope(m_debuggerContext.newLocal(m_isolate));
97 v8::Context::Scope contextScope(m_debuggerContext.newLocal(m_isolate));
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptEventListener.cpp 97 v8::HandleScope scope;
100 v8::Context::Scope contextScope(context);
113 v8::HandleScope scope;
116 v8::Context::Scope contextScope(context);
128 v8::HandleScope scope; local
138 v8::HandleScope scope;
141 v8::Context::Scope contextScope(context);
  /external/llvm/include/llvm/CodeGen/
LexicalScopes.h 1 //===- LexicalScopes.cpp - Collecting lexical scope info -*- C++ -*--------===//
12 // This pass collects lexical scope information and maps machine instructions
37 /// lexical scope.
50 /// initialize - Scan machine function and constuct lexical scope nest.
56 /// empty - Return true if there is any lexical scope information available.
59 /// isCurrentFunctionScope - Return true if given lexical scope represents
65 /// getCurrentFunctionScope - Return lexical scope for the current function.
69 /// which have machine instructions that belong to lexical scope identified by
74 /// dominates - Return true if DebugLoc's lexical scope dominates at least one
75 /// machine instruction's lexical scope in a given machine basic block
    [all...]
  /external/v8/test/cctest/
test-threads.cc 39 v8::HandleScope scope; local
40 v8::Context::Scope context_scope(v8::Context::New());
71 v8::HandleScope scope; local
72 v8::Context::Scope context_scope(v8::Context::New());
110 v8::HandleScope scope; local
111 v8::Context::Scope context_scope(v8::Context::New());
  /external/clang/include/clang/Sema/
Template.h 173 /// variable declaration instantiations are present in this scope.
207 /// For a parameter pack, the local instantiation scope may contain a
215 /// \brief The outer scope, which contains local variable
217 /// relevant to this particular scope).
220 /// \brief Whether we have already exited this scope.
223 /// \brief Whether to combine this scope with the outer scope, such that
224 /// lookup will search our outer scope.
260 /// \brief Exit this local instantiation scope early.
272 /// \brief Clone this scope, and all outer scopes, down to the give
    [all...]
IdentifierResolver.h 1 //===- IdentifierResolver.h - Lexical Scope Name lookup ---------*- C++ -*-===//
30 class Scope;
40 /// decl with that declaration name is shadowed in some scope.
50 /// RemoveDecl - Remove the decl from the scope chain.
150 /// if 'D' is in Scope 'S', otherwise 'S' is ignored and isDeclInScope returns
154 /// whether the declaration is in scope for the purposes of explicit template
156 bool isDeclInScope(Decl *D, DeclContext *Ctx, Scope *S = 0,
170 /// \brief Try to add the given declaration to the top level scope, if it
MultiplexExternalSemaSource.h 29 class Scope;
228 /// \param S the Scope of the identifier occurrence.
231 virtual bool LookupUnqualified(LookupResult &R, Scope *S);
242 /// \brief Read the set of unused file-scope declarations known to the
245 /// The external source should append its own unused, filed-scope to the
  /external/chromium_org/chrome/renderer/extensions/
object_backed_native_handler.cc 63 v8::Context::Scope context_scope(context_->v8_context());
80 v8::Context::Scope context_scope(context_->v8_context());
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
RegularExpression.cpp 47 v8::Context::Scope scope(context);
78 v8::Context::Scope scope(context);

Completed in 1338 milliseconds

1 23 4 5 6 7 8 91011>>