HomeSort by relevance Sort by last modified time
    Searched defs:Scope (Results 151 - 175 of 623) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/swiftshader/third_party/LLVM/lib/Bitcode/Writer/
BitcodeWriter.cpp 135 default: llvm_unreachable("Unknown synchronization scope");
    [all...]
  /external/swiftshader/third_party/LLVM/utils/TableGen/
DAGISelMatcher.h 47 Scope, // Push a checking scope.
191 : Matcher(Scope), Children(children, children+numchildren) {
221 return N->getKind() == Scope;
471 /// then the match fails. This is semantically equivalent to a Scope node where
525 /// then the match fails. This is semantically equivalent to a Scope node where
    [all...]
  /external/v8/src/ast/
scopes.h 34 Zone* zone, Scope* scope, const AstRawString* name, VariableMode mode,
56 explicit Delegate(Scope* scope,
58 : scope_(scope), statement_(statement), next_(nullptr) {}
62 Scope* scope() const { return scope_; } function in class:v8::internal::SloppyBlockFunctionMap::Delegate
65 Scope* scope_;
85 // JS environments are represented in the parser using Scope, DeclarationScope
86 // and ModuleScope. DeclarationScope is used for any scope that hosts 'var
    [all...]
scopes.cc 16 #include "src/objects/scope-info.h"
18 #include "src/parsing/preparsed-scope-data.h"
47 Variable* VariableMap::Declare(Zone* zone, Scope* scope,
63 p->value = new (zone) Variable(scope, name, mode, kind, initialization_flag,
130 // Implementation of Scope
132 Scope::Scope(Zone* zone)
140 Scope::Scope(Zone* zone, Scope* outer_scope, ScopeType scope_type
342 DeclarationScope* scope = GetClosureScope(); local
589 DeclarationScope* scope = info->literal()->scope(); local
735 Scope* scope = this; local
757 Scope* scope = inner_scope_; local
1214 DeclarationScope* scope = GetClosureScope(); local
1358 Scope* scope = this; local
1366 const Scope* scope = this; local
1374 Scope* scope = this; local
1391 Scope* scope = this; local
1401 Scope* scope = this; local
1411 Scope* scope = outer_scope_; local
1664 DeclarationScope* scope = AsDeclarationScope(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/wizards/templates/
TemplateHandlerTest.java 51 import com.android.tools.lint.detector.api.Scope;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiHiiLib/
HiiLib.c 31 UINT8 Scope;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/
HiiDatabase.h 82 UINT8 Scope;
    [all...]
  /external/llvm/include/llvm/IR/
Metadata.h 610 : TBAA(T), Scope(S), NoAlias(N) {}
613 return TBAA == A.TBAA && Scope == A.Scope && NoAlias == A.NoAlias;
618 explicit operator bool() const { return TBAA || Scope || NoAlias; }
623 /// \brief The tag for alias scope specification (used with noalias).
624 MDNode *Scope;
626 /// \brief The tag specifying the noalias scope.
643 DenseMapInfo<MDNode *>::getHashValue(Val.Scope) ^
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
CodeViewDebug.cpp 131 static StringRef getPrettyScopeName(const DIScope *Scope) {
132 StringRef ScopeName = Scope->getName();
136 switch (Scope->getTag()) {
150 const DIScope *Scope, SmallVectorImpl<StringRef> &QualifiedNameComponents) {
152 while (Scope != nullptr) {
154 ClosestSubprogram = dyn_cast<DISubprogram>(Scope);
155 StringRef ScopeName = getPrettyScopeName(Scope);
158 Scope = Scope->getScope().resolve();
174 static std::string getFullyQualifiedName(const DIScope *Scope, StringRef Name)
    [all...]
DwarfDebug.cpp 333 /// Check whether we should create a DIE for the given Scope, return true
335 bool DwarfDebug::isLexicalScopeDIENull(LexicalScope *Scope) {
336 if (Scope->isAbstractScope())
340 const SmallVectorImpl<InsnRange> &Ranges = Scope->getRanges();
358 void DwarfDebug::constructAbstractSubprogramScopeDIE(LexicalScope *Scope) {
359 assert(Scope && Scope->getScopeNode());
360 assert(Scope->isAbstractScope());
361 assert(!Scope->getInlinedAt());
363 const MDNode *SP = Scope->getScopeNode()
    [all...]
  /external/llvm/lib/IR/
LLVMContextImpl.h 247 Metadata *Scope;
250 MDNodeKeyImpl(unsigned Line, unsigned Column, Metadata *Scope,
252 : Line(Line), Column(Column), Scope(Scope), InlinedAt(InlinedAt) {}
255 : Line(L->getLine()), Column(L->getColumn()), Scope(L->getRawScope()),
260 Scope == RHS->getRawScope() && InlinedAt == RHS->getRawInlinedAt();
263 return hash_combine(Line, Column, Scope, InlinedAt);
348 Metadata *Scope;
357 Metadata *Scope, Metadata *BaseType, uint64_t SizeInBits,
360 : Tag(Tag), Name(Name), File(File), Line(Line), Scope(Scope)
    [all...]
  /external/llvm/unittests/IR/
MetadataTest.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 183 /// If there are global variables in this scope then create and insert
248 /// for this scope and attach DW_AT_low_pc/DW_AT_high_pc labels.
250 LexicalScope *Scope) {
253 if (Scope->isAbstractScope())
256 const SmallVector<InsnRange, 4> &Ranges = Scope->getRanges();
283 assert(Start->isDefined() && "Invalid starting label for an inlined scope!");
284 assert(End->isDefined() && "Invalid end label for an inlined scope!");
292 /// constructInlinedScopeDIE - This scope represents inlined body of
296 LexicalScope *Scope) {
298 const SmallVector<InsnRange, 4> &Ranges = Scope->getRanges()
    [all...]
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
Metadata.h 628 : TBAA(T), Scope(S), NoAlias(N) {}
631 return TBAA == A.TBAA && Scope == A.Scope && NoAlias == A.NoAlias;
636 explicit operator bool() const { return TBAA || Scope || NoAlias; }
641 /// \brief The tag for alias scope specification (used with noalias).
642 MDNode *Scope;
644 /// \brief The tag specifying the noalias scope.
663 DenseMapInfo<MDNode *>::getHashValue(Val.Scope) ^
    [all...]
  /frameworks/compile/libbcc/bcinfo/BitReader_2_7/
BitcodeReader.cpp     [all...]
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
ResourceBundle.java 17 import android.databinding.tool.processing.Scope;
178 Scope.enter(bundle);
181 Scope.enter(target);
221 Scope.defer(ex);
223 Scope.exit();
227 Scope.exit();
235 Scope.registerError(String.format(
245 Scope.enter(bundle);
268 Scope.defer(ex);
270 Scope.exit()
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/IR/
DebugInfoMetadata.h 412 /// Base class for scope-like contexts.
727 DIScopeRef Scope, DITypeRef BaseType,
734 Line, Scope, BaseType, SizeInBits, AlignInBits, OffsetInBits,
739 Metadata *Scope, Metadata *BaseType,
756 unsigned Line, Metadata *Scope, Metadata *BaseType,
761 (Tag, Name, File, Line, Scope, BaseType, SizeInBits,
766 DIScopeRef Scope, DITypeRef BaseType, uint64_t SizeInBits,
770 (Tag, Name, File, Line, Scope, BaseType, SizeInBits,
853 unsigned Line, DIScopeRef Scope, DITypeRef BaseType,
859 Context, Tag, getCanonicalMDString(Context, Name), File, Line, Scope,
    [all...]
Metadata.h 628 : TBAA(T), Scope(S), NoAlias(N) {}
631 return TBAA == A.TBAA && Scope == A.Scope && NoAlias == A.NoAlias;
636 explicit operator bool() const { return TBAA || Scope || NoAlias; }
641 /// \brief The tag for alias scope specification (used with noalias).
642 MDNode *Scope;
644 /// \brief The tag specifying the noalias scope.
663 DenseMapInfo<MDNode *>::getHashValue(Val.Scope) ^
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/IR/
Metadata.h 638 : TBAA(T), Scope(S), NoAlias(N) {}
641 return TBAA == A.TBAA && Scope == A.Scope && NoAlias == A.NoAlias;
646 explicit operator bool() const { return TBAA || Scope || NoAlias; }
651 /// \brief The tag for alias scope specification (used with noalias).
652 MDNode *Scope;
654 /// \brief The tag specifying the noalias scope.
673 DenseMapInfo<MDNode *>::getHashValue(Val.Scope) ^
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/IR/
Metadata.h 638 : TBAA(T), Scope(S), NoAlias(N) {}
641 return TBAA == A.TBAA && Scope == A.Scope && NoAlias == A.NoAlias;
646 explicit operator bool() const { return TBAA || Scope || NoAlias; }
651 /// \brief The tag for alias scope specification (used with noalias).
652 MDNode *Scope;
654 /// \brief The tag specifying the noalias scope.
673 DenseMapInfo<MDNode *>::getHashValue(Val.Scope) ^
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/IR/
Metadata.h 645 : TBAA(T), Scope(S), NoAlias(N) {}
648 return TBAA == A.TBAA && Scope == A.Scope && NoAlias == A.NoAlias;
653 explicit operator bool() const { return TBAA || Scope || NoAlias; }
658 /// \brief The tag for alias scope specification (used with noalias).
659 MDNode *Scope;
661 /// \brief The tag specifying the noalias scope.
672 Result.Scope = Other.Scope == Scope ? Scope : nullptr
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/IR/
Metadata.h 645 : TBAA(T), Scope(S), NoAlias(N) {}
648 return TBAA == A.TBAA && Scope == A.Scope && NoAlias == A.NoAlias;
653 explicit operator bool() const { return TBAA || Scope || NoAlias; }
658 /// \brief The tag for alias scope specification (used with noalias).
659 MDNode *Scope;
661 /// \brief The tag specifying the noalias scope.
672 Result.Scope = Other.Scope == Scope ? Scope : nullptr
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/IR/
Metadata.h 645 : TBAA(T), Scope(S), NoAlias(N) {}
648 return TBAA == A.TBAA && Scope == A.Scope && NoAlias == A.NoAlias;
653 explicit operator bool() const { return TBAA || Scope || NoAlias; }
658 /// \brief The tag for alias scope specification (used with noalias).
659 MDNode *Scope;
661 /// \brief The tag specifying the noalias scope.
672 Result.Scope = Other.Scope == Scope ? Scope : nullptr
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/IR/
Metadata.h 645 : TBAA(T), Scope(S), NoAlias(N) {}
648 return TBAA == A.TBAA && Scope == A.Scope && NoAlias == A.NoAlias;
653 explicit operator bool() const { return TBAA || Scope || NoAlias; }
658 /// \brief The tag for alias scope specification (used with noalias).
659 MDNode *Scope;
661 /// \brief The tag specifying the noalias scope.
672 Result.Scope = Other.Scope == Scope ? Scope : nullptr
    [all...]

Completed in 1114 milliseconds

1 2 3 4 5 67 8 91011>>