Searched defs:Scope (Results 51 - 68 of 68) sorted by relevance

123

/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/CodeGen/
H A DCGBuiltin.cpp1230 llvm::SynchronizationScope Scope; local
1233 Scope = llvm::SingleThread;
1235 Scope = llvm::CrossThread;
1245 Builder.CreateFence(llvm::Acquire, Scope);
1248 Builder.CreateFence(llvm::Release, Scope);
1251 Builder.CreateFence(llvm::AcquireRelease, Scope);
1254 Builder.CreateFence(llvm::SequentiallyConsistent, Scope);
1271 Builder.CreateFence(llvm::Acquire, Scope);
1277 Builder.CreateFence(llvm::Release, Scope);
1282 Builder.CreateFence(llvm::AcquireRelease, Scope);
[all...]
H A DCGDebugInfo.cpp93 llvm::DIDescriptor Scope(DI->LexicalBlockStack.back());
94 Builder.SetCurrentDebugLocation(llvm::DebugLoc::get(0, 0, Scope));
115 llvm::DIScope Scope(LexicalBlockStack.back());
118 if (PCLoc.isInvalid() || Scope.getFilename() == PCLoc.getFilename())
121 if (Scope.isLexicalBlockFile()) {
122 llvm::DILexicalBlockFile LBF = llvm::DILexicalBlockFile(Scope);
129 } else if (Scope.isLexicalBlock() || Scope.isSubprogram()) {
131 = DBuilder.createLexicalBlockFile(Scope, getOrCreateFile(CurLoc));
2573 llvm::MDNode *Scope local
2757 llvm::MDNode *Scope = LexicalBlockStack.back(); local
[all...]
/external/clang/lib/Sema/
H A DSemaDeclAttr.cpp30 #include "clang/Sema/Scope.h"
996 static void handleExtVectorTypeAttr(Sema &S, Scope *scope, Decl *D,
1564 static void handleDependencyAttr(Sema &S, Scope *Scope, Decl *D, argument
1569 if (!(Scope->getFlags() & clang::Scope::FunctionDeclarationScope)) {
3551 static void handleObjCBridgeAttr(Sema &S, Scope *Sc, Decl *D,
3565 static void handleObjCBridgeMutableAttr(Sema &S, Scope *Sc, Decl *D,
3579 static void handleObjCBridgeRelatedAttr(Sema &S, Scope *Sc, Decl *D,
4006 static bool handleCommonAttributeFeatures(Sema &S, Scope *scop
[all...]
H A DSemaDecl.cpp43 #include "clang/Sema/Scope.h"
199 Scope *S, CXXScopeSpec *SS,
462 DeclSpec::TST Sema::isTagName(IdentifierInfo &II, Scope *S) {
495 bool Sema::isMicrosoftMissingTypename(const CXXScopeSpec *SS, Scope *S) {
510 Scope *S,
619 Scope *S, CXXScopeSpec &SS,
682 Sema::NameClassification Sema::ClassifyName(Scope *S,
1023 void Sema::PushDeclContext(Scope *S, DeclContext *DC) {
1040 void Sema::EnterDeclaratorContext(Scope *S, DeclContext *DC) {
1060 Scope *Ancesto
10017 computeNRVO(Stmt *Body, FunctionScopeInfo *Scope) argument
[all...]
H A DSemaExpr.cpp41 #include "clang/Sema/Scope.h"
1467 static ExprResult BuildCookedLiteralOperatorCall(Sema &S, Scope *Scope, argument
1487 if (S.LookupLiteralOperator(Scope, R, llvm::makeArrayRef(ArgTy, Args.size()),
1502 Sema::ActOnStringLiteral(ArrayRef<Token> StringToks, Scope *UDLScope) {
1725 bool Sema::DiagnoseEmptyLookup(Scope *S, CXXScopeSpec &SS, LookupResult &R,
1993 ExprResult Sema::ActOnIdExpression(Scope *S,
2289 Sema::LookupInObjCMethod(LookupResult &Lookup, Scope *S,
2958 ExprResult Sema::ActOnCharacterConstant(const Token &Tok, Scope *UDLScope) {
3049 ExprResult Sema::ActOnNumericConstant(const Token &Tok, Scope *UDLScop
[all...]
/external/chromium_org/v8/include/
H A Dv8.h4386 class V8_EXPORT Scope { class in class:v8::Isolate
4388 explicit Scope(Isolate* isolate) : isolate_(isolate) { function in class:v8::Isolate::Scope
4392 ~Scope() { isolate_->Exit(); }
4397 // Prevent copying of Scope objects.
4398 Scope(const Scope&);
4399 Scope& operator=(const Scope&);
4417 // Prevent copying of Scope objects.
4436 // Prevent copying of Scope object
5555 class Scope { class in class:v8::Context
5557 explicit V8_INLINE Scope(Handle<Context> context) : context_(context) { function in class:v8::Context::Scope
[all...]
/external/chromium_org/v8/src/
H A Dpreparser.h43 // typedef Scope;
148 BlockState(typename Traits::Type::Scope** scope_stack,
149 typename Traits::Type::Scope* scope)
158 typename Traits::Type::Scope** scope_stack_;
159 typename Traits::Type::Scope* outer_scope_;
160 typename Traits::Type::Scope* scope_;
166 typename Traits::Type::Scope** scope_stack,
167 typename Traits::Type::Scope* scope,
172 typename Traits::Type::Scope** scope_stack,
173 typename Traits::Type::Scope** scop
1115 typedef PreParserScope Scope; typedef in struct:v8::internal::PreParserTraits::Type
[all...]
/external/clang/include/clang/Sema/
H A DDeclSpec.h352 // Scope specifier for the type spec, if applicable.
1332 CXXScopeSpec &Scope() { function in struct:clang::DeclaratorChunk::MemberPointerTypeInfo
1335 const CXXScopeSpec &Scope() const { function in struct:clang::DeclaratorChunk::MemberPointerTypeInfo
1339 Scope().~CXXScopeSpec();
H A DSema.h41 #include "clang/Sema/Scope.h"
623 /// Translation Unit Scope - useful to Objective-C actions that need
626 Scope *TUScope;
1040 Scope *getScopeForContext(DeclContext *Ctx);
1043 void PushBlockScope(Scope *BlockScope, BlockDecl *Block);
1051 void PushCapturedRegionScope(Scope *RegionScope, CapturedDecl *CD,
1165 TypeSourceInfo *GetTypeForDeclarator(Declarator &D, Scope *S);
1203 TypeResult ActOnTypeName(Scope *S, Declarator &D);
1402 Scope *S, CXXScopeSpec *SS = nullptr,
1409 TypeSpecifierType isTagName(IdentifierInfo &II, Scope *
6654 LocalInstantiationScope *Scope; member in struct:clang::Sema::LateInstantiatedAttribute
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
H A Ddbghelp.h789 ULONG Scope; member in struct:_SYMBOL_INFO
/external/mesa3d/src/gallium/auxiliary/util/
H A Ddbghelp.h789 ULONG Scope; member in struct:_SYMBOL_INFO
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.help.base_3.5.2.v201011171123.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.apache.jasper_5.5.17.v201004212143.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jdt.core_3.6.2.v_A76_R36x.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...

Completed in 6895 milliseconds

123