/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/model/ |
D | CommentsSchemaTest.java | 29 import com.google.i18n.phonenumbers.metadata.model.NumberingScheme.Comment.Anchor; 47 private static final Anchor US_TOP = Comment.anchor(REGION_US); 48 private static final Anchor US_FIXED_LINE = anchor(REGION_US, XML_FIXED_LINE); 49 private static final Anchor US_MOBILE = anchor(REGION_US, XML_MOBILE); 50 private static final Anchor US_SHORTCODE = Comment.shortcodeAnchor(REGION_US); 51 private static final Anchor CA_FIXED_LINE = anchor(REGION_CA, XML_FIXED_LINE); 141 private Comment comment(Anchor a, String... lines) { in comment()
|
/third_party/rust/crates/regex/regex-syntax/src/hir/ |
D | print.rs | 123 HirKind::Anchor(hir::Anchor::StartLine) => { in visit_pre() 126 HirKind::Anchor(hir::Anchor::EndLine) => { in visit_pre() 129 HirKind::Anchor(hir::Anchor::StartText) => { in visit_pre() 132 HirKind::Anchor(hir::Anchor::EndText) => { in visit_pre() 168 | HirKind::Anchor(_) in visit_post()
|
D | mod.rs | 195 Anchor(Anchor), enumerator 292 pub fn anchor(anchor: Anchor) -> Hir { in anchor() 305 if let Anchor::StartText = anchor { in anchor() 310 if let Anchor::EndText = anchor { in anchor() 315 if let Anchor::StartLine = anchor { in anchor() 318 if let Anchor::EndLine = anchor { in anchor() 321 Hir { kind: HirKind::Anchor(anchor), info } in anchor() 717 | HirKind::Anchor(_) in has_subexprs() 1285 pub enum Anchor { enum 1442 | HirKind::Anchor(_) in drop() [all …]
|
D | translate.rs | 731 hir::Anchor::StartLine in hir_assertion() 733 hir::Anchor::StartText in hir_assertion() 736 hir::Anchor::EndLine in hir_assertion() 738 hir::Anchor::EndText in hir_assertion() 741 Hir::anchor(hir::Anchor::StartText) in hir_assertion() 743 ast::AssertionKind::EndText => Hir::anchor(hir::Anchor::EndText), in hir_assertion() 1366 fn hir_anchor(anchor: hir::Anchor) -> Hir { in hir_anchor() 1565 assert_eq!(t("^"), hir_anchor(hir::Anchor::StartText)); in assertions() 1566 assert_eq!(t("$"), hir_anchor(hir::Anchor::EndText)); in assertions() 1567 assert_eq!(t(r"\A"), hir_anchor(hir::Anchor::StartText)); in assertions() [all …]
|
/third_party/skia/third_party/externals/harfbuzz/src/ |
D | hb-aat-layout-ankr-table.hh | 42 struct Anchor struct 57 typedef Array32Of<Anchor> GlyphAnchors; 63 const Anchor &get_anchor (hb_codepoint_t glyph_id, in get_anchor() 69 return Null (Anchor); in get_anchor()
|
D | hb-ot-layout-gpos-table.hh | 509 struct Anchor struct 539 case 1: return_trace (bool (reinterpret_cast<Anchor *> (u.format1.copy (c->serializer)))); in subset() 545 return_trace (bool (reinterpret_cast<Anchor *> (u.format1.copy (c->serializer)))); in subset() 547 return_trace (bool (reinterpret_cast<Anchor *> (u.format2.copy (c->serializer)))); in subset() 548 case 3: return_trace (bool (reinterpret_cast<Anchor *> (u.format3.copy (c->serializer, in subset() 580 const Anchor& get_anchor (unsigned int row, unsigned int col, in get_anchor() 584 if (unlikely (row >= rows || col >= cols)) return Null (Anchor); in get_anchor() 635 UnsizedArrayOf<Offset16To<Anchor>> 675 Offset16To<Anchor> 694 const Anchor& mark_anchor = this + record.markAnchor; in apply() [all …]
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/ |
D | NumberingScheme.java | 49 import com.google.i18n.phonenumbers.metadata.model.NumberingScheme.Comment.Anchor; 627 public ImmutableList<Comment> getComments(Anchor anchor) { in getComments() 652 public abstract static class Anchor implements Comparable<Anchor> { class in NumberingScheme.Comment 655 private static final Anchor ANONYMOUS = of(PhoneRegion.getUnknown(), ""); 657 private static final Comparator<Anchor> ORDERING = 658 comparing(Anchor::region).thenComparing(Anchor::label); 661 static Anchor of(PhoneRegion region, String label) { in of() 676 public int compareTo(Anchor that) { in compareTo() 682 private static Anchor anchor(PhoneRegion region, String label) { in anchor() 687 public static Anchor anchor(PhoneRegion region) { in anchor() [all …]
|
D | CommentsSchema.java | 27 import com.google.i18n.phonenumbers.metadata.model.NumberingScheme.Comment.Anchor; 105 Anchor.of(PhoneRegion.of(row.get(REGION)), row.get(LABEL)), in getRowCallback()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | YAMLParser.h | 127 Node(unsigned int Type, std::unique_ptr<Document> &, StringRef Anchor, 149 StringRef getAnchor() const { return Anchor; } in getAnchor() 182 StringRef Anchor; variable 210 ScalarNode(std::unique_ptr<Document> &D, StringRef Anchor, StringRef Tag, in ScalarNode() argument 212 : Node(NK_Scalar, D, Anchor, Tag), Value(Val) { in ScalarNode() 253 BlockScalarNode(std::unique_ptr<Document> &D, StringRef Anchor, StringRef Tag, in BlockScalarNode() argument 255 : Node(NK_BlockScalar, D, Anchor, Tag), Value(Value) { in BlockScalarNode() 414 MappingNode(std::unique_ptr<Document> &D, StringRef Anchor, StringRef Tag, in MappingNode() argument 416 : Node(NK_Mapping, D, Anchor, Tag), Type(MT) {} in MappingNode() 469 SequenceNode(std::unique_ptr<Document> &D, StringRef Anchor, StringRef Tag, in SequenceNode() argument [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | YAMLParser.h | 119 Node(unsigned int Type, std::unique_ptr<Document> &, StringRef Anchor, 124 StringRef getAnchor() const { return Anchor; } in getAnchor() 169 StringRef Anchor; variable 197 ScalarNode(std::unique_ptr<Document> &D, StringRef Anchor, StringRef Tag, in ScalarNode() argument 199 : Node(NK_Scalar, D, Anchor, Tag), Value(Val) { in ScalarNode() 240 BlockScalarNode(std::unique_ptr<Document> &D, StringRef Anchor, StringRef Tag, in BlockScalarNode() argument 242 : Node(NK_BlockScalar, D, Anchor, Tag), Value(Value) { in BlockScalarNode() 400 MappingNode(std::unique_ptr<Document> &D, StringRef Anchor, StringRef Tag, in MappingNode() argument 402 : Node(NK_Mapping, D, Anchor, Tag), Type(MT), IsAtBeginning(true), in MappingNode() 454 SequenceNode(std::unique_ptr<Document> &D, StringRef Anchor, StringRef Tag, in SequenceNode() argument [all …]
|
/third_party/rust/crates/regex/src/ |
D | compile.rs | 294 Anchor(hir::Anchor::StartLine) if self.compiled.is_reverse => { in c() 298 Anchor(hir::Anchor::StartLine) => { in c() 302 Anchor(hir::Anchor::EndLine) if self.compiled.is_reverse => { in c() 306 Anchor(hir::Anchor::EndLine) => { in c() 310 Anchor(hir::Anchor::StartText) if self.compiled.is_reverse => { in c() 313 Anchor(hir::Anchor::StartText) => { in c() 316 Anchor(hir::Anchor::EndText) if self.compiled.is_reverse => { in c() 319 Anchor(hir::Anchor::EndText) => { in c()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
D | SymbolTableListTraits.h | 78 ListTy *Anchor(static_cast<ListTy *>(this)); in getListOwner() 79 return reinterpret_cast<ItemParentClass*>(reinterpret_cast<char*>(Anchor)- in getListOwner()
|
/third_party/typescript/tests/cases/compiler/ |
D | excessPropertyCheckWithUnions.ts | 80 type Anchor = { tag: 'a'; type?: string; href: string }; alias 82 type Union = Button | Anchor;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | SymbolTableListTraits.h | 81 ListTy *Anchor(static_cast<ListTy *>(this)); in getListOwner() 82 return reinterpret_cast<ItemParentClass*>(reinterpret_cast<char*>(Anchor)- in getListOwner()
|
/third_party/typescript/tests/baselines/reference/ |
D | excessPropertyCheckWithUnions.symbols | 230 type Anchor = { tag: 'a'; type?: string; href: string }; 231 >Anchor : Symbol(Anchor, Decl(excessPropertyCheckWithUnions.ts, 77, 50)) 236 type Union = Button | Anchor; 239 >Anchor : Symbol(Anchor, Decl(excessPropertyCheckWithUnions.ts, 77, 50))
|
D | excessPropertyCheckWithUnions.js | 80 type Anchor = { tag: 'a'; type?: string; href: string }; 82 type Union = Button | Anchor;
|
D | excessPropertyCheckWithUnions.types | 287 type Anchor = { tag: 'a'; type?: string; href: string }; 288 >Anchor : { tag: 'a'; type?: string | undefined; href: string; } 293 type Union = Button | Anchor; 294 >Union : Button | Anchor
|
/third_party/curl/tests/certs/ |
D | EdelCurlRoot-ca.prm | 13 commonName_value = Northern Nowhere Trust Anchor
|
D | EdelCurlRoot-ca.cacert | 9 commonName = Northern Nowhere Trust Anchor 16 commonName = Northern Nowhere Trust Anchor
|
D | EdelCurlRoot-ca.crt | 9 commonName = Northern Nowhere Trust Anchor 16 commonName = Northern Nowhere Trust Anchor
|
D | stunnel-sv.crt | 9 commonName = Northern Nowhere Trust Anchor
|
D | Server-localhost-lastSAN-sv.crt | 9 commonName = Northern Nowhere Trust Anchor
|
D | Server-localhost-firstSAN-sv.crt | 9 commonName = Northern Nowhere Trust Anchor
|
/third_party/libphonenumber/resources/geocoding/en/ |
D | 592.txt | 65 592332|Sheet Anchor/Susannah
|
/third_party/rust/crates/regex/regex-syntax/src/hir/literal/ |
D | mod.rs | 629 if let HirKind::Anchor(hir::Anchor::StartText) = *e.kind() { in prefixes() 705 if let HirKind::Anchor(hir::Anchor::EndText) = *e.kind() { in suffixes()
|