/third_party/icu/icu4j/demos/src/com/ibm/icu/dev/demo/impl/ |
H A 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 in set() [all...] |
/third_party/PyYAML/lib/yaml/ |
H A 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: 75 raise ComposerError("found duplicate anchor [all...] |
H A D | events.py | 9 attributes = [key for key in ['anchor', 'tag', 'implicit', 'value'] 16 def __init__(self, anchor, start_mark=None, end_mark=None): 17 self.anchor = anchor 22 def __init__(self, anchor, tag, implicit, start_mark=None, end_mark=None, 24 self.anchor = anchor 65 def __init__(self, anchor, tag, implicit, value, 67 self.anchor = anchor [all...] |
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/ |
H A D | validity.py | 17 def _checkAnchorComponents(anchor): 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): 55 """Add a validity entry, optionally with a VUID anchor. 58 an anchor i [all...] |
H A D | html_printer.py | 194 anchor = self.getUniqueAnchor() 197 linkBackTarget=anchor, 205 <h5 class="card-header bg bg-{style}" id="{anchor}">{icon} {t} Line {lineNum}, Column {col} (-{arg})</h5> 208 anchor=anchor, 228 linkBackTarget=anchor, 277 anchor = self.getUniqueAnchor() 288 """.format(anchor, include, asciidocAnchor)) 296 linkBackTarget=anchor, 320 anchor [all...] |
/third_party/json/include/nlohmann/detail/iterators/ |
H A D | iteration_proxy.hpp | 48 IteratorType anchor{}; 63 : anchor(std::move(it)) in noexcept() 87 ++anchor; in operator ++() 95 auto tmp = iteration_proxy_value(anchor, array_index); in operator ++() 96 ++anchor; in operator ++() 104 return anchor == o.anchor; in operator ==() 110 return anchor != o.anchor; in operator !=() 116 JSON_ASSERT(anchor in key() [all...] |
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/ |
H A D | promote.py | 21 global anchor 22 anchor = 0 variable 24 def anchorname(anchor): 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 [all...] |
H A D | antora-prep.py | 43 titleAnchorPat = re.compile(r'^\[\[(?P<anchor>[^,]+).*\]\]$') 61 def mapAnchor(anchor, title, pageMap, xrefMap, closeAnchor): 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 come [all...] |
/third_party/PyYAML/yaml/ |
H A 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 [all...] |
/third_party/toybox/scripts/ |
H A 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 in main() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/ |
H A D | ARMMCAsmInfo.h | 24 virtual void anchor(); 31 void anchor() override; 40 void anchor() override; 47 void anchor() override;
|
H A D | ARMMCAsmInfo.cpp | 18 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/python/Lib/distutils/ |
H A 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): 188 If 'anchor' is true (the default), then the pattern match is more 190 'anchor' is false, both of these will match. 194 them, will match. 'anchor' is ignored in this case. 196 If 'is_regex' is true, 'anchor' and 'prefix' are ignored, and 207 pattern_re = translate_pattern(pattern, anchor, prefi [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/MCTargetDesc/ |
H A D | X86MCAsmInfo.h | 25 virtual void anchor(); 39 void anchor() override; 46 void anchor() override; 53 void anchor() override;
|
/third_party/curl/lib/ |
H A D | sendf.c | 752 struct Curl_cwriter **anchor = &data->req.writer_stack; in Curl_cwriter_add() local 754 if(!*anchor) { in Curl_cwriter_add() 762 while(*anchor && (*anchor)->phase < writer->phase) in Curl_cwriter_add() 763 anchor = &((*anchor)->next); in Curl_cwriter_add() 764 writer->next = *anchor; in Curl_cwriter_add() 765 *anchor = writer; in Curl_cwriter_add() 772 struct Curl_cwriter **anchor = &data->req.writer_stack; in Curl_cwriter_remove_by_name() local 774 while(*anchor) { in Curl_cwriter_remove_by_name() [all...] |
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/model/ |
H A D | NumberingScheme.java | 233 modified.add(Comment.create(Comment.anchor(mainRegion), ImmutableList.of(comment))); in addSyntheticComments() 238 modified.add(Comment.create(Comment.anchor(r), ImmutableList.of(auxComment))); in addSyntheticComments() 252 Comment.create(Comment.anchor(region), enName), in getRegionNameComments() 633 /** Returns comments with a specified anchor for this numbering scheme. */ 634 public ImmutableList<Comment> getComments(Anchor anchor) { in getComments() argument 635 checkArgument(getAttributes().getRegions().contains(anchor.region()), in getComments() 636 "invalid region: %s", anchor.region()); in getComments() 638 .filter(c -> c.getAnchor().equals(anchor)) in getComments() 657 /** An anchor defining which element, in which territory, a comment should be attached to. */ 660 // Special anchor fo 689 private static Anchor anchor(PhoneRegion region, String label) { anchor() method in NumberingScheme.Comment 694 public static Anchor anchor(PhoneRegion region) { anchor() method in NumberingScheme.Comment 699 public static Anchor anchor(PhoneRegion region, XmlNumberType xmlType) { anchor() method in NumberingScheme.Comment 720 create(Anchor anchor, List<String> lines) create() argument 729 fromText(Anchor anchor, String text) fromText() argument [all...] |
/third_party/node/test/fixtures/wpt/FileAPI/url/ |
H A D | url-in-tags-revoke.window.js | 109 const anchor = document.createElement('a'); 110 anchor.href = url; 111 anchor.target = '_blank'; 112 document.body.appendChild(anchor); 113 anchor.click();
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
H A D | MCAsmInfoCOFF.cpp | 19 void MCAsmInfoCOFF::anchor() {} in anchor() function in MCAsmInfoCOFF 54 void MCAsmInfoMicrosoft::anchor() {} in anchor() function in MCAsmInfoMicrosoft 58 void MCAsmInfoGNUCOFF::anchor() {} in anchor() function in MCAsmInfoGNUCOFF
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
H A D | MCAsmInfoCOFF.h | 17 virtual void anchor(); 24 void anchor() override; 31 void anchor() override;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
H A D | MachineModuleInfoImpls.cpp | 25 void MachineModuleInfoMachO::anchor() {} in anchor() function in MachineModuleInfoMachO 26 void MachineModuleInfoELF::anchor() {} in anchor() function in MachineModuleInfoELF 27 void MachineModuleInfoCOFF::anchor() {} in anchor() function in MachineModuleInfoCOFF
|
/third_party/PyYAML/tests/lib/ |
H A D | test_emitter.py | 9 assert event1.anchor == event2.anchor, (event1, event2) 51 event = yaml.ScalarEvent(event.anchor, event.tag, 54 event = yaml.SequenceStartEvent(event.anchor, event.tag, 57 event = yaml.MappingStartEvent(event.anchor, event.tag, 78 mapping.setdefault('anchor', None)
|
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/model/ |
H A D | CommentsSchemaTest.java | 20 import static 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); 51 private static final Anchor CA_FIXED_LINE = anchor(REGION_CA, XML_FIXED_LINE);
|
/third_party/libabigail/include/ |
H A D | abg-viz-common.h | 82 enum anchor { start, middle }; enum 90 to_attribute(anchor) const; 93 anchor_to_string(anchor) const;
|
/third_party/lz4/lib/ |
H A D | lz4hc.c | 86 #define UPDATABLE(ip, op, anchor) &ip, &op, &anchor 478 #define anchor (*_anchor) in LZ4HC_encodeSequence() macro 486 U32 const pos = (start==NULL) ? 0 : (U32)(anchor - start); in LZ4HC_encodeSequence() 487 U32 const ll = (U32)(ip - anchor); in LZ4HC_encodeSequence() 491 if (start==NULL) start = anchor; /* only works for single segment */ in LZ4HC_encodeSequence() 495 (U32)(ip - anchor), matchLength, (U32)(ip-match), in LZ4HC_encodeSequence() 501 length = (size_t)(ip - anchor); in LZ4HC_encodeSequence() 519 LZ4_wildCopy8(op, anchor, op + length); in LZ4HC_encodeSequence() 545 anchor in LZ4HC_encodeSequence() 551 #undef anchor global() macro 568 const BYTE* anchor = ip; LZ4HC_compress_hashChain() local 1351 const BYTE* anchor = ip; LZ4HC_compress_optimal() local [all...] |
/third_party/python/Tools/unittestgui/ |
H A D | unittestgui.py | 296 statusFrame.pack(anchor=tk.SW, fill=tk.X, side=tk.BOTTOM) 301 leftFrame.pack(fill=tk.BOTH, side=tk.LEFT, anchor=tk.NW, expand=1) 307 progressFrame.pack(fill=tk.X, expand=0, anchor=tk.NW) 308 tk.Label(progressFrame, text="Progress:").pack(anchor=tk.W) 316 buttonFrame.pack(side=tk.LEFT, anchor=tk.NW, fill=tk.Y) 342 expand=1, anchor=tk.W) 345 tk.Label(leftFrame, text="Failures and errors:").pack(anchor=tk.W) 347 listFrame.pack(fill=tk.BOTH, anchor=tk.NW, expand=1) 352 anchor=tk.NW) 354 listScroll.pack(side=tk.LEFT, fill=tk.Y, anchor [all...] |