Searched refs:Scope (Results 1 - 25 of 427) sorted by last modified time

1234567891011>>

/external/skia/experimental/SkV8Example/
H A DGlobal.cpp142 Context::Scope contextScope(context);
219 Context::Scope contextScope(context);
H A DJsContext.cpp76 Context::Scope contextScope(context);
119 Context::Scope contextScope(context);
H A DPath2D.cpp40 Context::Scope contextScope(context);
/external/qemu-pc-bios/bochs/bios/
H A Dacpi-dsdt.dsl28 Scope (\)
40 Scope(\_SB) {
216 Scope(\_SB.PCI0) {
431 Scope(\_SB) {
656 Scope (\_GPE)
/external/pdfium/fpdfsdk/src/javascript/
H A DJS_Context.cpp118 v8::Isolate::Scope isolate_scope(m_pRuntime->GetIsolate());
121 v8::Context::Scope context_scope(context);
128 v8::Isolate::Scope isolate_scope(m_pRuntime->GetIsolate());
131 v8::Context::Scope context_scope(context);
H A DJS_Runtime.cpp136 v8::Isolate::Scope isolate_scope(GetIsolate());
139 v8::Context::Scope context_scope(context);
209 v8::Isolate::Scope isolate_scope(m_isolate);
212 v8::Context::Scope context_scope(context);
/external/pdfium/fpdfsdk/src/jsapi/
H A Dfxjs_v8.cpp43 v8::Isolate::Scope isolate_scope(isolate);
77 v8::Isolate::Scope isolate_scope(isolate);
93 v8::Isolate::Scope isolate_scope(isolate);
113 v8::Isolate::Scope isolate_scope(isolate);
133 v8::Isolate::Scope isolate_scope(isolate);
150 v8::Isolate::Scope isolate_scope(isolate);
170 v8::Isolate::Scope isolate_scope(isolate);
188 v8::Isolate::Scope isolate_scope(isolate);
212 v8::Isolate::Scope isolate_scope(isolate);
236 v8::Isolate::Scope isolate_scop
[all...]
/external/mesa3d/src/gallium/auxiliary/util/
H A Ddbghelp.h789 ULONG Scope; member in struct:_SYMBOL_INFO
/external/llvm/utils/TableGen/
H A DDAGISelMatcher.h48 Scope, // Push a checking scope. enumerator in enum:llvm::Matcher::KindTy
194 : Matcher(Scope), Children(children.begin(), children.end()) {
224 return N->getKind() == Scope;
502 /// then the match fails. This is semantically equivalent to a Scope node where
556 /// then the match fails. This is semantically equivalent to a Scope node where
H A DDAGISelMatcherEmitter.cpp143 case Matcher::Scope: {
157 OS.PadToColumn(Indent*2) << "/*Scope*/ ";
188 << " children in Scope";
195 // Emit a zero as a sentinel indicating end of 'Scope'.
200 OS << "/*End of Scope*/";
761 case Matcher::Scope: OS << "OPC_Scope"; break;
H A DDAGISelMatcherOpt.cpp33 if (ScopeMatcher *Scope = dyn_cast<ScopeMatcher>(N)) {
34 for (unsigned i = 0, e = Scope->getNumChildren(); i != e; ++i) {
35 std::unique_ptr<Matcher> Child(Scope->takeChild(i));
37 Scope->resetChild(i, Child.release());
198 if (ScopeMatcher *Scope = dyn_cast<ScopeMatcher>(N)) {
199 for (unsigned i = 0, e = Scope->getNumChildren(); i != e; ++i) {
200 std::unique_ptr<Matcher> Child(Scope->takeChild(i));
202 Scope->resetChild(i, Child.release());
245 /// Scope
252 /// Scope
[all...]
/external/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp133 unsigned Scope = Attrs & LTO_SYMBOL_SCOPE_MASK; local
134 if (Scope != LTO_SYMBOL_SCOPE_DEFAULT_CAN_BE_HIDDEN)
/external/llvm/unittests/ExecutionEngine/JIT/
H A DJITEventListenerTestCommon.h61 llvm::MDNode* Scope; member in class:JITEventListenerTestBase
84 Scope = DebugBuilder->createFile(getFilename(), ".");
/external/llvm/include/llvm/CodeGen/
H A DLexicalScopes.h122 bool AbstractScope; // Abstract Scope
209 LexicalScope *getOrCreateRegularScope(MDNode *Scope);
212 LexicalScope *getOrCreateInlinedScope(MDNode *Scope, MDNode *InlinedAt);
218 void constructScopeNest(LexicalScope *Scope);
/external/llvm/include/llvm/IR/
H A DDIBuilder.h79 createTemplateValueParameter(unsigned Tag, DIDescriptor Scope,
198 /// @param Scope Member scope.
208 createMemberType(DIDescriptor Scope, StringRef Name, DIFile File,
214 /// @param Scope Member scope.
222 createStaticMemberType(DIDescriptor Scope, StringRef Name,
286 /// @param Scope Scope in which this class is defined.
301 DICompositeType createClassType(DIDescriptor Scope, StringRef Name,
311 /// @param Scope Scope i
[all...]
H A DDebugInfo.h808 DISubprogram getDISubprogram(const MDNode *Scope);
877 void processScope(DIScope Scope);
891 bool addScope(DIScope Scope);
H A DDebugLoc.h53 /// ScopeIdx - This is an opaque ID# for Scope/InlinedAt information,
62 MDNode *Scope, MDNode *InlinedAt = nullptr);
89 /// getScopeAndInlinedAt - Return both the Scope and the InlinedAt values.
90 void getScopeAndInlinedAt(MDNode *&Scope, MDNode *&IA,
/external/llvm/lib/AsmParser/
H A DLLParser.cpp1638 /// This sets Scope and Ordering to the parsed values.
1639 bool LLParser::ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
1644 Scope = CrossThread;
1646 Scope = SingleThread;
4279 SynchronizationScope Scope = CrossThread;
4293 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
4305 Inst = new LoadInst(Val, "", isVolatile, Alignment, Ordering, Scope);
4320 SynchronizationScope Scope = CrossThread;
4336 ParseScopeAndOrdering(isAtomic, Scope, Ordering) ||
4351 Inst = new StoreInst(Val, Ptr, isVolatile, Alignment, Ordering, Scope);
[all...]
H A DLLParser.h222 bool ParseScopeAndOrdering(bool isAtomic, SynchronizationScope &Scope,
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2353 MDNode *Scope = nullptr, *IA = nullptr; local
2354 if (ScopeID) Scope = cast<MDNode>(MDValueList.getValueFwdRef(ScopeID-1));
2356 LastLoc = DebugLoc::get(Line, Col, Scope, IA);
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp1650 MDNode *Scope, *IA; local
1651 DL.getScopeAndInlinedAt(Scope, IA, I->getContext());
1655 Vals.push_back(Scope ? VE.getValueID(Scope)+1 : 0);
H A DValueEnumerator.cpp102 MDNode *Scope, *IA; local
103 I.getDebugLoc().getScopeAndInlinedAt(Scope, IA, I.getContext());
104 if (Scope) EnumerateMetadata(Scope);
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp331 /// Check whether we should create a DIE for the given Scope, return true
333 bool DwarfDebug::isLexicalScopeDIENull(LexicalScope *Scope) { argument
334 if (Scope->isAbstractScope())
338 const SmallVectorImpl<InsnRange> &Ranges = Scope->getRanges();
400 LexicalScope *Scope) {
401 if (isLexicalScopeDIENull(Scope))
405 if (Scope->isAbstractScope())
408 attachRangesOrLowHighPC(TheCU, *ScopeDIE, Scope->getRanges());
417 LexicalScope *Scope) {
418 assert(Scope
399 constructLexicalScopeDIE(DwarfCompileUnit &TheCU, LexicalScope *Scope) argument
416 constructInlinedScopeDIE(DwarfCompileUnit &TheCU, LexicalScope *Scope) argument
446 constructVariableDIE(DwarfCompileUnit &TheCU, DbgVariable &DV, const LexicalScope &Scope, DIE *&ObjectPointer) argument
456 createScopeChildrenDIE( DwarfCompileUnit &TheCU, LexicalScope *Scope, SmallVectorImpl<std::unique_ptr<DIE>> &Children) argument
488 createAndAddScopeChildren(DwarfCompileUnit &TheCU, LexicalScope *Scope, DIE &ScopeDIE) argument
500 constructAbstractSubprogramScopeDIE(DwarfCompileUnit &TheCU, LexicalScope *Scope) argument
539 constructSubprogramScopeDIE(DwarfCompileUnit &TheCU, LexicalScope *Scope) argument
558 constructScopeDIE(DwarfCompileUnit &TheCU, LexicalScope *Scope) argument
1093 createAbstractVariable(const DIVariable &Var, LexicalScope *Scope) argument
1121 addCurrentFnArgument(DbgVariable *Var, LexicalScope *Scope) argument
1150 LexicalScope *Scope = LScopes.findLexicalScope(VI.Loc); local
1208 LexicalScope *Scope = nullptr; local
1320 const MDNode *Scope = DL.getScope(Asm->MF->getFunction()->getContext()); local
[all...]
H A DDwarfDebug.h347 void createAbstractVariable(const DIVariable &DV, LexicalScope *Scope);
349 const MDNode *Scope);
351 const MDNode *Scope);
359 /// \brief A helper function to check whether the DIE for a given Scope is
361 bool isLexicalScopeDIENull(LexicalScope *Scope);
371 LexicalScope *Scope);
376 LexicalScope *Scope);
380 LexicalScope *Scope);
381 void createAndAddScopeChildren(DwarfCompileUnit &TheCU, LexicalScope *Scope,
385 LexicalScope *Scope);
[all...]
H A DWinCodeViewLineTables.cpp28 DIScope Scope(S);
29 StringRef Dir = Scope.getDirectory(),
30 Filename = Scope.getFilename();
84 const MDNode *Scope = DL.getScope(MF->getFunction()->getContext()); local
85 if (!Scope)
87 StringRef Filename = getFullFilepath(Scope);

Completed in 933 milliseconds

1234567891011>>