Searched defs:Scope (Results 1 - 25 of 46) sorted by relevance

12

/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRHashMap.h42 NSInteger Scope; variable
51 @property (getter=getScope, setter=setScope:) NSInteger Scope; variable
72 - (id)lookup:(NSString *)s Scope:(int)scope;
74 - (id)install:(ANTLRMapElement *)sym Scope:(int)scope;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRHashMap.h42 NSInteger Scope; variable
51 @property (getter=getScope, setter=setScope:) NSInteger Scope; variable
72 - (id)lookup:(NSString *)s Scope:(int)scope;
74 - (id)install:(ANTLRMapElement *)sym Scope:(int)scope;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRHashMap.h42 NSInteger Scope; variable
51 @property (getter=getScope, setter=setScope:) NSInteger Scope; variable
72 - (id)lookup:(NSString *)s Scope:(int)scope;
74 - (id)install:(ANTLRMapElement *)sym Scope:(int)scope;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRHashMap.h41 NSInteger Scope; variable
69 - (id)lookup:(NSString *)s Scope:(int)scope;
71 - (id)install:(ANTLRMapElement *)sym Scope:(int)scope;
101 @property (getter=getScope, setter=setScope:) NSInteger Scope; variable
/external/llvm/lib/ExecutionEngine/
H A DEventListenerCommon.h28 // Holds the filename of each Scope, so that we can pass a null-terminated
35 const char *getFilename(MDNode *Scope) { argument
36 std::string &Filename = Filenames[Scope];
38 DIScope DIScope(Scope);
44 const char *getFullPath(MDNode *Scope) { argument
45 std::string &P = Paths[Scope];
47 DIScope DIScope(Scope);
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
H A Dsymbols.h59 typedef struct Scope_Rec Scope; typedef in typeref:struct:Scope_Rec
68 Scope *next, *prev; // doubly-linked list of all scopes
69 Scope *parent;
70 Scope *funScope; // Points to base scope of enclosing function
96 extern Scope *CurrentScope;
97 extern Scope *GlobalScope;
98 extern Scope *ScopeList;
100 Scope *NewScopeInPool(MemoryPool *);
102 void PushScope(Scope *fScope);
103 Scope *PopScop
[all...]
/external/llvm/lib/VMCore/
H A DDebugLoc.cpp48 /// Return both the Scope and the InlinedAt values.
49 void DebugLoc::getScopeAndInlinedAt(MDNode *&Scope, MDNode *&IA, argument
52 Scope = IA = 0;
61 Scope = Ctx.pImpl->ScopeRecords[ScopeIdx-1].get();
69 Scope = Ctx.pImpl->ScopeInlinedAtRecords[-ScopeIdx-1].first.get();
75 MDNode *Scope, MDNode *InlinedAt) {
79 if (Scope == 0) return Result;
86 LLVMContext &Ctx = Scope->getContext();
90 Result.ScopeIdx = Ctx.pImpl->getOrAddScopeRecordIdxEntry(Scope, 0);
92 Result.ScopeIdx = Ctx.pImpl->getOrAddScopeInlinedAtIdxEntry(Scope,
74 get(unsigned Line, unsigned Col, MDNode *Scope, MDNode *InlinedAt) argument
119 MDNode *Scope = Loc.getScope(); local
128 MDNode *Scope = LexBlock.getContext(); local
161 getOrAddScopeRecordIdxEntry(MDNode *Scope, int ExistingIdx) argument
184 getOrAddScopeInlinedAtIdxEntry(MDNode *Scope, MDNode *IA, int ExistingIdx) argument
[all...]
H A DDIBuilder.cpp314 DIType DIBuilder::createMemberType(DIDescriptor Scope, StringRef Name, argument
322 getNonCompileUnitScope(Scope),
501 DIType DIBuilder::createUnionType(DIDescriptor Scope, StringRef Name, argument
509 getNonCompileUnitScope(Scope),
548 DIType DIBuilder::createEnumerationType(DIDescriptor Scope, StringRef Name, argument
557 getNonCompileUnitScope(Scope),
684 DIDescriptor Scope, DIFile F,
689 getNonCompileUnitScope(Scope),
777 DIVariable DIBuilder::createLocalVariable(unsigned Tag, DIDescriptor Scope, argument
784 getNonCompileUnitScope(Scope),
683 createForwardDecl(unsigned Tag, StringRef Name, DIDescriptor Scope, DIFile F, unsigned Line, unsigned RuntimeLang) argument
806 createComplexVariable(unsigned Tag, DIDescriptor Scope, StringRef Name, DIFile F, unsigned LineNo, DIType Ty, ArrayRef<Value *> Addr, unsigned ArgNo) argument
922 createNameSpace(DIDescriptor Scope, StringRef Name, DIFile File, unsigned LineNo) argument
936 createLexicalBlockFile(DIDescriptor Scope, DIFile File) argument
946 createLexicalBlock(DIDescriptor Scope, DIFile File, unsigned Line, unsigned Col) argument
[all...]
H A DDebugInfo.cpp743 DISubprogram llvm::getDISubprogram(const MDNode *Scope) { argument
744 DIDescriptor D(Scope);
746 return DISubprogram(Scope);
749 return getDISubprogram(DILexicalBlockFile(Scope).getContext());
752 return getDISubprogram(DILexicalBlock(Scope).getContext());
824 DIDescriptor Scope(Loc.getScope(Ctx));
826 if (Scope.isCompileUnit())
827 addCompileUnit(DICompileUnit(Scope));
828 else if (Scope.isSubprogram())
829 processSubprogram(DISubprogram(Scope));
[all...]
/external/llvm/unittests/ExecutionEngine/JIT/
H A DJITEventListenerTestCommon.h63 llvm::MDNode* Scope; member in class:JITEventListenerTestBase
86 Scope = DebugBuilder->createFile(getFilename(), ".");
/external/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp100 MDNode *Scope, *IA; local
101 I->getDebugLoc().getScopeAndInlinedAt(Scope, IA, I->getContext());
102 if (Scope) EnumerateMetadata(Scope);
/external/llvm/lib/CodeGen/
H A DLexicalScopes.cpp117 MDNode *Scope = NULL; local
119 DL.getScopeAndInlinedAt(Scope, IA, MF->getFunction()->getContext());
120 if (!Scope) return NULL;
124 DIDescriptor D = DIDescriptor(Scope);
126 Scope = DILexicalBlockFile(Scope).getScope();
130 return LexicalScopeMap.lookup(Scope);
136 MDNode *Scope = NULL; local
138 DL.getScopeAndInlinedAt(Scope, InlinedAt, MF->getFunction()->getContext());
142 getOrCreateAbstractScope(Scope);
151 getOrCreateRegularScope(MDNode *Scope) argument
175 getOrCreateInlinedScope(MDNode *Scope, MDNode *InlinedAt) argument
214 constructScopeNest(LexicalScope *Scope) argument
271 LexicalScope *Scope = getOrCreateLexicalScope(DL); local
293 LexicalScope *Scope = getOrCreateLexicalScope(DL); local
[all...]
H A DMachineCSE.cpp406 ScopeType *Scope = new ScopeType(VNT); local
407 ScopeMap[MBB] = Scope;
/external/v8/src/
H A Dpreparser.h444 class Scope { class in class:v8::preparser::PreParser
446 Scope(Scope** variable, ScopeType type) function in class:v8::preparser::PreParser::Scope
457 ~Scope() { *variable_ = prev_; }
477 Scope** const variable_;
478 Scope* const prev_;
489 Scope top_scope(&scope_, kTopLevelScope);
648 Scope* scope_;
H A Dscopes.h47 Variable* Declare(Scope* scope,
61 // are allocated on-demand from Scope::NonLocal to avoid wasting memory
85 class Scope: public ZoneObject { class in namespace:v8::internal
90 Scope(Scope* outer_scope, ScopeType type);
97 static Scope* DeserializeScopeChain(Context* context, Scope* global_scope);
107 Scope* FinalizeBlockScope();
220 // Scope-specific info.
338 ZoneList<Scope*>* inner_scope
[all...]
H A Dscopes.cc65 Scope* scope,
100 // Implementation of Scope
102 Scope::Scope(Scope* outer_scope, ScopeType type) function in class:v8::internal::Scope
123 Scope::Scope(Scope* inner_scope, function in class:v8::internal::Scope
146 Scope::Scope(Scop function in class:v8::internal::Scope
[all...]
/external/clang/include/clang/Sema/
H A DScope.h1 //===--- Scope.h - Scope interface ------------------------------*- C++ -*-===//
10 // This file defines the Scope interface.
26 /// Scope - A scope is a transient data structure that is used while parsing the
30 class Scope { class in namespace:clang
90 Scope *AnyParent;
110 Scope *FnParent;
116 Scope *BreakParent, *ContinueParent;
120 Scope *BlockParent;
126 Scope *TemplateParamParen
150 Scope(Scope *Parent, unsigned ScopeFlags, DiagnosticsEngine &Diag) function in class:clang::Scope
[all...]
/external/clang/lib/Sema/
H A DJumpDiagnostics.cpp610 unsigned Scope = I->first; local
619 if (Reachable.test(Scope)) {
622 for (unsigned S = I->first; S != Scope; S = Scopes[S].ParentScope)
630 if (Scope == 0 || Scope < Min) break;
633 if (Scopes[Scope].OutDiag) break;
635 Scope = Scopes[Scope].ParentScope;
H A DSema.cpp27 #include "clang/Sema/Scope.h"
77 void Sema::ActOnTranslationUnitScope(Scope *S) {
921 /// \brief Determines the active Scope associated with the given declaration
924 /// This routine maps a declaration context to the active Scope object that
928 /// must update the Scope.
932 Scope *Sema::getScopeForContext(DeclContext *Ctx) {
938 for (Scope *S = getCurScope(); S; S = S->getParent()) {
941 if (S->getFlags() & (Scope::DeclScope | Scope::TemplateParamScope))
963 void Sema::PushBlockScope(Scope *BlockScop
976 FunctionScopeInfo *Scope = FunctionScopes.pop_back_val(); local
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp272 Scope(*availableValues),
279 ScopedHTType::ScopeTy Scope; member in class:__anon9680::EarlyCSE::NodeScope
/external/webkit/Source/WebCore/inspector/front-end/UglifyJS/
H A Dprocess.js251 /* -----[ Scope and mangling ]----- */
253 function Scope(parent) { class
283 Scope.prototype = {
365 current_scope = new Scope(current_scope);
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Drecognizers.rb129 = Scope
131 Scope is used to represent instances of ANTLR's various attribute scopes.
137 Block = Scope.new( "name", "depth = 0", "variables = {}" )
144 class Scope < ::Struct class in class:ANTLR3
314 def Scope( *declarations, &body ) method in class:ANTLR3.Scope.Recognizer
315 Scope.new( *declarations, &body )
/external/clang/include/clang/Analysis/
H A DAnalysisContext.h191 enum ContextKind { StackFrame, Scope, Block }; enumerator in enum:clang::LocationContext::ContextKind
296 : LocationContext(Scope, ctx, parent), Enter(s) {}
305 ProfileCommon(ID, Scope, ctx, parent, s);
309 return Ctx->getKind() == Scope;
/external/v8/src/mips/
H A Dassembler-mips.h406 // Supported features must be enabled by a Scope before use.
437 class Scope BASE_EMBEDDED {
441 explicit Scope(CpuFeature f) { function in class:v8::internal::CpuFeatures::BASE_EMBEDDED
453 ~Scope() {
466 explicit Scope(CpuFeature f) {}
/external/clang/lib/CodeGen/
H A DCGCleanup.cpp155 EHCleanupScope *Scope = local
168 return Scope->getCleanupBuffer();
372 EHCleanupScope &Scope = cast<EHCleanupScope>(*EHStack.begin()); local
378 Old.strictlyEncloses(Scope.getEnclosingNormalCleanup());
385 EHCleanupScope &Scope) {
386 assert(Scope.isNormalCleanup());
387 llvm::BasicBlock *Entry = Scope.getNormalBlock();
390 Scope.setNormalBlock(Entry);
532 EHCleanupScope &Scope = cast<EHCleanupScope>(*EHStack.begin()); local
533 assert(Scope
384 CreateNormalEntry(CodeGenFunction &CGF, EHCleanupScope &Scope) argument
921 EHCleanupScope &Scope = local
931 EHCleanupScope &Scope = cast<EHCleanupScope>(*EHStack.find(I)); local
1007 EHCleanupScope &Scope = cast<EHCleanupScope>(*CGF.EHStack.find(C)); local
1063 EHCleanupScope &Scope = cast<EHCleanupScope>(*EHStack.find(C)); local
1075 EHCleanupScope &Scope = cast<EHCleanupScope>(*EHStack.find(C)); local
[all...]

Completed in 6634 milliseconds

12