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

1 2 3 45 6 7 8 91011>>

  /external/clang/include/clang/Analysis/
AnalysisContext.h 208 enum ContextKind { StackFrame, Scope, Block };
320 : LocationContext(Scope, ctx, parent), Enter(s) {}
329 ProfileCommon(ID, Scope, ctx, parent, s);
333 return Ctx->getKind() == Scope;
  /external/clang/lib/Sema/
TargetAttributesSema.cpp 24 bool TargetAttributesSema::ProcessDeclAttribute(Scope *scope, Decl *D,
65 bool ProcessDeclAttribute(Scope *scope, Decl *D,
212 bool ProcessDeclAttribute(Scope *scope, Decl *D,
275 bool ProcessDeclAttribute(Scope *scope, Decl *D, const AttributeList &Attr,
SemaCXXScopeSpec.cpp 1 //===--- SemaCXXScopeSpec.cpp - Semantic Analysis for C++ scope specifiers-===//
10 // This file implements C++ semantic analysis for scope specifiers.
64 /// scope specifier.
66 /// \param SS the C++ scope specifier as it appears in the source
69 /// this scope specifier, so we can retrieve the declaration context of a
73 /// \returns the declaration context represented by the scope specifier @p SS,
243 bool Sema::ActOnCXXGlobalScopeSpecifier(Scope *S, SourceLocation CCLoc,
281 /// nested-name-specifier within the given scope, and return the result of that
283 NamedDecl *Sema::FindFirstQualifierInScope(Scope *S, NestedNameSpecifier *NNS) {
308 bool Sema::isNonTypeNestedNameSpecifier(Scope *S, CXXScopeSpec &SS
    [all...]
Sema.cpp 36 #include "clang/Sema/Scope.h"
63 void Sema::ActOnTranslationUnitScope(Scope *S) {
186 // Tell the SemaConsumer to forget about us; we're going out of scope.
540 /// translation unit when EOF is reached and all but the top-level scope is
655 // scope without an initializer, and without a storage-class
661 // translation unit contains a file scope declaration of that
    [all...]
IdentifierResolver.cpp 1 //===- IdentifierResolver.cpp - Lexical Scope Name lookup -------*- C++ -*-===//
20 #include "clang/Sema/Scope.h"
68 /// RemoveDecl - Remove the decl from the scope chain.
95 /// if 'D' is in Scope 'S', otherwise 'S' is ignored and isDeclInScope returns
97 bool IdentifierResolver::isDeclInScope(Decl *D, DeclContext *Ctx, Scope *S,
123 if (S->getParent()->getFlags() & Scope::ControlScope) {
128 if (S->getFlags() & Scope::FnTryCatchScope)
325 // If the existing declaration is not visible in translation unit scope,
359 // unit (it's in an inner scope). Insert our declaration here.
  /external/chromium_org/v8/test/cctest/
test-threads.cc 40 v8::HandleScope scope(isolate);
42 v8::Context::Scope context_scope(context);
74 v8::HandleScope scope(isolate);
76 v8::Context::Scope context_scope(context);
115 v8::HandleScope scope(isolate);
117 v8::Context::Scope context_scope(context);
test-thread-termination.cc 118 v8::HandleScope scope(v8::Isolate::GetCurrent());
123 v8::Context::Scope context_scope(context);
138 v8::HandleScope scope(v8::Isolate::GetCurrent());
143 v8::Context::Scope context_scope(context);
178 v8::HandleScope scope(v8::Isolate::GetCurrent());
182 v8::Context::Scope context_scope(context);
200 v8::HandleScope scope(CcTest::default_isolate());
206 v8::Context::Scope context_scope(context);
302 v8::HandleScope scope(v8::Isolate::GetCurrent());
312 v8::Context::Scope context_scope(context)
394 v8::HandleScope scope; local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8WindowShell.cpp 133 v8::Context::Scope contextScope(context);
169 // scope is a property of the inner window.
201 v8::Context::Scope contextScope(context);
345 v8::Context::Scope contextScope(context);
471 v8::Context::Scope contextScope(m_context.newLocal(m_isolate));
490 v8::Context::Scope contextScope(m_context.newLocal(m_isolate));
NPV8Object.cpp 180 v8::HandleScope scope(isolate);
241 v8::Context::Scope scope(context);
296 v8::Context::Scope scope(context);
344 v8::Context::Scope scope(context);
380 v8::Context::Scope scope(context);
414 v8::Context::Scope scope(context)
    [all...]
V8CustomElementLifecycleCallbacks.cpp 161 v8::Context::Scope scope(context);
209 v8::Context::Scope scope(context);
240 v8::Context::Scope scope(context);
ScriptState.cpp 71 v8::Context::Scope contextScope(context);
V8WorkerGlobalScopeEventListener.cpp 72 v8::Context::Scope scope(v8Context);
WorkerScriptDebugServer.cpp 56 v8::HandleScope scope(m_isolate);
58 v8::Context::Scope contextScope(debuggerContext);
  /external/clang/include/clang/Sema/
ScopeInfo.h 36 class Scope;
85 /// \brief What kind of scope we are describing.
124 /// current function scope. These diagnostics are vetted for reachability
319 /// \brief Clear out the information in this function scope, making it
517 /// TheScope - This is the scope for the block itself, which contains
519 Scope *TheScope;
525 BlockScopeInfo(DiagnosticsEngine &Diag, Scope *BlockScope, BlockDecl *Block)
546 /// \brief This is the enclosing scope of the captured region.
547 Scope *TheScope;
553 CapturedRegionScopeInfo(DiagnosticsEngine &Diag, Scope *S, CapturedDecl *CD
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.h 346 // Collection of dbg variables of a scope.
393 // label location to indicate scope boundries in dwarf debug info.
466 /// variables in this scope then create and insert DIEs for these
470 /// \brief Construct new DW_TAG_lexical_block for this scope and
472 DIE *constructLexicalScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);
474 /// \brief This scope represents inlined body of a function. Construct
476 DIE *constructInlinedScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);
478 /// \brief Construct a DIE for this scope.
479 DIE *constructScopeDIE(CompileUnit *TheCU, LexicalScope *Scope);
594 void recordSourceLine(unsigned Line, unsigned Col, const MDNode *Scope,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBRequest.cpp 267 DOMRequestState::Scope scope(m_requestState);
293 DOMRequestState::Scope scope(m_requestState);
311 DOMRequestState::Scope scope(m_requestState);
338 DOMRequestState::Scope scope(m_requestState);
370 DOMRequestState::Scope scope(m_requestState)
    [all...]
  /external/chromium_org/v8/src/
ast.h 467 Scope* scope() const { return scope_; } function in class:v8::internal::Block
468 void set_scope(Scope* scope) { scope_ = scope; }
485 Scope* scope_;
493 Scope* scope() const { return scope_; } function in class:v8::internal::Declaration
500 Scope* scope)
1086 Scope* scope() { return scope_; } function in class:v8::internal::WithStatement
1270 Scope* scope() { return scope_; } function in class:v8::internal::TryCatchStatement
2240 Scope* scope() const { return scope_; } function in class:v8::internal::FunctionLiteral
    [all...]
  /external/v8/src/
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...]
ast.h 423 Scope* block_scope() const { return block_scope_; }
424 void set_block_scope(Scope* block_scope) { block_scope_ = block_scope; }
442 Scope* block_scope_;
450 Scope* scope() const { return scope_; } function in class:v8::internal::Declaration
459 Scope* scope)
462 scope_(scope) {
473 // Nested scope from which the declaration originated.
474 Scope* scope_
1145 Scope* scope() { return scope_; } function in class:v8::internal::TryCatchStatement
2036 Scope* scope() const { return scope_; } function in class:v8::internal::FunctionLiteral
    [all...]
  /external/clang/lib/Analysis/
CFG.cpp 77 /// declared in the scope and link to position in previous scope this scope
82 /// - Before processing statements in scope (e.g. CompoundStmt) create
83 /// LocalScope object using CFGBuilder::ScopePos as link to previous scope
84 /// and set CFGBuilder::ScopePos to the end of new scope,
87 /// - For every normal (without jump) end of scope add to CFGBlock destructors
88 /// for objects in the current scope,
90 /// between CFGBuilder::ScopePos and local scope position saved for jump
100 /// const_iterator - Iterates local scope backwards and jumps to previou
    [all...]
  /external/clang/lib/Parse/
Parser.cpp 22 #include "clang/Sema/Scope.h"
230 // C++11 allows extra semicolons at namespace scope, but not in any of the
361 // Scope manipulation
364 /// EnterScope - Start a new scope.
367 Scope *N = ScopeCache[--NumCachedScopes];
371 Actions.CurScope = new Scope(getCurScope(), ScopeFlags, Diags);
375 /// ExitScope - Pop a scope off the scope stack.
377 assert(getCurScope() && "Scope imbalance!");
379 // Inform the actions module that this scope is going away if there are an
    [all...]
  /libcore/json/src/main/java/org/json/
JSONArray.java 556 stringer.open(JSONStringer.Scope.NULL, "");
563 stringer.close(JSONStringer.Scope.NULL, JSONStringer.Scope.NULL, "");
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Delphi/
Delphi.stg 55 * actionScope (String): 'lexer', 'parser', 'tree_parser' or custom scope
133 <scopes:{<if(it.isDynamicGlobalScope)><globalAttributeScope(scope=it)><endif>}>
228 procedure m<rule.ruleName>(<rule.ruleDescriptor.parameterScope:parameterScope(scope=rule)>);<\n>
337 <scopes:{<if(it.isDynamicGlobalScope)><globalAttributeScopeDeclaration(scope=it)><endif>}>
400 <rules: {r | <ruleAttributeScopeInit(scope=r.ruleDescriptor.ruleScope)>}>
401 <scopes:{<if(it.isDynamicGlobalScope)><globalAttributeScope(scope=it)><endif>}>
449 function <ruleDescriptor.name>(<ruleDescriptor.parameterScope:parameterScope(scope=it)>): I<returnType()>;<\n>
452 function <ruleDescriptor.name>(<ruleDescriptor.parameterScope:parameterScope(scope=it)>): <returnType()>;<\n>
454 procedure <ruleDescriptor.name>(<ruleDescriptor.parameterScope:parameterScope(scope=it)>);<\n>
461 function T<grammar.recognizerName>.<ruleDescriptor.name>(<ruleDescriptor.parameterScope:parameterScope(scope=it)>): I<returnType()>;<\n
    [all...]
  /external/chromium_org/chrome/renderer/extensions/
app_window_custom_bindings.cc 48 v8::Context::Scope context_scope(v8_context->v8_context());
  /external/chromium_org/chrome/test/base/
v8_unit_test.cc 93 v8::Context::Scope context_scope(isolate_, context_);
186 v8::Context::Scope context_scope(isolate_, context_);
194 v8::Context::Scope context_scope(isolate_, context_);
233 v8::Context::Scope context_scope(isolate_, context_);

Completed in 1227 milliseconds

1 2 3 45 6 7 8 91011>>