Home
last modified time | relevance | path

Searched full:anchor (Results 1 – 25 of 2391) sorted by relevance

12345678910>>...96

/external/fonttools/Tests/voltLib/data/
DNamdhinggoSIL1006.fea12 markClass uni1920 <anchor -500 1050> @Aabove;
13 markClass uni1922 <anchor -150 -15> @U;
14 markClass uni1927 <anchor -300 1050> @eo;
15 markClass uni1928 <anchor -190 1050> @eo;
16 markClass uni193A <anchor -260 1250> @K;
17 markClass uni193A <anchor -260 1250> @VK;
114 <anchor 487 1050> mark @Aabove;
116 <anchor 622 1050> mark @Aabove;
118 <anchor 475 1050> mark @Aabove;
120 <anchor 460 1050> mark @Aabove;
[all …]
DNutso.fea8 markClass eight.numr <anchor 0 0> @INIT.1.10;
9 markClass eight.numr <anchor 0 0> @INIT.2.10;
10 markClass eight.numr <anchor 0 0> @INIT.3.10;
11 markClass eight.numr <anchor 0 0> @INIT.4.10;
12 markClass eight.numr <anchor 0 0> @INIT.5.10;
13 markClass eight.numr <anchor 0 0> @INIT.6.10;
14 markClass eight.numr <anchor 0 0> @INIT.7.10;
15 markClass eight.numr <anchor 0 0> @INIT.8.10;
16 markClass eight.numr <anchor 0 0> @INIT.9.10;
17 markClass eight.numr <anchor 0 0> @NUMRNUMR;
[all …]
/external/icu/icu4j/demos/src/main/java/com/ibm/icu/dev/demo/impl/
DSelection.java14 public int anchor; field in Selection
19 return anchor < caret ? anchor : caret; in getStart()
23 return anchor > caret ? anchor : caret; in getEnd()
27 return anchor == caret; in isCaret()
31 anchor = other.anchor; in set()
37 public Selection set(int anchor, int caret, boolean clickAfter) { in set() argument
38 this.anchor = anchor; in set()
46 return anchor == other2.anchor in equals()
56 if (anchor > text.length()) { in pin()
57 anchor = text.length(); in pin()
[all …]
/external/fonttools/Tests/feaLib/data/
DGPOS_5.fea1 markClass [acute grave] <anchor 500 700> @TOP_MARKS;
2 markClass macron <anchor 500 750> @TOP_MARKS;
3 markClass [cedilla] <anchor 500 -10> @BOTTOM_MARKS;
4 markClass [ogonek] <anchor 800 -10> @OGONEK;
9 <anchor 500 800> mark @TOP_MARKS
10 <anchor 500 -200> mark @BOTTOM_MARKS
12 <anchor 1500 800> mark @TOP_MARKS
13 <anchor 1500 -200> mark @BOTTOM_MARKS
14 <anchor 1550 0> mark @OGONEK;
17 <anchor 300 800> mark @TOP_MARKS
[all …]
DGPOS_3.fea6 pos cursive zero <anchor NULL> <anchor NULL>;
7 pos cursive one <anchor 121 -1> <anchor ANCH342>;
8 pos cursive two <anchor 122 -2> <anchor 3 4>;
9 pos cursive three <anchor 123 -3> <anchor NULL>;
10 pos cursive four <anchor 124 -4 contourpoint 7> <anchor 3 4>;
11 pos cursive five <anchor 124 -4 <device 8 1, 9 2> <device 7 3>> <anchor ANCH342>;
DGPOS_4.fea3 markClass [acute grave] <anchor 111 -11> @TOP_MARKS;
4 markClass macron <anchor 112 -12> @TOP_MARKS;
5 markClass [cedilla] <anchor 222 22> @BOTTOM_MARKS;
6 markClass [ogonek] <anchor 333 33> @SIDE_MARKS;
10 <anchor 11 1> mark @TOP_MARKS
11 <anchor 12 -1> mark @BOTTOM_MARKS;
13 <anchor 22 -2> mark @BOTTOM_MARKS;
15 <anchor 33 3> mark @SIDE_MARKS;
/external/mesa3d/src/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/spec_tools/
Dvalidity.py17 def _checkAnchorComponents(anchor): argument
18 """Raise an exception if any component of a VUID anchor name is illegal."""
19 if anchor:
20 # Any other invalid things in an anchor name should be detected here.
21 if any((' ' in anchor_part for anchor_part in anchor)):
22 raise RuntimeError("Illegal component of a VUID anchor name!")
52 self.addValidityEntry(msg, anchor=('extension', 'notenabled'))
54 def addValidityEntry(self, msg, anchor=None): argument
55 """Add a validity entry, optionally with a VUID anchor.
58 an anchor is generated by concatenating them with dashes
[all …]
/external/python/pyyaml/lib/yaml/
Dcomposer.py66 anchor = event.anchor
67 if anchor not in self.anchors:
69 % anchor, event.start_mark)
70 return self.anchors[anchor]
72 anchor = event.anchor
73 if anchor is not None:
74 if anchor in self.anchors:
75 raise ComposerError("found duplicate anchor %r; first occurrence"
76 % anchor, self.anchors[anchor].start_mark,
80 node = self.compose_scalar_node(anchor)
[all …]
/external/mesa3d/src/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/
Dantora-prep.py43 titleAnchorPat = re.compile(r'^\[\[(?P<anchor>[^,]+).*\]\]$')
61 def mapAnchor(anchor, title, pageMap, xrefMap, closeAnchor): argument
62 """Rewrite a <<anchor{, title}>> xref -> xref:pagemap#anchor[{title}]
63 - anchor - anchor name
65 anchor text from the xrefMap is used if available
70 #@if anchor == 'features-shaderStorageImageReadWithoutFormat':
74 # Determine which page anchor this anchor comes from
75 # If it cannot be determined, use the unmapped anchor
76 #@ Simplify the page anchor if pageName == current page
81 (pageAnchor, _) = xrefMap[anchor]
[all …]
/external/conscrypt/common/src/main/java/org/conscrypt/
DTrustedCertificateIndex.java50 for (TrustAnchor anchor : anchors) { in index()
51 index(anchor); in index()
56 TrustAnchor anchor = new TrustAnchor(cert, null); in index() local
57 index(anchor); in index()
58 return anchor; in index()
61 public void index(TrustAnchor anchor) { in index() argument
63 X509Certificate cert = anchor.getTrustedCert(); in index()
67 subject = anchor.getCA(); in index()
85 anchors.add(anchor); in index()
110 for (TrustAnchor anchor : anchors) { in findByIssuerAndSignature()
[all …]
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/
DTrustedCertificateIndex.java53 for (TrustAnchor anchor : anchors) { in index()
54 index(anchor); in index()
60 TrustAnchor anchor = new TrustAnchor(cert, null); in index() local
61 index(anchor); in index()
62 return anchor; in index()
65 public void index(TrustAnchor anchor) { in index() argument
67 X509Certificate cert = anchor.getTrustedCert(); in index()
71 subject = anchor.getCA(); in index()
89 anchors.add(anchor); in index()
115 for (TrustAnchor anchor : anchors) { in findByIssuerAndSignature()
[all …]
/external/oss-fuzz/projects/libyaml/
Dlibyaml_emitter_fuzzer.c77 return (strcmp((char *)event1->data.alias.anchor, in events_equal()
78 (char *)event2->data.alias.anchor) == 0); in events_equal()
81 if ((event1->data.scalar.anchor && !event2->data.scalar.anchor) || in events_equal()
82 (!event1->data.scalar.anchor && event2->data.scalar.anchor) || in events_equal()
83 (event1->data.scalar.anchor && event2->data.scalar.anchor && in events_equal()
84 strcmp((char *)event1->data.scalar.anchor, in events_equal()
85 (char *)event2->data.scalar.anchor) != 0)) in events_equal()
107 if ((event1->data.sequence_start.anchor && in events_equal()
108 !event2->data.sequence_start.anchor) || in events_equal()
109 (!event1->data.sequence_start.anchor && in events_equal()
[all …]
/external/ComputeLibrary/src/core/helpers/
DWindowHelpers.cpp35 const Coordinates &anchor = valid_region.anchor; in calculate_max_window() local
42 anchor[0] + border_size.left, in calculate_max_window()
45anchor[0] + border_size.left + ceil_to_multiple(std::max(0, static_cast<int>(shape[0]) - static_ca… in calculate_max_window()
50 if(anchor.num_dimensions() > 1) in calculate_max_window()
54 anchor[1] + border_size.top, in calculate_max_window()
56anchor[1] + border_size.top + ceil_to_multiple(std::max(0, static_cast<int>(shape[1]) - static_cas… in calculate_max_window()
62 if(anchor.num_dimensions() > 2) in calculate_max_window()
64 window.set(2, Window::Dimension(anchor[2], std::max<size_t>(1, shape[2]), steps[2])); in calculate_max_window()
69 for(; n < anchor.num_dimensions(); ++n) in calculate_max_window()
71 window.set(n, Window::Dimension(anchor[n], std::max<size_t>(1, shape[n]))); in calculate_max_window()
[all …]
/external/rust/crates/serde_yaml/src/libyaml/
Dparser.rs27 Alias(Anchor),
36 pub anchor: Option<Anchor>, field
45 pub anchor: Option<Anchor>, field
51 pub anchor: Option<Anchor>, field
56 pub(crate) struct Anchor(Box<[u8]>); struct
114 Event::Alias(unsafe { optional_anchor(sys.data.alias.anchor) }.unwrap()) in convert_event()
117 anchor: unsafe { optional_anchor(sys.data.scalar.anchor) }, in convert_event()
137 anchor: unsafe { optional_anchor(sys.data.sequence_start.anchor) }, in convert_event()
142 anchor: unsafe { optional_anchor(sys.data.mapping_start.anchor) }, in convert_event()
151 unsafe fn optional_anchor(anchor: *const u8) -> Option<Anchor> { in optional_anchor() argument
[all …]
/external/androidplot/.idea/
DuiDesigner.xml6 <default-constraints vsize-policy="1" hsize-policy="6" anchor="0" fill="1" />
9 <default-constraints vsize-policy="6" hsize-policy="1" anchor="0" fill="2" />
12 <default-constraints vsize-policy="3" hsize-policy="3" anchor="0" fill="3" />
15 <default-constraints vsize-policy="7" hsize-policy="7" anchor="0" fill="3" />
18 <default-constraints vsize-policy="0" hsize-policy="3" anchor="0" fill="1" />
24 <default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
30 <default-constraints vsize-policy="0" hsize-policy="3" anchor="8" fill="0" />
36 <default-constraints vsize-policy="0" hsize-policy="0" anchor="8" fill="0" />
42 <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
47 <default-constraints vsize-policy="0" hsize-policy="6" anchor="8" fill="1">
[all …]
/external/clang/lib/Driver/
DAction.cpp43 void InputAction::anchor() {} in anchor() function in InputAction
49 void BindArchAction::anchor() {} in anchor() function in BindArchAction
54 void CudaDeviceAction::anchor() {} in anchor() function in CudaDeviceAction
60 void CudaHostAction::anchor() {} in anchor() function in CudaHostAction
65 void JobAction::anchor() {} in anchor() function in JobAction
74 void PreprocessJobAction::anchor() {} in anchor() function in PreprocessJobAction
79 void PrecompileJobAction::anchor() {} in anchor() function in PrecompileJobAction
84 void AnalyzeJobAction::anchor() {} in anchor() function in AnalyzeJobAction
89 void MigrateJobAction::anchor() {} in anchor() function in MigrateJobAction
94 void CompileJobAction::anchor() {} in anchor() function in CompileJobAction
[all …]
/external/libcups/man/
Dmantohtml.c50 anchor[1024], /* Anchor */ in main() local
112 anchor[0] = '\0'; in main()
176 if (anchor[0]) in main()
178 fputs(anchor, outfile); in main()
179 anchor[0] = '\0'; in main()
229 if (anchor[0]) in main()
230 fprintf(outfile, "<a name=\"%s\">", anchor); in main()
234 if (anchor[0]) in main()
237 anchor[0] = '\0'; in main()
255 if (anchor[0]) in main()
[all …]
/external/python/pyyaml/yaml/
D_yaml.pyx423 value = PyUnicode_FromYamlString(token.data.anchor.value)
555 anchor = PyUnicode_FromYamlString(event.data.alias.anchor)
556 return AliasEvent(anchor, start_mark, end_mark)
558 anchor = None
559 if event.data.scalar.anchor != NULL:
560 anchor = PyUnicode_FromYamlString(event.data.scalar.anchor)
583 return ScalarEvent(anchor, tag,
587 anchor = None
588 if event.data.sequence_start.anchor != NULL:
589 anchor = PyUnicode_FromYamlString(event.data.sequence_start.anchor)
[all …]
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/events/
DNodeEvent.java23 private final String anchor; field in NodeEvent
25 public NodeEvent(String anchor, Mark startMark, Mark endMark) { in NodeEvent() argument
27 this.anchor = anchor; in NodeEvent()
31 * Node anchor by which this node might later be referenced by a {@link AliasEvent}.
34 * indicate the referenced anchor.
36 * @return Anchor of this node or <code>null</code> if no anchor is defined.
39 return this.anchor; in getAnchor()
44 return "anchor=" + anchor; in getArguments()
/external/rust/crates/plotters-backend/src/
Dtext.rs43 /// Text anchor attributes are used to properly position the text.
47 /// In the example below, the text anchor (X) position is `Pos::new(HPos::Right, VPos::Center)`.
62 /// The horizontal position of the anchor point relative to the text.
65 /// Anchor point is on the left side of the text
67 /// Anchor point is on the right side of the text
69 /// Anchor point is in the horizontal center of the text
73 /// The vertical position of the anchor point relative to the text.
76 /// Anchor point is on the top of the text
78 /// Anchor point is in the vertical center of the text
80 /// Anchor point is on the bottom of the text
[all …]
/external/sdv/vsomeip/third_party/boost/proto/doc/
Dglossary.qbk14 [template anchor[x] '''<anchor id="boost_proto.users_guide.glossary.'''[x]'''" />''']
17 [ [ [anchor callable_transform] callable transform]
22 [ [ [anchor context] context]
30 [ [ [anchor domain] domain]
38 [ [ [anchor dsl] domain-specific language]
42 [ [ [anchor edsl] embedded domain-specific language]
46 [ [ [anchor expression] expression]
51 [ [ [anchor expression_template] expression template]
56 [ [ [anchor generator] generator]
62 [ [ [anchor grammar] grammar]
[all …]
/external/chromium-trace/catapult/third_party/polymer/components/iron-location/test/
Diron-location.html123 var anchor = document.createElement('a');
127 anchor.href = base + '#/wat';
128 document.body.appendChild(anchor);
129 anchor.click();
293 function isClickCaptured(anchor, urlSpaceRegex) {
296 expect(event.target).to.be.eq(anchor);
306 document.body.appendChild(anchor);
307 anchor.click();
308 document.body.removeChild(anchor);
314 var anchor = document.createElement('a');
[all …]
/external/pigweed/pw_transfer/
Dwrite.svg66 …sans-serif" font-size="11" font-style="normal" font-weight="normal" text-anchor="middle" textLengt…
68 …sans-serif" font-size="11" font-style="normal" font-weight="normal" text-anchor="middle" textLengt…
74 …sans-serif" font-size="11" font-style="normal" font-weight="normal" text-anchor="middle" textLengt…
75 …sans-serif" font-size="11" font-style="normal" font-weight="normal" text-anchor="middle" textLengt…
81 …sans-serif" font-size="11" font-style="normal" font-weight="normal" text-anchor="middle" textLengt…
82 …sans-serif" font-size="11" font-style="normal" font-weight="normal" text-anchor="middle" textLengt…
83 …sans-serif" font-size="11" font-style="normal" font-weight="normal" text-anchor="middle" textLengt…
84 …sans-serif" font-size="11" font-style="normal" font-weight="normal" text-anchor="middle" textLengt…
85 …sans-serif" font-size="11" font-style="normal" font-weight="normal" text-anchor="middle" textLengt…
86 …sans-serif" font-size="11" font-style="normal" font-weight="normal" text-anchor="middle" textLengt…
[all …]
Dread.svg59 …sans-serif" font-size="11" font-style="normal" font-weight="normal" text-anchor="middle" textLengt…
61 …sans-serif" font-size="11" font-style="normal" font-weight="normal" text-anchor="middle" textLengt…
67 …sans-serif" font-size="11" font-style="normal" font-weight="normal" text-anchor="middle" textLengt…
68 …sans-serif" font-size="11" font-style="normal" font-weight="normal" text-anchor="middle" textLengt…
69 …sans-serif" font-size="11" font-style="normal" font-weight="normal" text-anchor="middle" textLengt…
70 …sans-serif" font-size="11" font-style="normal" font-weight="normal" text-anchor="middle" textLengt…
71 …sans-serif" font-size="11" font-style="normal" font-weight="normal" text-anchor="middle" textLengt…
72 …sans-serif" font-size="11" font-style="normal" font-weight="normal" text-anchor="middle" textLengt…
78 …sans-serif" font-size="11" font-style="normal" font-weight="normal" text-anchor="middle" textLengt…
79 …sans-serif" font-size="11" font-style="normal" font-weight="normal" text-anchor="middle" textLengt…
[all …]
/external/angle/third_party/glslang/src/Test/
Dspv.shaderImageFootprint.frag41 anchor2D = fp2D.anchor;
48 anchor2D += fp2D.anchor;
55 anchor2D += fp2D.anchor;
62 anchor2D += fp2D.anchor;
69 anchor2D += fp2D.anchor;
76 anchor2D += fp2D.anchor;
83 anchor2D += fp2D.anchor;
90 anchor3D = fp3D.anchor;
97 anchor3D += fp3D.anchor;
104 anchor3D += fp3D.anchor;
[all …]

12345678910>>...96