/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/ |
D | Selection.java | 14 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/ |
D | composer.py | 66 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 …]
|
D | events.py | 16 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/ |
D | thisIndexOnExistingReadonlyFieldIsNotNever.types | 13 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 34 …anchor: AnchorType<P>) => { const anchorRef = this.props.anchorRef; … [all …]
|
D | thisIndexOnExistingReadonlyFieldIsNotNever.symbols | 23 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))
|
D | thisIndexOnExistingReadonlyFieldIsNotNever.js | 7 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/flutter/skia/platform_tools/android/apps/arcore/src/main/cpp/ |
D | anchor_wrapper.cc | 23 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()
|
D | pending_anchor.cc | 43 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()
|
D | hello_ar_application.cc | 550 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 …]
|
/third_party/json/include/nlohmann/detail/iterators/ |
D | iteration_proxy.hpp | 34 IteratorType anchor; member in nlohmann::detail::iteration_proxy_value 45 explicit iteration_proxy_value(IteratorType it) noexcept : anchor(it) {} in iteration_proxy_value() 56 ++anchor; in operator ++() 65 return anchor == o.anchor; in operator ==() 71 return anchor != o.anchor; in operator !=() 77 JSON_ASSERT(anchor.m_object != nullptr); in key() 79 switch (anchor.m_object->type()) in key() 94 return anchor.key(); in key() 105 return anchor.value(); in value()
|
/third_party/glslang/Test/ |
D | spv.shaderImageFootprint.frag | 41 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/toybox/scripts/ |
D | config2help.c | 353 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/re2/re2/testing/ |
D | tester.cc | 134 static std::string FormatAnchor(Prog::Anchor anchor) { in FormatAnchor() argument 135 switch (anchor) { in FormatAnchor() 293 Prog::Anchor anchor, in RunSearch() argument 319 prog_->UnsafeSearchBacktrack(text, context, anchor, kind_, in RunSearch() 330 prog_->SearchNFA(text, context, anchor, kind_, in RunSearch() 340 result->matched = prog_->SearchDFA(text, context, anchor, kind_, NULL, in RunSearch() 350 prog_->SearchDFA(text, context, anchor, kind_, result->submatch, in RunSearch() 371 anchor == Prog::kUnanchored || in RunSearch() 376 result->matched = prog_->SearchOnePass(text, context, anchor, kind_, in RunSearch() 387 result->matched = prog_->SearchBitState(text, context, anchor, kind_, in RunSearch() [all …]
|
/third_party/boost/libs/proto/doc/ |
D | glossary.qbk | 14 [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 …]
|
/third_party/boost/libs/locale/doc/html/ |
D | navtree.js | 160 function gotoAnchor(anchor,aname,updateLocation) argument 163 if (anchor.parent().attr('class')=='memItemLeft' || 164 anchor.parent().attr('class')=='fieldtype' || 165 anchor.parent().is(':header')) 167 pos = anchor.parent().position().top; 168 } else if (anchor.position()) { 169 pos = anchor.position().top; 237 var anchor = $(aname); 238 gotoAnchor(anchor,aname,true); 320 var anchor = $(aname); [all …]
|
/third_party/PyYAML/yaml/ |
D | _yaml.pyx | 423 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 …]
|
/third_party/boost/tools/quickbook/test/ |
D | anchor-1_7.quickbook | 10 [heading This heading shouldn't pick up the previous anchor] 14 [heading This heading should pick up the previous anchor] 31 [/ This anchor is invalid, I'm not sure what to do with it] 92 [template anchor[name] [#x[name]y]] 94 [anchor 1] 95 [anchor 12]
|
/third_party/boost/boost/graph/planar_detail/ |
D | face_handles.hpp | 242 , anchor(graph_traits< Graph >::null_vertex()) in face_handle_impl() 260 vertex_t anchor; member 284 face_handle(vertex_t anchor = graph_traits< Graph >::null_vertex()) in face_handle() argument 287 pimpl->anchor = anchor; in face_handle() 290 face_handle(vertex_t anchor, edge_t initial_edge, const Graph& g) in face_handle() argument 295 vertex_t other_vertex = s == anchor ? t : s; in face_handle() 296 pimpl->anchor = anchor; in face_handle() 314 = source(e, g) == pimpl->anchor ? target(e, g) in push_first() 323 = source(e, g) == pimpl->anchor ? target(e, g) in push_second() 383 inline vertex_t get_anchor() const { return pimpl->anchor; } in get_anchor()
|
/third_party/typescript/tests/cases/compiler/ |
D | thisIndexOnExistingReadonlyFieldIsNotNever.ts | 7 anchorRef?: (anchor: C) => void; 12 decorateComponent<P>(anchor: P) { 14 private _onAnchorRef = (anchor: AnchorType<P>) => { 17 anchorRef(anchor);
|
/third_party/python/Lib/distutils/ |
D | filelist.py | 118 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/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/ |
D | ARMMCAsmInfo.h | 24 virtual void anchor(); 31 void anchor() override; 40 void anchor() override; 47 void anchor() override;
|
/third_party/jsframework/runtime/main/model/ |
D | domHelper.ts | 99 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/mindspore/tests/st/ops/gpu/ |
D | test_check_valid_op.py | 30 def construct(self, anchor, image_metas): argument 31 return self.valid(anchor, image_metas) 34 anchor = np.array([[50, 0, 100, 700], [-2, 2, 8, 100], [10, 20, 300, 2000]], nptype) 36 anchor_box = Tensor(anchor) 72 anchor = np.array([[5, 0, 10, 70], [2, 2, 8, 10], [1, 2, 30, 200]], np.uint8) 74 anchor_box = Tensor(anchor)
|
/third_party/mindspore/tests/st/ops/cpu/ |
D | test_check_valid_op.py | 30 def construct(self, anchor, image_metas): argument 31 return self.valid(anchor, image_metas) 34 anchor = np.array([[50, 0, 100, 700], [-2, 2, 8, 100], [10, 20, 300, 2000]], nptype) 36 anchor_box = Tensor(anchor) 72 anchor = np.array([[5, 0, 10, 70], [2, 2, 8, 10], [1, 2, 30, 200]], np.uint8) 74 anchor_box = Tensor(anchor)
|
/third_party/boost/boost/gil/image_processing/ |
D | filter.hpp | 32 long int anchor = -1, in box_filter() argument 49 if (anchor == -1) anchor = static_cast<int>(kernel_size / 2); in box_filter() 50 kernel_1d<float> kernel(kernel_values.begin(), kernel_size, anchor); in box_filter() 63 long int anchor = -1, in blur() argument 67 box_filter(src_view, dst_view, kernel_size, anchor, true, option); in blur()
|