/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/model/ |
H A 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/skia/third_party/externals/harfbuzz/src/ |
H A D | hb-aat-layout-ankr-table.hh | 31 * ankr -- Anchor Point 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()
|
H A D | hb-ot-layout-gpos-table.hh | 57 /* Shared Tables: ValueRecord, Anchor Table, and MarkArray */ 500 * Anchor table (may be NULL) */ 504 * Anchor table (may be NULL) */ 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() [all...] |
H A D | hb-aat-layout-kerx-table.hh | 533 case 1: /* Anchor Point Actions. */ in transition() 542 const Anchor &markAnchor = c->ankr_table->get_anchor (c->buffer->info[mark].codepoint, in transition() 545 const Anchor &currAnchor = c->ankr_table->get_anchor (c->buffer->cur ().codepoint, in transition()
|
/third_party/rust/crates/regex/regex-syntax/src/hir/ |
H A 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()
|
H A D | mod.rs | 195 Anchor(Anchor), 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 [all...] |
H A 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 in assertions() [all...] |
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/ |
H A D | NumberingScheme.java | 49 import com.google.i18n.phonenumbers.metadata.model.NumberingScheme.Comment.Anchor; 629 * always use {@link #getComments(Anchor)} instead. 634 public ImmutableList<Comment> getComments(Anchor anchor) { in getComments() 659 public abstract static class Anchor implements Comparable<Anchor> { class in NumberingScheme.Comment 662 private static final Anchor ANONYMOUS = of(PhoneRegion.getUnknown(), ""); 664 private static final Comparator<Anchor> ORDERING = 665 comparing(Anchor::region).thenComparing(Anchor::label); 668 static Anchor o [all...] |
H A 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/ |
H A 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; member in llvm::yaml::Node 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, StringRe argument [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
H A 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; member in llvm::yaml::Node 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, StringRe argument [all...] |
/third_party/rust/crates/regex/src/ |
H A 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 in c() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
H A 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/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/ |
H A 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/baselines/reference/ |
H A D | excessPropertyCheckWithUnions.js | 80 type Anchor = { tag: 'a'; type?: string; href: string }; 82 type Union = Button | Anchor;
|
/third_party/rust/crates/regex/regex-syntax/src/hir/literal/ |
H A 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()
|
/third_party/PyYAML/examples/pygments-lexer/ |
H A D | yaml.py | 254 (r'&[0-9A-Za-z_-]+', Name.Anchor),
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
H A D | SystemZISelDAGToDAG.cpp | 487 SDValue Anchor = Base.getOperand(0); in expandAddress() local 489 cast<GlobalAddressSDNode>(Anchor)->getOffset()); in expandAddress()
|
H A D | SystemZISelLowering.cpp | 2978 uint64_t Anchor = Offset & ~uint64_t(0xfff); 2979 Result = DAG.getTargetGlobalAddress(GV, DL, PtrVT, Anchor); 2984 Offset -= Anchor; 2987 DAG.getTargetGlobalAddress(GV, DL, PtrVT, Anchor + Offset);
|
/third_party/nghttp2/src/ |
H A D | nghttp.cc | 73 struct Anchor { struct 92 constexpr auto anchors = std::array<Anchor, 5>{{
|