Home
last modified time | relevance | path

Searched refs:Symbols (Results 1 – 25 of 606) sorted by relevance

12345678910>>...25

/third_party/skia/third_party/externals/tint/src/
Dclone_context_test.cc104 auto* a_b = alloc.Create<Node>(builder.Symbols().New("a->b")); in TEST_F()
105 auto* a = alloc.Create<Node>(builder.Symbols().New("a"), nullptr, a_b); in TEST_F()
107 auto* b_b = alloc.Create<Node>(builder.Symbols().New("b->b")); in TEST_F()
108 auto* b = alloc.Create<Node>(builder.Symbols().New("b"), b_a, b_b); in TEST_F()
110 original_root = alloc.Create<Node>(builder.Symbols().New("root"), a, b, c); in TEST_F()
144 EXPECT_EQ(cloned_root->name, cloned.Symbols().Get("root")); in TEST_F()
145 EXPECT_EQ(cloned_root->a->name, cloned.Symbols().Get("a")); in TEST_F()
146 EXPECT_EQ(cloned_root->a->b->name, cloned.Symbols().Get("a->b")); in TEST_F()
147 EXPECT_EQ(cloned_root->b->name, cloned.Symbols().Get("b")); in TEST_F()
148 EXPECT_EQ(cloned_root->b->b->name, cloned.Symbols().Get("b->b")); in TEST_F()
[all …]
Dprogram_builder_test.cc42 ASSERT_TRUE(inner.Symbols().Get("a").IsValid()); in TEST_F()
43 ASSERT_FALSE(inner.Symbols().Get("b").IsValid()); in TEST_F()
50 EXPECT_TRUE(inner.Symbols().Get("a").IsValid()); in TEST_F()
51 EXPECT_EQ(inner.Symbols().Get("a"), outer.Symbols().Get("a")); in TEST_F()
52 EXPECT_TRUE(inner.Symbols().Get("a").IsValid()); in TEST_F()
53 EXPECT_TRUE(outer.Symbols().Get("a").IsValid()); in TEST_F()
54 EXPECT_FALSE(inner.Symbols().Get("b").IsValid()); in TEST_F()
55 EXPECT_FALSE(outer.Symbols().Get("b").IsValid()); in TEST_F()
63 EXPECT_EQ(outer.AST().Functions()[1]->symbol, outer.Symbols().Get("b")); in TEST_F()
64 EXPECT_EQ(inner.Symbols().Get("a"), outer.Symbols().Get("a")); in TEST_F()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
DCore.h134 Symbols.reserve(Names.size());
144 Symbols.reserve(Names.size());
156 Symbols.reserve(Names.size());
165 Symbols.push_back(std::make_pair(std::move(Name), Flags));
168 bool empty() const { return Symbols.empty(); } in empty()
169 UnderlyingVector::size_type size() const { return Symbols.size(); } in size()
170 iterator begin() { return Symbols.begin(); } in begin()
171 iterator end() { return Symbols.end(); } in end()
172 const_iterator begin() const { return Symbols.begin(); } in begin()
173 const_iterator end() const { return Symbols.end(); } in end()
[all …]
DLegacy.h35 virtual SymbolNameSet getResponsibilitySet(const SymbolNameSet &Symbols) = 0;
40 SymbolNameSet Symbols) = 0;
58 SymbolNameSet getResponsibilitySet(const SymbolNameSet &Symbols) final { in getResponsibilitySet() argument
59 return GetResponsibilitySet(Symbols); in getResponsibilitySet()
63 SymbolNameSet Symbols) final { in lookup() argument
64 return Lookup(std::move(Query), std::move(Symbols)); in lookup()
97 Expected<LookupSet> getResponsibilitySet(const LookupSet &Symbols) override;
98 void lookup(const LookupSet &Symbols, OnResolvedFunction OnResolved) override;
117 getResponsibilitySetWithLegacyFn(const SymbolNameSet &Symbols, in getResponsibilitySetWithLegacyFn() argument
121 for (auto &S : Symbols) { in getResponsibilitySetWithLegacyFn()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Orc/
DCore.cpp157 raw_ostream &operator<<(raw_ostream &OS, const SymbolNameSet &Symbols) { in operator <<() argument
158 return OS << printSequence(Symbols, '{', '}', PrintAll<SymbolStringPtr>()); in operator <<()
161 raw_ostream &operator<<(raw_ostream &OS, const SymbolNameVector &Symbols) { in operator <<() argument
162 return OS << printSequence(Symbols, '[', ']', PrintAll<SymbolStringPtr>()); in operator <<()
201 raw_ostream &operator<<(raw_ostream &OS, const SymbolMap &Symbols) { in operator <<() argument
202 return OS << printSequence(Symbols, '{', '}', in operator <<()
310 std::shared_ptr<SymbolDependenceMap> Symbols) in FailedToMaterialize() argument
311 : Symbols(std::move(Symbols)) { in FailedToMaterialize()
312 assert(!this->Symbols->empty() && "Can not fail to resolve an empty set"); in FailedToMaterialize()
320 OS << "Failed to materialize symbols: " << *Symbols; in log()
[all …]
DNullResolver.cpp16 SymbolNameSet NullResolver::getResponsibilitySet(const SymbolNameSet &Symbols) { in getResponsibilitySet() argument
17 return Symbols; in getResponsibilitySet()
22 SymbolNameSet Symbols) { in lookup() argument
23 assert(Symbols.empty() && "Null resolver: Symbols must be empty"); in lookup()
24 return Symbols; in lookup()
/third_party/typescript/tests/baselines/reference/
DsymbolType8.errors.txt1 tests/cases/conformance/es6/Symbols/symbolType8.ts(2,1): error TS2469: The '<' operator cannot be a…
2 tests/cases/conformance/es6/Symbols/symbolType8.ts(3,1): error TS2469: The '<' operator cannot be a…
3 tests/cases/conformance/es6/Symbols/symbolType8.ts(4,1): error TS2469: The '>' operator cannot be a…
4 tests/cases/conformance/es6/Symbols/symbolType8.ts(5,1): error TS2469: The '>' operator cannot be a…
5 tests/cases/conformance/es6/Symbols/symbolType8.ts(6,1): error TS2469: The '<=' operator cannot be …
6 tests/cases/conformance/es6/Symbols/symbolType8.ts(7,1): error TS2469: The '<=' operator cannot be …
7 tests/cases/conformance/es6/Symbols/symbolType8.ts(8,1): error TS2469: The '>=' operator cannot be …
8 tests/cases/conformance/es6/Symbols/symbolType8.ts(9,1): error TS2469: The '>=' operator cannot be …
9 tests/cases/conformance/es6/Symbols/symbolType8.ts(11,6): error TS2469: The '>=' operator cannot be…
10 tests/cases/conformance/es6/Symbols/symbolType8.ts(12,1): error TS2469: The '>=' operator cannot be…
[all …]
DsymbolType12.errors.txt1 tests/cases/conformance/es6/Symbols/symbolType12.ts(3,1): error TS2362: The left-hand side of an ar…
2 tests/cases/conformance/es6/Symbols/symbolType12.ts(3,6): error TS2363: The right-hand side of an a…
3 tests/cases/conformance/es6/Symbols/symbolType12.ts(4,1): error TS2362: The left-hand side of an ar…
4 tests/cases/conformance/es6/Symbols/symbolType12.ts(5,1): error TS2362: The left-hand side of an ar…
5 tests/cases/conformance/es6/Symbols/symbolType12.ts(5,6): error TS2363: The right-hand side of an a…
6 tests/cases/conformance/es6/Symbols/symbolType12.ts(6,1): error TS2362: The left-hand side of an ar…
7 tests/cases/conformance/es6/Symbols/symbolType12.ts(7,1): error TS2362: The left-hand side of an ar…
8 tests/cases/conformance/es6/Symbols/symbolType12.ts(7,6): error TS2363: The right-hand side of an a…
9 tests/cases/conformance/es6/Symbols/symbolType12.ts(8,1): error TS2362: The left-hand side of an ar…
10 tests/cases/conformance/es6/Symbols/symbolType12.ts(9,1): error TS2365: Operator '+=' cannot be app…
[all …]
DsymbolType6.errors.txt1 tests/cases/conformance/es6/Symbols/symbolType6.ts(3,1): error TS2365: Operator '+' cannot be appli…
2 tests/cases/conformance/es6/Symbols/symbolType6.ts(4,1): error TS2362: The left-hand side of an ari…
3 tests/cases/conformance/es6/Symbols/symbolType6.ts(4,5): error TS2363: The right-hand side of an ar…
4 tests/cases/conformance/es6/Symbols/symbolType6.ts(5,1): error TS2469: The '+' operator cannot be a…
5 tests/cases/conformance/es6/Symbols/symbolType6.ts(6,1): error TS2469: The '+' operator cannot be a…
6 tests/cases/conformance/es6/Symbols/symbolType6.ts(7,1): error TS2365: Operator '+' cannot be appli…
7 tests/cases/conformance/es6/Symbols/symbolType6.ts(8,6): error TS2469: The '+' operator cannot be a…
8 tests/cases/conformance/es6/Symbols/symbolType6.ts(9,5): error TS2469: The '+' operator cannot be a…
9 tests/cases/conformance/es6/Symbols/symbolType6.ts(10,1): error TS2365: Operator '+' cannot be appl…
10 tests/cases/conformance/es6/Symbols/symbolType6.ts(11,1): error TS2362: The left-hand side of an ar…
[all …]
DparserSymbolIndexer5.errors.txt1 tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolIndexer5.ts(2,6): error TS2304: Cann…
2 tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolIndexer5.ts(2,7): error TS1005: ']' …
3 tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolIndexer5.ts(2,9): error TS2552: Cann…
4 tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolIndexer5.ts(2,15): error TS1005: ','…
5 tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolIndexer5.ts(2,16): error TS1136: Pro…
6 tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolIndexer5.ts(3,1): error TS1005: ':' …
9 ==== tests/cases/conformance/parser/ecmascript6/Symbols/parserSymbolIndexer5.ts (6 errors) ====
DsymbolType3.errors.txt1 tests/cases/conformance/es6/Symbols/symbolType3.ts(2,8): error TS2704: The operand of a 'delete' op…
2 tests/cases/conformance/es6/Symbols/symbolType3.ts(5,3): error TS2356: An arithmetic operand must b…
3 tests/cases/conformance/es6/Symbols/symbolType3.ts(6,3): error TS2356: An arithmetic operand must b…
4 tests/cases/conformance/es6/Symbols/symbolType3.ts(7,3): error TS2469: The '+' operator cannot be a…
5 tests/cases/conformance/es6/Symbols/symbolType3.ts(8,3): error TS2469: The '-' operator cannot be a…
6 tests/cases/conformance/es6/Symbols/symbolType3.ts(9,3): error TS2469: The '~' operator cannot be a…
7 tests/cases/conformance/es6/Symbols/symbolType3.ts(12,2): error TS2469: The '+' operator cannot be …
10 ==== tests/cases/conformance/es6/Symbols/symbolType3.ts (7 errors) ====
DsymbolType7.errors.txt1 tests/cases/conformance/es6/Symbols/symbolType7.ts(2,1): error TS2362: The left-hand side of an ari…
2 tests/cases/conformance/es6/Symbols/symbolType7.ts(2,6): error TS2363: The right-hand side of an ar…
3 tests/cases/conformance/es6/Symbols/symbolType7.ts(3,1): error TS2362: The left-hand side of an ari…
4 tests/cases/conformance/es6/Symbols/symbolType7.ts(4,1): error TS2362: The left-hand side of an ari…
5 tests/cases/conformance/es6/Symbols/symbolType7.ts(4,6): error TS2363: The right-hand side of an ar…
6 tests/cases/conformance/es6/Symbols/symbolType7.ts(5,1): error TS2362: The left-hand side of an ari…
7 tests/cases/conformance/es6/Symbols/symbolType7.ts(6,1): error TS2362: The left-hand side of an ari…
8 tests/cases/conformance/es6/Symbols/symbolType7.ts(6,7): error TS2363: The right-hand side of an ar…
9 tests/cases/conformance/es6/Symbols/symbolType7.ts(7,1): error TS2362: The left-hand side of an ari…
12 ==== tests/cases/conformance/es6/Symbols/symbolType7.ts (9 errors) ====
DsymbolProperty39.errors.txt1 tests/cases/conformance/es6/Symbols/symbolProperty39.ts(2,5): error TS2393: Duplicate function impl…
2 tests/cases/conformance/es6/Symbols/symbolProperty39.ts(3,5): error TS2393: Duplicate function impl…
3 tests/cases/conformance/es6/Symbols/symbolProperty39.ts(4,5): error TS2393: Duplicate function impl…
4 tests/cases/conformance/es6/Symbols/symbolProperty39.ts(7,5): error TS2393: Duplicate function impl…
7 ==== tests/cases/conformance/es6/Symbols/symbolProperty39.ts (4 errors) ====
DsymbolType5.errors.txt1 tests/cases/conformance/es6/Symbols/symbolType5.ts(2,1): error TS2362: The left-hand side of an ari…
2 tests/cases/conformance/es6/Symbols/symbolType5.ts(2,5): error TS2363: The right-hand side of an ar…
3 tests/cases/conformance/es6/Symbols/symbolType5.ts(3,1): error TS2362: The left-hand side of an ari…
4 tests/cases/conformance/es6/Symbols/symbolType5.ts(3,5): error TS2363: The right-hand side of an ar…
5 tests/cases/conformance/es6/Symbols/symbolType5.ts(4,1): error TS2362: The left-hand side of an ari…
6 tests/cases/conformance/es6/Symbols/symbolType5.ts(4,5): error TS2363: The right-hand side of an ar…
7 tests/cases/conformance/es6/Symbols/symbolType5.ts(6,1): error TS2362: The left-hand side of an ari…
8 tests/cases/conformance/es6/Symbols/symbolType5.ts(7,5): error TS2363: The right-hand side of an ar…
11 ==== tests/cases/conformance/es6/Symbols/symbolType5.ts (8 errors) ====
DsymbolType10.errors.txt1 tests/cases/conformance/es6/Symbols/symbolType10.ts(2,1): error TS2362: The left-hand side of an ar…
2 tests/cases/conformance/es6/Symbols/symbolType10.ts(2,5): error TS2363: The right-hand side of an a…
3 tests/cases/conformance/es6/Symbols/symbolType10.ts(3,1): error TS2362: The left-hand side of an ar…
4 tests/cases/conformance/es6/Symbols/symbolType10.ts(3,5): error TS2363: The right-hand side of an a…
5 tests/cases/conformance/es6/Symbols/symbolType10.ts(4,1): error TS2362: The left-hand side of an ar…
6 tests/cases/conformance/es6/Symbols/symbolType10.ts(4,5): error TS2363: The right-hand side of an a…
7 tests/cases/conformance/es6/Symbols/symbolType10.ts(6,1): error TS2362: The left-hand side of an ar…
8 tests/cases/conformance/es6/Symbols/symbolType10.ts(7,5): error TS2363: The right-hand side of an a…
11 ==== tests/cases/conformance/es6/Symbols/symbolType10.ts (8 errors) ====
DsymbolProperty52.errors.txt1 tests/cases/conformance/es6/Symbols/symbolProperty52.ts(2,13): error TS2339: Property 'nonsense' do…
2 tests/cases/conformance/es6/Symbols/symbolProperty52.ts(5,1): error TS2741: Property '[Symbol.nonse…
3 tests/cases/conformance/es6/Symbols/symbolProperty52.ts(7,12): error TS2339: Property 'nonsense' do…
6 ==== tests/cases/conformance/es6/Symbols/symbolProperty52.ts (3 errors) ====
16 !!! related TS2728 tests/cases/conformance/es6/Symbols/symbolProperty52.ts:2:5: '[Symbol.nonsense]'…
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DTapiFile.cpp50 Symbols.emplace_back(StringRef(), Symbol->getName(), getFlags(Symbol)); in TapiFile()
55 Symbols.emplace_back(ObjC1ClassNamePrefix, Symbol->getName(), in TapiFile()
58 Symbols.emplace_back(ObjC2ClassNamePrefix, Symbol->getName(), in TapiFile()
60 Symbols.emplace_back(ObjC2MetaClassNamePrefix, Symbol->getName(), in TapiFile()
65 Symbols.emplace_back(ObjC2EHTypePrefix, Symbol->getName(), in TapiFile()
69 Symbols.emplace_back(ObjC2IVarPrefix, Symbol->getName(), in TapiFile()
96 DRI.p = reinterpret_cast<uintptr_t>(&*Symbols.begin()); in symbol_begin()
102 DRI.p = reinterpret_cast<uintptr_t>(&*Symbols.end()); in symbol_end()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMachineModuleInfo.cpp67 TinyPtrVector<MCSymbol *> Symbols; member
110 if (!Entry.Symbols.empty()) { in getAddrLabelSymbolToEmit()
112 return Entry.Symbols; in getAddrLabelSymbolToEmit()
131 Entry.Symbols.push_back(Sym); in getAddrLabelSymbolToEmit()
132 return Entry.Symbols; in getAddrLabelSymbolToEmit()
155 assert(!Entry.Symbols.empty() && "Didn't have a symbol, why a callback?"); in UpdateForDeletedBlock()
161 for (MCSymbol *Sym : Entry.Symbols) { in UpdateForDeletedBlock()
177 assert(!OldEntry.Symbols.empty() && "Didn't have a symbol, why a callback?"); in UpdateForRAUWBlock()
182 if (NewEntry.Symbols.empty()) { in UpdateForRAUWBlock()
191 NewEntry.Symbols.insert(NewEntry.Symbols.end(), OldEntry.Symbols.begin(), in UpdateForRAUWBlock()
[all …]
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
Dparser_impl_struct_decl_test.cc39 ASSERT_EQ(s->name, p->builder().Symbols().Register("S")); in TEST_F()
41 EXPECT_EQ(s->members[0]->symbol, p->builder().Symbols().Register("a")); in TEST_F()
42 EXPECT_EQ(s->members[1]->symbol, p->builder().Symbols().Register("b")); in TEST_F()
61 ASSERT_EQ(s->name, p->builder().Symbols().Register("B")); in TEST_F()
63 EXPECT_EQ(s->members[0]->symbol, p->builder().Symbols().Register("a")); in TEST_F()
64 EXPECT_EQ(s->members[1]->symbol, p->builder().Symbols().Register("b")); in TEST_F()
86 ASSERT_EQ(s->name, p->builder().Symbols().Register("S")); in TEST_F()
88 EXPECT_EQ(s->members[0]->symbol, p->builder().Symbols().Register("a")); in TEST_F()
89 EXPECT_EQ(s->members[1]->symbol, p->builder().Symbols().Register("b")); in TEST_F()
Dparser_impl_global_decl_test.cc37 EXPECT_EQ(v->symbol, program.Symbols().Get("a")); in TEST_F()
63 EXPECT_EQ(v->symbol, program.Symbols().Get("a")); in TEST_F()
88 EXPECT_EQ(program.Symbols().NameFor( in TEST_F()
106 EXPECT_EQ(str->name, program.Symbols().Get("A")); in TEST_F()
110 EXPECT_EQ(alias->name, program.Symbols().Get("B")); in TEST_F()
130 EXPECT_EQ(program.Symbols().NameFor(program.AST().Functions()[0]->symbol), in TEST_F()
141 EXPECT_EQ(program.Symbols().NameFor(program.AST().Functions()[0]->symbol), in TEST_F()
165 EXPECT_EQ(str->name, program.Symbols().Get("A")); in TEST_F()
183 EXPECT_EQ(str->name, program.Symbols().Get("A")); in TEST_F()
210 EXPECT_EQ(str->name, program.Symbols().Get("A")); in TEST_F()
/third_party/skia/third_party/externals/tint/src/transform/
Drenamer.cc1302 auto name_in = ctx.src->Symbols().NameFor(sym_in); in Run()
1315 return ctx.dst->Symbols().New(name_in); in Run()
1325 return ctx.dst->Symbols().New(name_in); in Run()
1335 return ctx.dst->Symbols().New(name_in); in Run()
1341 remappings.emplace(name_in, ctx.dst->Symbols().NameFor(sym_out)); in Run()
1349 auto str = in->Symbols().NameFor(sym_in); in Run()
1350 auto sym_out = out.Symbols().Register(str); in Run()
Dcanonicalize_entry_point_io.cc180 auto symbol = ctx.dst->Symbols().New(name); in AddInput()
196 ? ctx.dst->Symbols().Register(name) in AddInput()
197 : ctx.dst->Symbols().New(name); in AddInput()
204 ? ctx.dst->Symbols().Register(name) in AddInput()
205 : ctx.dst->Symbols().New(name); in AddInput()
258 auto name = ctx.src->Symbols().NameFor(param->Declaration()->symbol); in ProcessNonStructParameter()
281 auto name = ctx.src->Symbols().NameFor(member_ast->symbol); in ProcessStructParameter()
307 auto name = ctx.src->Symbols().NameFor(member_ast->symbol); in ProcessReturnType()
374 auto wrapper_result = ctx.dst->Symbols().New("wrapper_result"); in CreateOutputStruct()
382 name = ctx.dst->Symbols().New(outval.name); in CreateOutputStruct()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DIRSymtab.h144 Range<Symbol> Symbols; member
236 ArrayRef<storage::Symbol> Symbols; variable
257 Symbols = range(header().Symbols); in Reader()
348 return {SymbolRef(Symbols.begin(), Symbols.end(), Uncommons.begin(), this), in symbols()
349 SymbolRef(Symbols.end(), Symbols.end(), nullptr, this)}; in symbols()
354 const storage::Symbol *MBegin = Symbols.begin() + M.Begin, in module_symbols()
355 *MEnd = Symbols.begin() + M.End; in module_symbols()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/
DCVSymbolVisitor.cpp66 Error CVSymbolVisitor::visitSymbolStream(const CVSymbolArray &Symbols) { in visitSymbolStream() argument
67 for (auto I : Symbols) { in visitSymbolStream()
74 Error CVSymbolVisitor::visitSymbolStream(const CVSymbolArray &Symbols, in visitSymbolStream() argument
76 for (auto I : Symbols) { in visitSymbolStream()
77 if (auto EC = visitSymbolRecord(I, InitialOffset + Symbols.skew())) in visitSymbolStream()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TextAPI/ELF/
DELFStub.cpp19 Symbols = Stub.Symbols; in ELFStub()
27 Symbols = std::move(Stub.Symbols); in ELFStub()

12345678910>>...25