/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
D | ImmutableMap.h | 73 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 …]
|
D | ImmutableSet.h | 660 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/ |
D | moduleAugmentationDoesNamespaceEnumMergeOfReexport.types | 2 export namespace Root { 20 export enum Root { 21 >Root : Root 24 >A : Root 27 >B : Root 30 >C : Root 34 declare const f: ns.Root.Foo; 35 >f : ns.Root.Foo 37 >Root : any 39 const g: ns.Root = ns.Root.A; [all …]
|
D | moduleAugmentationDoesNamespaceEnumMergeOfReexport.symbols | 2 export namespace Root { 3 >Root : Symbol(Root, Decl(file.ts, 0, 0), Decl(augment.ts, 2, 29)) 24 export enum Root { 25 >Root : Symbol(Root, Decl(file.ts, 0, 0), Decl(augment.ts, 2, 29)) 28 >A : Symbol(Root.A, Decl(augment.ts, 4, 22)) 31 >B : Symbol(Root.B, Decl(augment.ts, 5, 10)) 34 >C : Symbol(Root.C, Decl(augment.ts, 6, 10)) 38 declare const f: ns.Root.Foo; 41 >Root : Symbol(ns.Root, Decl(file.ts, 0, 0), Decl(augment.ts, 2, 29)) 42 >Foo : Symbol(ns.Root.Foo, Decl(file.ts, 0, 23)) [all …]
|
D | moduleAugmentationDoesNamespaceMergeOfReexport.types | 2 export namespace Root { 18 export namespace Root { 26 declare const f: ns.Root.Foo; 27 >f : ns.Root.Foo 29 >Root : any 33 >f : ns.Root.Foo 37 >f.self : ns.Root.Foo 38 >f : ns.Root.Foo 39 >self : ns.Root.Foo 43 >f.self : ns.Root.Foo [all …]
|
D | moduleAugmentationDoesNamespaceMergeOfReexport.symbols | 2 export namespace Root { 3 >Root : Symbol(Root, Decl(file.ts, 0, 0), Decl(augment.ts, 2, 29)) 22 export namespace Root { 23 >Root : Symbol(Root, Decl(file.ts, 0, 0), Decl(augment.ts, 2, 29)) 35 declare const f: ns.Root.Foo; 38 >Root : Symbol(ns.Root, Decl(file.ts, 0, 0), Decl(augment.ts, 2, 29)) 39 >Foo : Symbol(ns.Root.Foo, Decl(file.ts, 0, 23), Decl(augment.ts, 3, 27)) 42 >f.x : Symbol(ns.Root.Foo.x, Decl(file.ts, 1, 26)) 44 >x : Symbol(ns.Root.Foo.x, Decl(file.ts, 1, 26)) 47 >f.self : Symbol(ns.Root.Foo.self, Decl(augment.ts, 4, 30)) [all …]
|
D | TwoInternalModulesWithTheSameNameAndDifferentCommonRoot.symbols | 2 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 …]
|
D | TwoInternalModulesWithTheSameNameAndDifferentCommonRoot.types | 2 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
|
D | TwoInternalModulesWithTheSameNameAndDifferentCommonRoot.js | 4 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 = {}));
|
D | moduleAugmentationDoesNamespaceEnumMergeOfReexport.js | 4 export namespace Root { 17 export enum Root { 24 declare const f: ns.Root.Foo; 25 const g: ns.Root = ns.Root.A; 55 var g = ns.Root.A;
|
/third_party/node/doc/contributing/maintaining/ |
D | maintaining-root-certs.md | 13 Root certificates should be updated sometime after Mozilla makes an NSS release, 84 < Parsing: Visa eCommerce Root 88 < Parsing: Certplus Root CA G1 89 < Parsing: Certplus Root CA G2 90 < Parsing: OpenTrust Root CA G1 91 < Parsing: OpenTrust Root CA G2 92 < Parsing: OpenTrust Root CA G3 96 > Parsing: GlobalSign Root CA - R6 97 > Parsing: OISTE WISeKey Global Root GC CA 98 > Parsing: GTS Root R1 [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/tools/ |
D | spirv_test_framework_unittest.py | 22 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/ |
D | spirv_test_framework_unittest.py | 22 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/ |
D | spirv_test_framework_unittest.py | 22 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/ |
D | NVPTXPeephole.cpp | 73 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/ |
D | AMDGPUInstructionSelector.h | 126 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/ |
D | danetest.in | 38 # 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/node/tools/ |
D | certdata.txt | 75 # 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/ |
D | moduleAugmentationDoesNamespaceEnumMergeOfReexport.ts | 2 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/node/deps/npm/node_modules/postcss-selector-parser/dist/selectors/ |
D | root.js | 12 var Root = /*#__PURE__*/function (_Container) { class 13 _inheritsLoose(Root, _Container); 14 function Root(opts) { class in Root 20 var _proto = Root.prototype; 35 _createClass(Root, [{ 41 return Root; 43 exports["default"] = Root;
|
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/tools/ |
D | gen-grammar.go | 90 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/ |
D | gen-grammar.go | 90 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/spirv-tools/utils/vscode/src/tools/ |
D | gen-grammar.go | 90 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/ |
D | AArch64InstrInfo.cpp | 3738 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 …]
|
/third_party/node/deps/npm/node_modules/@tufjs/models/dist/ |
D | root.js | 6 exports.Root = void 0; 19 class Root extends base_1.Signed { class 22 this.type = base_1.MetadataKind.Root; 49 if (!(other instanceof Root)) { 75 return new Root({ 84 exports.Root = Root;
|