Home
last modified time | relevance | path

Searched refs:Root (Results 1 – 25 of 309) sorted by relevance

12345678910>>...13

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DImmutableMap.h73 TreeTy* Root;
80 explicit ImmutableMap(const TreeTy* R) : Root(const_cast<TreeTy*>(R)) { in ImmutableMap()
81 if (Root) { Root->retain(); } in ImmutableMap()
84 ImmutableMap(const ImmutableMap &X) : Root(X.Root) { in ImmutableMap()
85 if (Root) { Root->retain(); } in ImmutableMap()
89 if (Root) { Root->release(); } in ~ImmutableMap()
93 if (Root != X.Root) {
94 if (X.Root) { X.Root->retain(); }
95 if (Root) { Root->release(); }
96 Root = X.Root;
[all …]
DImmutableSet.h660 ImutAVLTreeGenericIterator(const TreeTy *Root) { in ImutAVLTreeGenericIterator() argument
661 if (Root) stack.push_back(reinterpret_cast<uintptr_t>(Root)); in ImutAVLTreeGenericIterator()
769 ImutAVLTreeInOrderIterator(const TreeTy* Root) : InternalItr(Root) { in ImutAVLTreeInOrderIterator() argument
770 if (Root) in ImutAVLTreeInOrderIterator()
964 TreeTy *Root;
971 explicit ImmutableSet(TreeTy* R) : Root(R) {
972 if (Root) { Root->retain(); }
975 ImmutableSet(const ImmutableSet &X) : Root(X.Root) {
976 if (Root) { Root->retain(); }
980 if (Root) { Root->release(); }
[all …]
/third_party/typescript/tests/baselines/reference/
DmoduleAugmentationDoesNamespaceEnumMergeOfReexport.types2 export namespace Root {
19 export enum Root {
20 >Root : Root
23 >A : Root
26 >B : Root
29 >C : Root
33 declare const f: ns.Root.Foo;
34 >f : ns.Root.Foo
36 >Root : any
38 const g: ns.Root = ns.Root.A;
[all …]
DmoduleAugmentationDoesNamespaceEnumMergeOfReexport.symbols2 export namespace Root {
3 >Root : Symbol(Root, Decl(file.ts, 0, 0), Decl(augment.ts, 2, 29))
23 export enum Root {
24 >Root : Symbol(Root, Decl(file.ts, 0, 0), Decl(augment.ts, 2, 29))
27 >A : Symbol(Root.A, Decl(augment.ts, 4, 22))
30 >B : Symbol(Root.B, Decl(augment.ts, 5, 10))
33 >C : Symbol(Root.C, Decl(augment.ts, 6, 10))
37 declare const f: ns.Root.Foo;
40 >Root : Symbol(ns.Root, Decl(file.ts, 0, 0), Decl(augment.ts, 2, 29))
41 >Foo : Symbol(ns.Root.Foo, Decl(file.ts, 0, 23))
[all …]
DmoduleAugmentationDoesNamespaceMergeOfReexport.types2 export namespace Root {
17 export namespace Root {
25 declare const f: ns.Root.Foo;
26 >f : ns.Root.Foo
28 >Root : any
32 >f : ns.Root.Foo
36 >f.self : ns.Root.Foo
37 >f : ns.Root.Foo
38 >self : ns.Root.Foo
42 >f.self : ns.Root.Foo
[all …]
DmoduleAugmentationDoesNamespaceMergeOfReexport.symbols2 export namespace Root {
3 >Root : Symbol(Root, Decl(file.ts, 0, 0), Decl(augment.ts, 2, 29))
21 export namespace Root {
22 >Root : Symbol(Root, Decl(file.ts, 0, 0), Decl(augment.ts, 2, 29))
34 declare const f: ns.Root.Foo;
37 >Root : Symbol(ns.Root, Decl(file.ts, 0, 0), Decl(augment.ts, 2, 29))
38 >Foo : Symbol(ns.Root.Foo, Decl(file.ts, 0, 23), Decl(augment.ts, 3, 27))
41 >f.x : Symbol(ns.Root.Foo.x, Decl(file.ts, 1, 26))
43 >x : Symbol(ns.Root.Foo.x, Decl(file.ts, 1, 26))
46 >f.self : Symbol(ns.Root.Foo.self, Decl(augment.ts, 4, 30))
[all …]
DTwoInternalModulesWithTheSameNameAndDifferentCommonRoot.symbols2 module Root {
3 >Root : Symbol(Root, Decl(part1.ts, 0, 0))
50 export var Origin: Root.A.Point = { x: 0, y: 0 };
52 >Root : Symbol(Root, Decl(part1.ts, 0, 0))
53 >A : Symbol(Root.A, Decl(part1.ts, 0, 13))
54 >Point : Symbol(Root.A.Point, Decl(part1.ts, 1, 21))
64 constructor(public tl: Root.A.Point, public br: Root.A.Point) { }
66 >Root : Symbol(Root, Decl(part1.ts, 0, 0))
67 >A : Symbol(Root.A, Decl(part1.ts, 0, 13))
68 >Point : Symbol(Root.A.Point, Decl(part1.ts, 1, 21))
[all …]
DTwoInternalModulesWithTheSameNameAndDifferentCommonRoot.types2 module Root {
3 >Root : typeof Root
46 export var Origin: Root.A.Point = { x: 0, y: 0 };
47 >Origin : Root.A.Point
48 >Root : any
62 constructor(public tl: Root.A.Point, public br: Root.A.Point) { }
63 >tl : Root.A.Point
64 >Root : any
66 >br : Root.A.Point
67 >Root : any
DTwoInternalModulesWithTheSameNameAndDifferentCommonRoot.js4 module Root {
23 export var Origin: Root.A.Point = { x: 0, y: 0 };
27 constructor(public tl: Root.A.Point, public br: Root.A.Point) { }
34 var Root; variable
35 (function (Root) { argument
45 })(A = Root.A || (Root.A = {}));
46 })(Root || (Root = {}));
DmoduleAugmentationDoesNamespaceEnumMergeOfReexport.js4 export namespace Root {
17 export enum Root {
24 declare const f: ns.Root.Foo;
25 const g: ns.Root = ns.Root.A;
51 var g = ns.Root.A;
/third_party/node/doc/guides/
Dmaintaining-root-certs.md13 Root certificates should be updated sometime after Mozilla makes an NSS release,
71 < Parsing: Visa eCommerce Root
75 < Parsing: Certplus Root CA G1
76 < Parsing: Certplus Root CA G2
77 < Parsing: OpenTrust Root CA G1
78 < Parsing: OpenTrust Root CA G2
79 < Parsing: OpenTrust Root CA G3
83 > Parsing: GlobalSign Root CA - R6
84 > Parsing: OISTE WISeKey Global Root GC CA
85 > Parsing: GTS Root R1
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/tools/
Dspirv_test_framework_unittest.py22 class Root: class
28 class A(Root):
34 class B(Root):
40 class C(Root):
46 class D(Root):
52 class E(Root):
108 self.assertEqual(get_all_superclasses(A), [Root])
109 self.assertEqual(get_all_superclasses(B), [Root])
110 self.assertEqual(get_all_superclasses(C), [Root])
111 self.assertEqual(get_all_superclasses(D), [Root])
[all …]
/third_party/spirv-tools/test/tools/
Dspirv_test_framework_unittest.py22 class Root: class
28 class A(Root):
34 class B(Root):
40 class C(Root):
46 class D(Root):
52 class E(Root):
108 self.assertEqual(get_all_superclasses(A), [Root])
109 self.assertEqual(get_all_superclasses(B), [Root])
110 self.assertEqual(get_all_superclasses(C), [Root])
111 self.assertEqual(get_all_superclasses(D), [Root])
[all …]
/third_party/skia/third_party/externals/spirv-tools/test/tools/
Dspirv_test_framework_unittest.py22 class Root: class
28 class A(Root):
34 class B(Root):
40 class C(Root):
46 class D(Root):
52 class E(Root):
108 self.assertEqual(get_all_superclasses(A), [Root])
109 self.assertEqual(get_all_superclasses(B), [Root])
110 self.assertEqual(get_all_superclasses(C), [Root])
111 self.assertEqual(get_all_superclasses(D), [Root])
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/
DNVPTXPeephole.cpp73 static bool isCVTAToLocalCombinationCandidate(MachineInstr &Root) { in isCVTAToLocalCombinationCandidate() argument
74 auto &MBB = *Root.getParent(); in isCVTAToLocalCombinationCandidate()
77 if (Root.getOpcode() != NVPTX::cvta_to_local_yes_64 && in isCVTAToLocalCombinationCandidate()
78 Root.getOpcode() != NVPTX::cvta_to_local_yes) in isCVTAToLocalCombinationCandidate()
81 auto &Op = Root.getOperand(1); in isCVTAToLocalCombinationCandidate()
104 static void CombineCVTAToLocal(MachineInstr &Root) { in CombineCVTAToLocal() argument
105 auto &MBB = *Root.getParent(); in CombineCVTAToLocal()
109 auto &Prev = *MRI.getUniqueVRegDef(Root.getOperand(1).getReg()); in CombineCVTAToLocal()
112 BuildMI(MF, Root.getDebugLoc(), TII->get(Prev.getOpcode()), in CombineCVTAToLocal()
113 Root.getOperand(0).getReg()) in CombineCVTAToLocal()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUInstructionSelector.h126 selectVCSRC(MachineOperand &Root) const;
129 selectVSRC0(MachineOperand &Root) const;
132 selectVOP3Mods0(MachineOperand &Root) const;
134 selectVOP3OMods(MachineOperand &Root) const;
136 selectVOP3Mods(MachineOperand &Root) const;
138 selectVOP3Mods_nnan(MachineOperand &Root) const;
141 selectVOP3OpSelMods0(MachineOperand &Root) const;
143 selectVOP3OpSelMods(MachineOperand &Root) const;
146 selectSmrdImm(MachineOperand &Root) const;
148 selectSmrdImm32(MachineOperand &Root) const;
[all …]
/third_party/openssl/test/
Ddanetest.in38 # subject= CN = Root CA
192 issuer= /CN=Root CA
205 subject= /CN=Root CA
206 issuer= /CN=Root CA
239 issuer= /CN=Root CA
252 subject= /CN=Root CA
253 issuer= /CN=Root CA
286 issuer= /CN=Root CA
299 subject= /CN=Root CA
300 issuer= /CN=Root CA
[all …]
/third_party/flatbuffers/tests/evolution_test/
Devolution_v1_generated.h20 struct Root;
232 struct Root FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
322 template<> inline const Evolution::V1::TableA *Root::c_as<Evolution::V1::TableA>() const {
326 template<> inline const Evolution::V1::TableB *Root::c_as<Evolution::V1::TableB>() const {
330 template<> inline const Evolution::V1::TableA *Root::j_as<Evolution::V1::TableA>() const {
334 template<> inline const Evolution::V1::TableB *Root::j_as<Evolution::V1::TableB>() const {
339 typedef Root Table;
343 fbb_.AddElement<int32_t>(Root::VT_A, a, 0);
346 fbb_.AddElement<uint8_t>(Root::VT_B, static_cast<uint8_t>(b), 0);
349 fbb_.AddElement<uint8_t>(Root::VT_C_TYPE, static_cast<uint8_t>(c_type), 0);
[all …]
Devolution_v2_generated.h23 struct Root;
335 struct Root FLATBUFFERS_FINAL_CLASS : private flatbuffers::Table {
416 template<> inline const Evolution::V2::TableA *Root::c_as<Evolution::V2::TableA>() const {
420 template<> inline const Evolution::V2::TableB *Root::c_as<Evolution::V2::TableB>() const {
424 template<> inline const Evolution::V2::TableC *Root::c_as<Evolution::V2::TableC>() const {
429 typedef Root Table;
433 fbb_.AddElement<uint8_t>(Root::VT_B, static_cast<uint8_t>(b), 0);
436 fbb_.AddElement<uint8_t>(Root::VT_C_TYPE, static_cast<uint8_t>(c_type), 0);
439 fbb_.AddOffset(Root::VT_C, c);
442 fbb_.AddElement<int8_t>(Root::VT_D, static_cast<int8_t>(d), 0);
[all …]
/third_party/node/tools/
Dcertdata.txt75 # Certificate "GlobalSign Root CA"
77 # Issuer: CN=GlobalSign Root CA,OU=Root CA,O=GlobalSign nv-sa,C=BE
79 # Subject: CN=GlobalSign Root CA,OU=Root CA,O=GlobalSign nv-sa,C=BE
88 CKA_LABEL UTF8 "GlobalSign Root CA"
172 # Trust for "GlobalSign Root CA"
173 # Issuer: CN=GlobalSign Root CA,OU=Root CA,O=GlobalSign nv-sa,C=BE
175 # Subject: CN=GlobalSign Root CA,OU=Root CA,O=GlobalSign nv-sa,C=BE
184 CKA_LABEL UTF8 "GlobalSign Root CA"
712 # Certificate "Baltimore CyberTrust Root"
714 # Issuer: CN=Baltimore CyberTrust Root,OU=CyberTrust,O=Baltimore,C=IE
[all …]
/third_party/typescript/tests/cases/compiler/
DmoduleAugmentationDoesNamespaceEnumMergeOfReexport.ts2 export namespace Root { namespace
15 export enum Root { enum
22 declare const f: ns.Root.Foo;
23 const g: ns.Root = ns.Root.A;
/third_party/spirv-tools/utils/vscode/src/tools/
Dgen-grammar.go90 grammar.Root
95 SPIRV grammar.Root
97 All grammar.Root // Combination of SPIRV + Extensions
111 args.Extensions = append(args.Extensions, extension{Root: root, Name: ext.name})
148 for _, inst := range ext.Root.Instructions {
184 func parseGrammar(def grammarDefinition) (grammar.Root, error) {
187 return grammar.Root{}, errors.Wrap(err, "Failed to load grammar file")
190 g := grammar.Root{}
192 return grammar.Root{}, errors.Wrap(err, "Failed to parse grammar file")
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/tools/
Dgen-grammar.go90 grammar.Root
95 SPIRV grammar.Root
97 All grammar.Root // Combination of SPIRV + Extensions
111 args.Extensions = append(args.Extensions, extension{Root: root, Name: ext.name})
148 for _, inst := range ext.Root.Instructions {
184 func parseGrammar(def grammarDefinition) (grammar.Root, error) {
187 return grammar.Root{}, errors.Wrap(err, "Failed to load grammar file")
190 g := grammar.Root{}
192 return grammar.Root{}, errors.Wrap(err, "Failed to parse grammar file")
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/tools/
Dgen-grammar.go90 grammar.Root
95 SPIRV grammar.Root
97 All grammar.Root // Combination of SPIRV + Extensions
111 args.Extensions = append(args.Extensions, extension{Root: root, Name: ext.name})
148 for _, inst := range ext.Root.Instructions {
184 func parseGrammar(def grammarDefinition) (grammar.Root, error) {
187 return grammar.Root{}, errors.Wrap(err, "Failed to load grammar file")
190 g := grammar.Root{}
192 return grammar.Root{}, errors.Wrap(err, "Failed to parse grammar file")
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64InstrInfo.cpp3738 static bool getMaddPatterns(MachineInstr &Root, in getMaddPatterns() argument
3740 unsigned Opc = Root.getOpcode(); in getMaddPatterns()
3741 MachineBasicBlock &MBB = *Root.getParent(); in getMaddPatterns()
3747 int Cmp_NZCV = Root.findRegisterDefOperandIdx(AArch64::NZCV, true); in getMaddPatterns()
3751 unsigned NewOpc = convertToNonFlagSettingOpc(Root); in getMaddPatterns()
3761 if (canCombineWithMUL(MBB, Root.getOperand(Operand), Opcode, ZeroReg)) { in getMaddPatterns()
3768 if (canCombine(MBB, Root.getOperand(Operand), Opcode)) { in getMaddPatterns()
3780 assert(Root.getOperand(1).isReg() && Root.getOperand(2).isReg() && in getMaddPatterns()
3879 static bool getFMAPatterns(MachineInstr &Root, in getFMAPatterns() argument
3882 if (!isCombineInstrCandidateFP(Root)) in getFMAPatterns()
[all …]

12345678910>>...13