Home
last modified time | relevance | path

Searched refs:anchor (Results 1 – 25 of 528) sorted by relevance

12345678910>>...22

/third_party/icu/icu4j/demos/src/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 …]
/third_party/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:
76 % anchor, self.anchors[anchor].start_mark,
80 node = self.compose_scalar_node(anchor)
82 node = self.compose_sequence_node(anchor)
[all …]
Devents.py16 def __init__(self, anchor, start_mark=None, end_mark=None): argument
17 self.anchor = anchor
22 def __init__(self, anchor, tag, implicit, start_mark=None, end_mark=None, argument
24 self.anchor = anchor
65 def __init__(self, anchor, tag, implicit, value, argument
67 self.anchor = anchor
/third_party/typescript/tests/baselines/reference/
DthisIndexOnExistingReadonlyFieldIsNotNever.types13 anchorRef?: (anchor: C) => void;
14 >anchorRef : ((anchor: C) => void) | undefined
15 >anchor : C
23 decorateComponent<P>(anchor: P) {
24 >decorateComponent : <P>(anchor: P) => typeof CoachMarkAnchor
25 >anchor : P
28 …(anchor: AnchorType<P>) => { const anchorRef = this.props.anchorRef; …
32 private _onAnchorRef = (anchor: AnchorType<P>) => {
33 >_onAnchorRef : (anchor: AnchorType<P>) => void
34anchor: AnchorType<P>) => { const anchorRef = this.props.anchorRef; …
[all …]
DthisIndexOnExistingReadonlyFieldIsNotNever.symbols23 anchorRef?: (anchor: C) => void;
25 >anchor : Symbol(anchor, Decl(thisIndexOnExistingReadonlyFieldIsNotNever.ts, 5, 17))
37 decorateComponent<P>(anchor: P) {
40 >anchor : Symbol(anchor, Decl(thisIndexOnExistingReadonlyFieldIsNotNever.ts, 10, 25))
51 private _onAnchorRef = (anchor: AnchorType<P>) => {
53 >anchor : Symbol(anchor, Decl(thisIndexOnExistingReadonlyFieldIsNotNever.ts, 12, 36))
68 anchorRef(anchor);
70 >anchor : Symbol(anchor, Decl(thisIndexOnExistingReadonlyFieldIsNotNever.ts, 12, 36))
DthisIndexOnExistingReadonlyFieldIsNotNever.js7 anchorRef?: (anchor: C) => void;
12 decorateComponent<P>(anchor: P) {
14 private _onAnchorRef = (anchor: AnchorType<P>) => {
17 anchorRef(anchor);
45 CoachMarkAnchorDecorator.prototype.decorateComponent = function (anchor) { argument
50 _this._onAnchorRef = function (anchor) { argument
53 anchorRef(anchor);
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
Dvalidity.py17 def _checkAnchorComponents(anchor): argument
19 if anchor:
21 if any((' ' in anchor_part for anchor_part in anchor)):
52 self.addValidityEntry(msg, anchor=('extension', 'notenabled'))
54 def addValidityEntry(self, msg, anchor=None): argument
64 _checkAnchorComponents(anchor)
65 if anchor:
69 '-'.join(['VUID', self.entity_name] + list(anchor))))
115 self.addValidityEntry(str(other), anchor=other.anchor)
158 def __init__(self, text=None, anchor=None): argument
[all …]
Dhtml_printer.py194 anchor = self.getUniqueAnchor()
197 linkBackTarget=anchor,
208 anchor=anchor,
228 linkBackTarget=anchor,
277 anchor = self.getUniqueAnchor()
288 """.format(anchor, include, asciidocAnchor))
296 linkBackTarget=anchor,
320 anchor = '[[{}]]'.format(entity)
325 """.format(filename=fn, anchor=anchor))
434 anchor = 'anchor-{}'.format(self.nextAnchor)
[all …]
/third_party/json/include/nlohmann/detail/iterators/
Diteration_proxy.hpp35 IteratorType anchor; member in nlohmann::detail::iteration_proxy_value
47 : anchor(std::move(it)) in iteration_proxy_value()
59 ++anchor; in operator ++()
68 return anchor == o.anchor; in operator ==()
74 return anchor != o.anchor; in operator !=()
80 JSON_ASSERT(anchor.m_object != nullptr); in key()
82 switch (anchor.m_object->type()) in key()
97 return anchor.key(); in key()
116 return anchor.value(); in value()
/third_party/flutter/skia/platform_tools/android/apps/arcore/src/main/cpp/
Danchor_wrapper.cc23 AnchorWrapper::AnchorWrapper(ArAnchor *anchor) : anchor(anchor) {} in AnchorWrapper() argument
26 return anchor; in GetArAnchor()
32 void AnchorWrapper::SetArAnchor(ArAnchor* anchor) { in SetArAnchor() argument
33 this->anchor = anchor; in SetArAnchor()
Dhello_ar_application.cc550 for(ArAnchor* const& anchor: anchors) { in OnTouchedFirst()
556 ArAnchor_getPose(ar_session_, anchor, anchor_pose); in OnTouchedFirst()
566 pendingAnchor->SetArAnchor(anchor); in OnTouchedFirst()
592 ArAnchor *anchor = nullptr; in OnTouchedFirst() local
595 if (ArSession_acquireNewAnchor(ar_session_, out_pose, &anchor) != AR_SUCCESS) { in OnTouchedFirst()
604 pendingAnchor->SetArAnchor(anchor); in OnTouchedFirst()
623 void HelloArApplication::AddAnchor(ArAnchor* anchor, ArPlane* containingPlane) { in AddAnchor() argument
627 ArAnchor_getTrackingState(ar_session_, anchor, &tracking_state); in AddAnchor()
629 RemoveAnchor(anchor); in AddAnchor()
644 anchors.push_back(anchor); in AddAnchor()
[all …]
Dpending_anchor.cc43 ArAnchor_getPose(arSession, this->anchor, anchorPose); in GetAnchorPos()
51 return anchor; in GetArAnchor()
54 void PendingAnchor::SetArAnchor(ArAnchor* anchor) { in SetArAnchor() argument
55 this->anchor = anchor; in SetArAnchor()
/third_party/glslang/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 …]
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/
Dpromote.py21 global anchor
22 anchor = 0 variable
24 def anchorname(anchor): argument
25 return 'promoted-' + str(anchor)
29 global anchor
31 print('[[' + anchorname(anchor) + ']]', file=fp)
32 print('This anchor:', anchorname(anchor), file=fp)
33 print('<<' + anchorname(anchor+1) + ', OINK>>', file=fp)
34 anchor = anchor + 1
/third_party/toybox/scripts/
Dconfig2help.c353 struct double_list *cfrom, *tfrom, *anchor; in main() local
379 anchor = catch->help; in main()
401 anchor = cfrom->prev; in main()
408 if (!anchor) { in main()
410 anchor = cfrom->prev; in main()
423 if (!anchor->data) dlist_zap(&anchor); in main()
426 while (!*skip_spaces(anchor->prev->data)) { in main()
427 anchor = anchor->prev; in main()
428 free(dlist_zap(&anchor)); in main()
432 while (tfrom) dlist_add(&anchor, dlist_zap(&tfrom)); in main()
[all …]
/third_party/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 …]
D_yaml.pxd134 _yaml_token_anchor_data_t anchor
157 char *anchor
159 char *anchor
167 char *anchor
172 char *anchor
218 int yaml_alias_event_initialize(yaml_event_t *event, yaml_char_t *anchor)
220 yaml_char_t *anchor, yaml_char_t *tag, yaml_char_t *value, int length,
224 yaml_char_t *anchor, yaml_char_t *tag, int implicit, yaml_sequence_style_t style)
227 yaml_char_t *anchor, yaml_char_t *tag, int implicit, yaml_mapping_style_t style)
/third_party/python/Lib/distutils/
Dfilelist.py118 if not self.include_pattern(pattern, anchor=1):
125 if not self.exclude_pattern(pattern, anchor=1):
132 if not self.include_pattern(pattern, anchor=0):
139 if not self.exclude_pattern(pattern, anchor=0):
180 def include_pattern(self, pattern, anchor=1, prefix=None, is_regex=0): argument
207 pattern_re = translate_pattern(pattern, anchor, prefix, is_regex)
224 anchor=1, prefix=None, is_regex=0): argument
232 pattern_re = translate_pattern(pattern, anchor, prefix, is_regex)
293 def translate_pattern(pattern, anchor=1, prefix=None, is_regex=0): argument
324 if anchor:
/third_party/jsframework/runtime/main/model/
DdomHelper.ts99 const anchor = doc.createComment('start'); constant
100 return anchor;
110 const anchor = doc.createComment('end'); constant
111 anchor.destroyHook = function() {
112 if (anchor.watchers !== undefined) {
113 anchor.watchers.forEach(function(watcher) {
116 anchor.watchers = [];
119 return anchor;
/third_party/typescript/tests/cases/compiler/
DthisIndexOnExistingReadonlyFieldIsNotNever.ts7 anchorRef?: (anchor: C) => void;
12 decorateComponent<P>(anchor: P) {
14 private _onAnchorRef = (anchor: AnchorType<P>) => {
17 anchorRef(anchor);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/
DARMMCAsmInfo.h24 virtual void anchor();
31 void anchor() override;
40 void anchor() override;
47 void anchor() override;
DARMMCAsmInfo.cpp18 void ARMMCAsmInfoDarwin::anchor() { } in anchor() function in ARMMCAsmInfoDarwin
44 void ARMELFMCAsmInfo::anchor() { } in anchor() function in ARMELFMCAsmInfo
90 void ARMCOFFMCAsmInfoMicrosoft::anchor() { } in anchor() function in ARMCOFFMCAsmInfoMicrosoft
103 void ARMCOFFMCAsmInfoGNU::anchor() { } in anchor() function in ARMCOFFMCAsmInfoGNU
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/MCTargetDesc/
DX86MCAsmInfo.h25 virtual void anchor();
39 void anchor() override;
46 void anchor() override;
53 void anchor() override;
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/
DNumberingScheme.java232 modified.add(Comment.create(Comment.anchor(mainRegion), ImmutableList.of(comment))); in addSyntheticComments()
237 modified.add(Comment.create(Comment.anchor(r), ImmutableList.of(auxComment))); in addSyntheticComments()
251 Comment.create(Comment.anchor(region), enName), in getRegionNameComments()
627 public ImmutableList<Comment> getComments(Anchor anchor) { in getComments() argument
628 checkArgument(getAttributes().getRegions().contains(anchor.region()), in getComments()
629 "invalid region: %s", anchor.region()); in getComments()
631 .filter(c -> c.getAnchor().equals(anchor)) in getComments()
663 return anchor(region, label); in of()
682 private static Anchor anchor(PhoneRegion region, String label) { in anchor() method in NumberingScheme.Comment
687 public static Anchor anchor(PhoneRegion region) { in anchor() method in NumberingScheme.Comment
[all …]
/third_party/node/test/doctool/
Dtest-local-md-file-reference-regex.mjs16 'test.md#anchor',
17 'subfolder/test.md#anchor',
36 'test.html#anchor.md',
37 'test.html?anchor.md',

12345678910>>...22