/third_party/gn/src/gn/ |
H A D | scope.cc | 31 Scope::MergeOptions::MergeOptions() in MergeOptions() 36 Scope::MergeOptions::~MergeOptions() = default; 38 Scope::ProgrammaticProvider::~ProgrammaticProvider() { in ~ProgrammaticProvider() 42 std::string Scope::TemplateInvocationEntry::Describe() const { in Describe() 49 Scope::Scope(const Settings* settings) in Scope() function in Scope 56 Scope::Scope(Scope* parent) in Scope() function in Scope 64 Scope function in Scope [all...] |
H A D | functions.h | 19 class Scope; 29 using SelfEvaluatingArgsFunction = Value (*)(Scope* scope, 35 using GenericBlockFunction = Value (*)(Scope* scope, 46 Scope* block_scope, 50 using NoBlockFunction = Value (*)(Scope* scope, 58 Value RunAction(Scope* scope, 67 Value RunActionForEach(Scope* scope, 76 Value RunAssert(Scope* scope, 84 Value RunBundleData(Scope* scope, 93 Value RunCreateBundle(Scope* scop [all...] |
H A D | scope.h | 30 // Scope for the script execution. 41 class Scope { class 56 explicit ProgrammaticProvider(Scope* scope) : scope_(scope) { in ProgrammaticProvider() 66 Scope* scope_; 99 // Details about a Scope's creation as a template invocation 115 explicit Scope(const Settings* settings); 118 explicit Scope(Scope* parent); 119 explicit Scope(const Scope* paren [all...] |
H A D | args.h | 49 void AddArgOverrides(const Scope::KeyValueMap& overrides); 53 void AddDefaultArgOverrides(const Scope::KeyValueMap& overrides); 62 void SetupRootScope(Scope* dest, 63 const Scope::KeyValueMap& toolchain_overrides) const; 74 bool DeclareArgs(const Scope::KeyValueMap& args, 75 Scope* scope_to_set, 88 // refer to Scope for how this is determined. 100 std::unordered_map<const Settings*, Scope::KeyValueMap>; 103 void SetSystemVarsLocked(Scope* scope) const; 106 void ApplyOverridesLocked(const Scope [all...] |
H A D | scope_unittest.cc | 16 bool HasStringValueEqualTo(const Scope* scope, in HasStringValueEqualTo() 27 bool ContainsBuildDependencyFile(const Scope* scope, in ContainsBuildDependencyFile() 36 TEST(Scope, InheritBuildDependencyFilesFromParent) { in TEST() 41 Scope new_scope(setup.scope()); in TEST() 46 TEST(Scope, NonRecursiveMergeTo) { in TEST() 73 Scope new_scope(setup.settings()); in TEST() 79 &new_scope, Scope::MergeOptions(), &assignment, "error", &err)); in TEST() 85 Scope new_scope(setup.settings()); in TEST() 93 &new_scope, Scope::MergeOptions(), &assignment, "error", &err)); in TEST() 99 Scope new_scop in TEST() [all...] |
H A D | value_unittest.cc | 36 Scope* scope = new Scope(setup.settings()); in TEST() 37 Value scopeval(nullptr, std::unique_ptr<Scope>(scope)); in TEST() 48 Scope* inner_scope = new Scope(setup.settings()); in TEST() 49 Value inner_scopeval(nullptr, std::unique_ptr<Scope>(inner_scope)); in TEST() 57 Scope* nested_scope = new Scope(scope); in TEST() 58 Value nested_scopeval(nullptr, std::unique_ptr<Scope>(nested_scope)); in TEST()
|
H A D | template.cc | 20 Template::Template(const Scope* scope, const FunctionCallNode* def) in Template() 23 Template::Template(std::unique_ptr<Scope> scope, const FunctionCallNode* def) in Template() 28 Value Template::Invoke(Scope* scope, in Invoke() 44 std::unique_ptr<Scope> invocation_scope = std::make_unique<Scope>(scope); in Invoke() 69 Scope template_scope(closure_.get()); in Invoke() 90 // Scope.SetValue will copy the value which will in turn copy the scope, but in Invoke() 94 Value(nullptr, std::unique_ptr<Scope>()), invocation); in Invoke() 96 variables::kInvoker, Scope::SEARCH_NESTED, false); in Invoke() 118 // to overwrite the value of "invoker" and free the Scope owne in Invoke() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | LexicalScopes.cpp | 124 DILocalScope *Scope = DL->getScope(); in findLexicalScope() local 125 if (!Scope) in findLexicalScope() 130 Scope = Scope->getNonLexicalBlockFileScope(); in findLexicalScope() 133 auto I = InlinedLexicalScopeMap.find(std::make_pair(Scope, IA)); in findLexicalScope() 136 return findLexicalScope(Scope); in findLexicalScope() 141 LexicalScope *LexicalScopes::getOrCreateLexicalScope(const DILocalScope *Scope, in getOrCreateLexicalScope() argument 145 if (Scope->getSubprogram()->getUnit()->getEmissionKind() == in getOrCreateLexicalScope() 149 getOrCreateAbstractScope(Scope); in getOrCreateLexicalScope() 151 return getOrCreateInlinedScope(Scope, I in getOrCreateLexicalScope() 159 getOrCreateRegularScope(const DILocalScope *Scope) getOrCreateRegularScope() argument 187 getOrCreateInlinedScope(const DILocalScope *Scope, const DILocation *InlinedAt) getOrCreateInlinedScope() argument 211 getOrCreateAbstractScope(const DILocalScope *Scope) getOrCreateAbstractScope() argument 233 constructScopeNest(LexicalScope *Scope) constructScopeNest() argument 284 LexicalScope *Scope = getOrCreateLexicalScope(DL); getMachineBasicBlocks() local 303 LexicalScope *Scope = getOrCreateLexicalScope(DL); dominates() local [all...] |
/third_party/node/deps/v8/src/heap/ |
H A D | gc-tracer.cc | 49 void GCTracer::Scope::AssertMainThread() { in AssertMainThread() 61 const char* GCTracer::Scope::Name(ScopeId id) { in Name() 63 case Scope::scope: \ in Name() 68 case Scope::NUMBER_OF_SCOPES: in Name() 75 bool GCTracer::Scope::NeedsYoungEpoch(ScopeId id) { in NeedsYoungEpoch() 77 case Scope::scope: \ in NeedsYoungEpoch() 108 for (int i = 0; i < Scope::NUMBER_OF_SCOPES; i++) { in Event() 190 STATIC_ASSERT(0 == Scope::FIRST_INCREMENTAL_SCOPE); in GCTracer() 193 STATIC_ASSERT(0 == Scope::MC_INCREMENTAL); in GCTracer() 195 for (int i = 0; i < Scope in GCTracer() [all...] |
H A D | gc-tracer-inl.h | 32 GCTracer::Scope::Scope(GCTracer* tracer, ScopeId scope, ThreadKind thread_kind) in Scope() function in v8::internal::GCTracer::Scope 54 GCTracer::Scope::~Scope() { in ~Scope() 80 constexpr int GCTracer::Scope::IncrementalOffset(ScopeId id) { in IncrementalOffset() 91 CollectionEpoch GCTracer::CurrentEpoch(Scope::ScopeId id) const { in CurrentEpoch() 92 return Scope::NeedsYoungEpoch(id) ? epoch_young_ : epoch_full_; in CurrentEpoch() 117 constexpr double GCTracer::current_scope(Scope::ScopeId id) const { in current_scope() 118 if (Scope::FIRST_INCREMENTAL_SCOPE <= id && in current_scope() 119 id <= Scope in current_scope() [all...] |
H A D | gc-tracer.h | 34 GCTracer::Scope UNIQUE_IDENTIFIER(gc_tracer_scope)( \ 35 tracer, GCTracer::Scope::ScopeId(scope_id), ThreadKind::kMain); \ 37 GCTracer::Scope::Name(GCTracer::Scope::ScopeId(scope_id))) 40 GCTracer::Scope UNIQUE_IDENTIFIER(gc_tracer_scope)( \ 41 tracer, GCTracer::Scope::ScopeId(scope_id), thread_kind); \ 43 GCTracer::Scope::Name(GCTracer::Scope::ScopeId(scope_id))) 46 GCTracer::Scope UNIQUE_IDENTIFIER(gc_tracer_scope)( \ 47 tracer, GCTracer::Scope 71 class V8_EXPORT_PRIVATE V8_NODISCARD Scope { global() class in v8::internal::GCTracer [all...] |
/third_party/spirv-tools/test/val/ |
H A D | val_non_uniform_test.cpp | 113 spv::Scope scopes[] = {spv::Scope::CrossDevice, spv::Scope::Device, 114 spv::Scope::Workgroup, spv::Scope::Subgroup, 115 spv::Scope::Invocation}; 119 std::tuple<std::string, std::string, spv::Scope, std::string, std::string>>; 121 std::string ConvertScope(spv::Scope scope) { in ConvertScope() 123 case spv::Scope::CrossDevice: in ConvertScope() 125 case spv::Scope in ConvertScope() [all...] |
/third_party/node/deps/v8/src/ast/ |
H A D | scopes.cc | 49 Variable* VariableMap::Declare(Zone* zone, Scope* scope, in Declare() 98 // Implementation of Scope 100 Scope::Scope(Zone* zone) in Scope() function in v8::internal::Scope 105 Scope::Scope(Zone* zone, Scope* outer_scope, ScopeType scope_type) in Scope() function in v8::internal::Scope 116 Variable* Scope::DeclareHomeObjectVariable(AstValueFactory* ast_value_factory) { in DeclareHomeObjectVariable() 128 Variable* Scope::DeclareStaticHomeObjectVariable( in DeclareStaticHomeObjectVariable() 145 : Scope(zon in DeclarationScope() 238 Scope::Scope(Zone* zone, ScopeType scope_type, Scope() function in v8::internal::Scope 289 Scope::Scope(Zone* zone, const AstRawString* catch_variable_name, Scope() function in v8::internal::Scope [all...] |
H A D | scopes.h | 25 class Scope; 30 struct PointerWithPayloadTraits<v8::internal::Scope> { 66 Variable* Declare(Zone* zone, Scope* scope, const AstRawString* name, 88 // JS environments are represented in the parser using Scope, DeclarationScope 92 class V8_EXPORT_PRIVATE Scope : public NON_EXPORTED_BASE(ZoneObject) { class 97 Scope(Zone* zone, Scope* outer_scope, ScopeType scope_type); 115 inline explicit Snapshot(Scope* scope); 134 Scope* outer_scope_; 135 Scope* declaration_scope [all...] |
/third_party/spirv-tools/source/val/ |
H A D | validate_scopes.cpp | 27 switch (static_cast<spv::Scope>(scope)) { in IsValidScope() 28 case spv::Scope::CrossDevice: in IsValidScope() 29 case spv::Scope::Device: in IsValidScope() 30 case spv::Scope::Workgroup: in IsValidScope() 31 case spv::Scope::Subgroup: in IsValidScope() 32 case spv::Scope::Invocation: in IsValidScope() 33 case spv::Scope::QueueFamilyKHR: in IsValidScope() 34 case spv::Scope::ShaderCallKHR: in IsValidScope() 36 case spv::Scope::Max: in IsValidScope() 58 << "Scope id in ValidateScope() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/ |
H A D | ControlHeightReduction.cpp | 330 for (CHRScope *Scope : Scopes) { in ~CHR() 331 delete Scope; in ~CHR() 343 CHRScope *Scope = findScopes(R, nullptr, nullptr, Output); in findScopes() local 344 if (Scope) { in findScopes() 345 Output.push_back(Scope); in findScopes() 351 void checkScopeHoistable(CHRScope *Scope); 355 SmallVector<CHRScope *, 8> splitScope(CHRScope *Scope, 363 void classifyBiasedScopes(CHRScope *Scope, CHRScope *OutermostScope); 370 void setCHRRegions(CHRScope *Scope, CHRScope *OutermostScope); 376 void transformScopes(CHRScope *Scope, DenseSe 438 operator <<(raw_ostream &OS, const CHRScope &Scope) operator <<() argument 893 checkScopeHoistable(CHRScope *Scope) checkScopeHoistable() argument 1128 getSelectsInScope(CHRScope *Scope, DenseSet<Instruction *> &Output) getSelectsInScope() argument 1153 splitScope( CHRScope *Scope, CHRScope *Outer, DenseSet<Value *> *OuterConditionValues, Instruction *OuterInsertPoint, SmallVectorImpl<CHRScope *> &Output, DenseSet<Instruction *> &Unhoistables) splitScope() argument 1312 classifyBiasedScopes(CHRScope *Scope, CHRScope *OutermostScope) classifyBiasedScopes() argument 1337 hasAtLeastTwoBiasedBranches(CHRScope *Scope) hasAtLeastTwoBiasedBranches() argument 1393 setCHRRegions(CHRScope *Scope, CHRScope *OutermostScope) setCHRRegions() argument 1503 hoistScopeConditions(CHRScope *Scope, Instruction *HoistPoint, DenseSet<PHINode *> &TrivialPHIs, DominatorTree &DT) hoistScopeConditions() argument 1529 negateICmpIfUsedByBranchOrSelectOnly(ICmpInst *ICmp, Instruction *ExcludedUser, CHRScope *Scope) negateICmpIfUsedByBranchOrSelectOnly() argument 1578 insertTrivialPHIs(CHRScope *Scope, BasicBlock *EntryBlock, BasicBlock *ExitBlock, DenseSet<PHINode *> &TrivialPHIs) insertTrivialPHIs() argument 1645 assertCHRRegionsHaveBiasedBranchOrSelect(CHRScope *Scope) assertCHRRegionsHaveBiasedBranchOrSelect() argument 1666 assertBranchOrSelectConditionHoisted( CHRScope *Scope, BasicBlock *PreEntryBlock) assertBranchOrSelectConditionHoisted() argument 1701 transformScopes(CHRScope *Scope, DenseSet<PHINode *> &TrivialPHIs) transformScopes() argument 1768 cloneScopeBlocks(CHRScope *Scope, BasicBlock *PreEntryBlock, BasicBlock *ExitBlock, Region *LastRegion, ValueToValueMapTy &VMap) cloneScopeBlocks() argument 1847 fixupBranchesAndSelects(CHRScope *Scope, BasicBlock *PreEntryBlock, BranchInst *MergedBR, uint64_t ProfileCount) fixupBranchesAndSelects() argument 1888 fixupBranch(Region *R, CHRScope *Scope, IRBuilder<> &IRB, Value *&MergedCondition, BranchProbability &CHRBranchBias) fixupBranch() argument 1932 fixupSelect(SelectInst *SI, CHRScope *Scope, IRBuilder<> &IRB, Value *&MergedCondition, BranchProbability &CHRBranchBias) fixupSelect() argument 1957 addToMergedCondition(bool IsTrueBiased, Value *Cond, Instruction *BranchOrSelect, CHRScope *Scope, IRBuilder<> &IRB, Value *&MergedCondition) addToMergedCondition() argument [all...] |
/third_party/node/deps/v8/src/torque/ |
H A D | torque-compiler.cc | 31 CurrentSourceFile::Scope source_id_scope(source_id); in ReadAndParseTorqueFile() 49 GlobalContext::Scope global_context(std::move(CurrentAst::Get())); in CompileCurrentAst() 62 TargetArchitecture::Scope target_architecture(options.force_32bit_output); in CompileCurrentAst() 63 TypeOracle::Scope type_oracle; in CompileCurrentAst() 64 CurrentScope::Scope current_namespace(GlobalContext::GetDefaultNamespace()); in CompileCurrentAst() 118 SourceFileMap::Scope source_map_scope(options.v8_root); in CompileTorque() 119 CurrentSourceFile::Scope no_file_scope( in CompileTorque() 121 CurrentAst::Scope ast_scope; in CompileTorque() 122 TorqueMessages::Scope messages_scope; in CompileTorque() 123 LanguageServerData::Scope server_data_scop in CompileTorque() [all...] |
H A D | contextual.h | 18 V8_EXPORT_PRIVATE typename Variable::Scope*& ContextualVariableTop(); 22 // a variable in a well-nested fashion via the {Scope} class. 24 // is stored in a {Scope} object. The most recent value can be retrieved 25 // via Get(). Because only {Scope} has actual storage, there must be at 26 // least one active {Scope} (i.e. in a surrounding C++ scope), whenever Get() 29 // i.e. {Scope} and Get() have to be in the same thread. 33 // A {Scope} contains a new object of type {VarType} and gives 35 // variable is restored to the state before the {Scope} was created. Scopes 36 // have to follow a stack discipline: A {Scope} has to be destructed before 38 class V8_NODISCARD Scope { class in v8::internal::torque::ContextualVariable 41 explicit Scope(Args&&... args) Scope() function in v8::internal::torque::ContextualVariable::Scope [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
H A D | LLVMContextImpl.h | 281 Metadata *Scope; member 285 MDNodeKeyImpl(unsigned Line, unsigned Column, Metadata *Scope, in MDNodeKeyImpl() 287 : Line(Line), Column(Column), Scope(Scope), InlinedAt(InlinedAt), in MDNodeKeyImpl() 290 : Line(L->getLine()), Column(L->getColumn()), Scope(L->getRawScope()), in MDNodeKeyImpl() 295 Scope == RHS->getRawScope() && InlinedAt == RHS->getRawInlinedAt() && in isKeyOf() 300 return hash_combine(Line, Column, Scope, InlinedAt, ImplicitCode); in getHashValue() 410 Metadata *Scope; member 420 Metadata *Scope, Metadata *BaseType, uint64_t SizeInBits, in MDNodeKeyImpl() 424 : Tag(Tag), Name(Name), File(File), Line(Line), Scope(Scop in MDNodeKeyImpl() 500 Metadata *Scope; global() member 609 Metadata *Scope; global() member 729 Metadata *Scope; global() member 751 Metadata *Scope; global() member 772 Metadata *Scope; global() member 793 Metadata *Scope; global() member 818 Metadata *Scope; global() member 882 Metadata *Scope; global() member 940 Metadata *Scope; global() member 979 Metadata *Scope; global() member 1067 Metadata *Scope; global() member [all...] |
H A D | DebugInfo.cpp | 43 DISubprogram *llvm::getDISubprogram(const MDNode *Scope) { in getDISubprogram() argument 44 if (auto *LocalScope = dyn_cast_or_null<DILocalScope>(Scope)) in getDISubprogram() 148 void DebugInfoFinder::processScope(DIScope *Scope) { in processScope() argument 149 if (!Scope) in processScope() 151 if (auto *Ty = dyn_cast<DIType>(Scope)) { in processScope() 155 if (auto *CU = dyn_cast<DICompileUnit>(Scope)) { in processScope() 159 if (auto *SP = dyn_cast<DISubprogram>(Scope)) { in processScope() 163 if (!addScope(Scope)) in processScope() 165 if (auto *LB = dyn_cast<DILexicalBlockBase>(Scope)) { in processScope() 167 } else if (auto *NS = dyn_cast<DINamespace>(Scope)) { in processScope() 268 addScope(DIScope *Scope) addScope() argument 496 auto *Scope = map(MLD->getScope()); getReplacementMDLocation() local 801 LLVMDIBuilderCreateFunction( LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, const char *Name, size_t NameLen, const char *LinkageName, size_t LinkageNameLen, LLVMMetadataRef File, unsigned LineNo, LLVMMetadataRef Ty, LLVMBool IsLocalToUnit, LLVMBool IsDefinition, unsigned ScopeLine, LLVMDIFlags Flags, LLVMBool IsOptimized) LLVMDIBuilderCreateFunction() argument 816 LLVMDIBuilderCreateLexicalBlock( LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, LLVMMetadataRef File, unsigned Line, unsigned Col) LLVMDIBuilderCreateLexicalBlock() argument 825 LLVMDIBuilderCreateLexicalBlockFile(LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, LLVMMetadataRef File, unsigned Discriminator) LLVMDIBuilderCreateLexicalBlockFile() argument 835 LLVMDIBuilderCreateImportedModuleFromNamespace(LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, LLVMMetadataRef NS, LLVMMetadataRef File, unsigned Line) LLVMDIBuilderCreateImportedModuleFromNamespace() argument 847 LLVMDIBuilderCreateImportedModuleFromAlias(LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, LLVMMetadataRef ImportedEntity, LLVMMetadataRef File, unsigned Line) LLVMDIBuilderCreateImportedModuleFromAlias() argument 859 LLVMDIBuilderCreateImportedModuleFromModule(LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, LLVMMetadataRef M, LLVMMetadataRef File, unsigned Line) LLVMDIBuilderCreateImportedModuleFromModule() argument 871 LLVMDIBuilderCreateImportedDeclaration(LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, LLVMMetadataRef Decl, LLVMMetadataRef File, unsigned Line, const char *Name, size_t NameLen) LLVMDIBuilderCreateImportedDeclaration() argument 884 LLVMDIBuilderCreateDebugLocation(LLVMContextRef Ctx, unsigned Line, unsigned Column, LLVMMetadataRef Scope, LLVMMetadataRef InlinedAt) LLVMDIBuilderCreateDebugLocation() argument 907 LLVMDIScopeGetFile(LLVMMetadataRef Scope) LLVMDIScopeGetFile() argument 960 LLVMDIBuilderCreateEnumerationType( LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, const char *Name, size_t NameLen, LLVMMetadataRef File, unsigned LineNumber, uint64_t SizeInBits, uint32_t AlignInBits, LLVMMetadataRef *Elements, unsigned NumElements, LLVMMetadataRef ClassTy) LLVMDIBuilderCreateEnumerationType() argument 972 LLVMDIBuilderCreateUnionType( LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, const char *Name, size_t NameLen, LLVMMetadataRef File, unsigned LineNumber, uint64_t SizeInBits, uint32_t AlignInBits, LLVMDIFlags Flags, LLVMMetadataRef *Elements, unsigned NumElements, unsigned RunTimeLang, const char *UniqueId, size_t UniqueIdLen) LLVMDIBuilderCreateUnionType() argument 1028 LLVMDIBuilderCreateStructType( LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, const char *Name, size_t NameLen, LLVMMetadataRef File, unsigned LineNumber, uint64_t SizeInBits, uint32_t AlignInBits, LLVMDIFlags Flags, LLVMMetadataRef DerivedFrom, LLVMMetadataRef *Elements, unsigned NumElements, unsigned RunTimeLang, LLVMMetadataRef VTableHolder, const char *UniqueId, size_t UniqueIdLen) LLVMDIBuilderCreateStructType() argument 1044 LLVMDIBuilderCreateMemberType( LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, const char *Name, size_t NameLen, LLVMMetadataRef File, unsigned LineNo, uint64_t SizeInBits, uint32_t AlignInBits, uint64_t OffsetInBits, LLVMDIFlags Flags, LLVMMetadataRef Ty) LLVMDIBuilderCreateMemberType() argument 1061 LLVMDIBuilderCreateStaticMemberType( LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, const char *Name, size_t NameLen, LLVMMetadataRef File, unsigned LineNumber, LLVMMetadataRef Type, LLVMDIFlags Flags, LLVMValueRef ConstantVal, uint32_t AlignInBits) LLVMDIBuilderCreateStaticMemberType() argument 1108 LLVMDIBuilderCreateTypedef(LLVMDIBuilderRef Builder, LLVMMetadataRef Type, const char *Name, size_t NameLen, LLVMMetadataRef File, unsigned LineNo, LLVMMetadataRef Scope, uint32_t AlignInBits) LLVMDIBuilderCreateTypedef() argument 1128 LLVMDIBuilderCreateForwardDecl( LLVMDIBuilderRef Builder, unsigned Tag, const char *Name, size_t NameLen, LLVMMetadataRef Scope, LLVMMetadataRef File, unsigned Line, unsigned RuntimeLang, uint64_t SizeInBits, uint32_t AlignInBits, const char *UniqueIdentifier, size_t UniqueIdentifierLen) LLVMDIBuilderCreateForwardDecl() argument 1140 LLVMDIBuilderCreateReplaceableCompositeType( LLVMDIBuilderRef Builder, unsigned Tag, const char *Name, size_t NameLen, LLVMMetadataRef Scope, LLVMMetadataRef File, unsigned Line, unsigned RuntimeLang, uint64_t SizeInBits, uint32_t AlignInBits, LLVMDIFlags Flags, const char *UniqueIdentifier, size_t UniqueIdentifierLen) LLVMDIBuilderCreateReplaceableCompositeType() argument 1186 LLVMDIBuilderCreateBitFieldMemberType(LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, const char *Name, size_t NameLen, LLVMMetadataRef File, unsigned LineNumber, uint64_t SizeInBits, uint64_t OffsetInBits, uint64_t StorageOffsetInBits, LLVMDIFlags Flags, LLVMMetadataRef Type) LLVMDIBuilderCreateBitFieldMemberType() argument 1201 LLVMDIBuilderCreateClassType(LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, const char *Name, size_t NameLen, LLVMMetadataRef File, unsigned LineNumber, uint64_t SizeInBits, uint32_t AlignInBits, uint64_t OffsetInBits, LLVMDIFlags Flags, LLVMMetadataRef DerivedFrom, LLVMMetadataRef *Elements, unsigned NumElements, LLVMMetadataRef VTableHolder, LLVMMetadataRef TemplateParamsNode, const char *UniqueIdentifier, size_t UniqueIdentifierLen) LLVMDIBuilderCreateClassType() argument 1284 LLVMDIBuilderCreateGlobalVariableExpression( LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, const char *Name, size_t NameLen, const char *Linkage, size_t LinkLen, LLVMMetadataRef File, unsigned LineNo, LLVMMetadataRef Ty, LLVMBool LocalToUnit, LLVMMetadataRef Expr, LLVMMetadataRef Decl, uint32_t AlignInBits) LLVMDIBuilderCreateGlobalVariableExpression() argument 1334 LLVMDIBuilderCreateTempGlobalVariableFwdDecl( LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, const char *Name, size_t NameLen, const char *Linkage, size_t LnkLen, LLVMMetadataRef File, unsigned LineNo, LLVMMetadataRef Ty, LLVMBool LocalToUnit, LLVMMetadataRef Decl, uint32_t AlignInBits) LLVMDIBuilderCreateTempGlobalVariableFwdDecl() argument 1388 LLVMDIBuilderCreateAutoVariable( LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, const char *Name, size_t NameLen, LLVMMetadataRef File, unsigned LineNo, LLVMMetadataRef Ty, LLVMBool AlwaysPreserve, LLVMDIFlags Flags, uint32_t AlignInBits) LLVMDIBuilderCreateAutoVariable() argument 1398 LLVMDIBuilderCreateParameterVariable( LLVMDIBuilderRef Builder, LLVMMetadataRef Scope, const char *Name, size_t NameLen, unsigned ArgNo, LLVMMetadataRef File, unsigned LineNo, LLVMMetadataRef Ty, LLVMBool AlwaysPreserve, LLVMDIFlags Flags) LLVMDIBuilderCreateParameterVariable() argument [all...] |
/third_party/skia/src/gpu/glsl/ |
H A D | GrGLSLVarying.h | 37 enum class Scope { class in GrGLSLVarying 44 GrGLSLVarying(GrSLType type, Scope scope = Scope::kVertToFrag) in GrGLSLVarying() argument 51 void reset(GrSLType type, Scope scope = Scope::kVertToFrag) { in reset() argument 60 Scope scope() const { return fScope; } in scope() 61 bool isInVertexShader() const { return Scope::kGeoToFrag != fScope; } in isInVertexShader() 62 bool isInFragmentShader() const { return Scope::kVertToGeo != fScope; } in isInFragmentShader() 79 Scope fScope = Scope [all...] |
/third_party/node/deps/v8/src/compiler/ |
H A D | compiler-source-position-table.h | 20 class V8_NODISCARD Scope final { 22 Scope(SourcePositionTable* source_positions, SourcePosition position) in Scope() function in v8::internal::compiler::final::final 27 Scope(SourcePositionTable* source_positions, Node* node) in Scope() function in v8::internal::compiler::final::final 32 ~Scope() { source_positions_->current_position_ = prev_position_; } in ~Scope() 33 Scope(const Scope&) = delete; 34 Scope& operator=(const Scope&) = delete;
|
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/Debug/ |
H A D | Thread.hpp | 37 // Scope is a container for variables and is used to provide source data for the 38 // DAP 'Scope' type: 40 class Scope class 43 using ID = dbg::ID<Scope>; 45 inline Scope(ID id, 59 Scope::Scope(ID id, in Scope() function in vk::dbg::Scope 87 std::shared_ptr<Scope> arguments; 90 std::shared_ptr<Scope> locals; 93 std::shared_ptr<Scope> register [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
H A D | DIBuilder.h | 261 /// \param Scope Member scope. 270 DIDerivedType *createMemberType(DIScope *Scope, StringRef Name, 279 /// \param Scope Member scope. 290 DIDerivedType *createVariantMemberType(DIScope *Scope, StringRef Name, 299 /// \param Scope Member scope. 309 DIScope *Scope, StringRef Name, DIFile *File, unsigned LineNo, 315 /// \param Scope Member scope. 323 DIDerivedType *createStaticMemberType(DIScope *Scope, StringRef Name, 361 /// \param Scope Scope i [all...] |
/third_party/skia/src/utils/ |
H A D | SkJSONWriter.h | 56 fScopeStack.push_back(Scope::kNone); in SkJSONWriter() 86 SkASSERT(Scope::kObject == this->scope()); in appendName() 110 fScopeStack.push_back(Scope::kObject); in beginObject() 119 SkASSERT(Scope::kObject == this->scope()); in endObject() 142 fScopeStack.push_back(Scope::kArray); in beginArray() 151 SkASSERT(Scope::kArray == this->scope()); in endArray() 253 enum class Scope { class in SkJSONWriter 279 if (Scope::kArray == this->scope()) { in beginValue() 281 } else if (Scope::kObject == this->scope() && Mode::kPretty == fMode) { in beginValue() 287 fState = Scope in beginValue() [all...] |