/external/conscrypt/common/src/main/java/org/conscrypt/ |
D | TrustedCertificateIndex.java | 45 public TrustedCertificateIndex(Set<TrustAnchor> anchors) { in TrustedCertificateIndex() argument 46 index(anchors); in TrustedCertificateIndex() 49 private void index(Set<TrustAnchor> anchors) { in index() argument 50 for (TrustAnchor anchor : anchors) { in index() 71 List<TrustAnchor> anchors = subjectToTrustAnchors.get(subject); in index() local 72 if (anchors == null) { in index() 73 anchors = new ArrayList<TrustAnchor>(1); in index() 74 subjectToTrustAnchors.put(subject, anchors); in index() 78 for (TrustAnchor entry : anchors) { in index() 85 anchors.add(anchor); in index() [all …]
|
D | TrustManagerImpl.java | 544 Set<TrustAnchor> anchors = findAllTrustAnchorsByIssuerAndSignature(current); in checkTrustedRecursive() local 546 for (TrustAnchor anchor : sortPotentialAnchors(anchors)) { in checkTrustedRecursive() 784 private static Collection<TrustAnchor> sortPotentialAnchors(Set<TrustAnchor> anchors) { in sortPotentialAnchors() argument 785 if (anchors.size() <= 1) { in sortPotentialAnchors() 786 return anchors; in sortPotentialAnchors() 788 List<TrustAnchor> sortedAnchors = new ArrayList<TrustAnchor>(anchors); in sortPotentialAnchors()
|
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ |
D | TrustedCertificateIndex.java | 48 public TrustedCertificateIndex(Set<TrustAnchor> anchors) { in TrustedCertificateIndex() argument 49 index(anchors); in TrustedCertificateIndex() 52 private void index(Set<TrustAnchor> anchors) { in index() argument 53 for (TrustAnchor anchor : anchors) { in index() 75 List<TrustAnchor> anchors = subjectToTrustAnchors.get(subject); in index() local 76 if (anchors == null) { in index() 77 anchors = new ArrayList<TrustAnchor>(1); in index() 78 subjectToTrustAnchors.put(subject, anchors); in index() 82 for (TrustAnchor entry : anchors) { in index() 89 anchors.add(anchor); in index() [all …]
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/composer/ |
D | Composer.java | 51 private final Map<String, Node> anchors; field in Composer 57 this.anchors = new HashMap<String, Node>(); in Composer() 125 this.anchors.clear(); in composeDocument() 135 if (!anchors.containsKey(anchor)) { in composeNode() 139 Node result = anchors.get(anchor); in composeNode() 176 anchors.put(anchor, node); in composeScalarNode() 196 anchors.put(anchor, node); in composeSequenceNode() 222 anchors.put(anchor, node); in composeMappingNode()
|
/external/snakeyaml/src/main/java/org/yaml/snakeyaml/serializer/ |
D | Serializer.java | 59 private Map<Node, String> anchors; field in Serializer 74 this.anchors = new HashMap<Node, String>(); in Serializer() 115 this.anchors.clear(); in serialize() 122 if (this.anchors.containsKey(node)) { in anchorNode() 123 String anchor = this.anchors.get(node); in anchorNode() 126 this.anchors.put(node, anchor); in anchorNode() 129 this.anchors.put(node, null); in anchorNode() 156 String tAlias = this.anchors.get(node); in serializeNode()
|
/external/curl/lib/vtls/ |
D | bearssl.c | 50 br_x509_trust_anchor *anchors; member 64 br_x509_trust_anchor *anchors; member 93 static CURLcode load_cafile(const char *path, br_x509_trust_anchor **anchors, in load_cafile() argument 114 ca.anchors = NULL; in load_cafile() 138 if(ca.anchors_len == SIZE_MAX / sizeof(ca.anchors[0])) { in load_cafile() 143 new_anchors = realloc(ca.anchors, in load_cafile() 144 new_anchors_len * sizeof(ca.anchors[0])); in load_cafile() 149 ca.anchors = new_anchors; in load_cafile() 153 ta = &ca.anchors[ca.anchors_len - 1]; in load_cafile() 221 *anchors = ca.anchors; in load_cafile() [all …]
|
/external/tensorflow/tensorflow/core/api_def/base_api/ |
D | api_def_GenerateBoundingBoxProposals.pbtxt | 7 …ges, height, width, num_achors]` containing scores of the boxes for given anchors, can be unsorted. 24 name: "anchors" 67 …s Region of Interests from given bounding boxes(bbox_deltas) encoded wrt anchors according to eq.2… 69 The op selects top `pre_nms_topn` scoring boxes, decodes them with respect to anchors, 76 `anchors`: A 1D tensor of shape [4 x Num Anchors], representing the anchors.
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | FormattedFileWriter.java | 31 private Set<String[]> anchors = new TreeSet<String[]>(PC); field in FormattedFileWriter.Anchors 44 ArrayList<String[]> anchorList = new ArrayList<>(anchors); // flatten in toString() 85 anchors.add(new String[] { title, fileName, explanation }); in add() 107 … public FormattedFileWriter(String baseFileName, String title, String explanation, Anchors anchors) in FormattedFileWriter() argument 117 this.localeAnchors = anchors; in FormattedFileWriter()
|
D | ChartSubdivisionNames.java | 69 FormattedFileWriter.Anchors anchors = new FormattedFileWriter.Anchors(); in writeContents() local 70 writeSubcharts(anchors); in writeContents() 72 pw.write(anchors.toString()); in writeContents() 75 public void writeSubcharts(Anchors anchors) throws IOException { in writeSubcharts() argument 165 …hart(name + " Subdivision Names", FileUtilities.anchorize(name), tablePrinter).writeChart(anchors); in writeSubcharts()
|
D | ChartAnnotations.java | 83 FormattedFileWriter.Anchors anchors = new FormattedFileWriter.Anchors(); in writeContents() local 84 writeSubcharts(anchors); in writeContents() 86 pw.write(anchors.toString()); in writeContents() 107 public void writeSubcharts(Anchors anchors) throws IOException { in writeSubcharts() argument 227 …w Subchart(name + " Annotations", FileUtilities.anchorize(name), tablePrinter).writeChart(anchors); in writeSubcharts()
|
D | ChartCollation.java | 99 FormattedFileWriter.Anchors anchors = new FormattedFileWriter.Anchors(); in writeContents() local 100 writeSubcharts(anchors); in writeContents() 102 pw.write(anchors.toString()); in writeContents() 110 public void writeSubcharts(Anchors anchors) throws IOException { in writeSubcharts() argument 202 …new Subchart(ENGLISH.getName(locale, true, CLDRFile.SHORT_ALTS), locale, data).writeChart(anchors); in writeSubcharts()
|
D | ChartDelta.java | 199 FormattedFileWriter.Anchors anchors = new FormattedFileWriter.Anchors(); in writeContents() local 204 writeNonLdmlPlain(anchors); in writeContents() 205 writeLdml(anchors); in writeContents() 207 pw.write(anchors.toString()); in writeContents() 295 private void writeLdml(Anchors anchors) throws IOException { in writeLdml() argument 462 writeDiffs(anchors, base, diff, tsvFile, counts); in writeLdml() 691 …private void writeDiffs(Anchors anchors, String file, String title, Multimap<PathHeader, String> b… in writeDiffs() argument 724 writeTable(anchors, file, tablePrinter, title, tsvFile); in writeDiffs() 747 …private void writeDiffs(Anchors anchors, String file, Set<PathDiff> diff, PrintWriter tsvFile, Cou… in writeDiffs() argument 796 writeTable(anchors, file, tablePrinter, title, tsvFile); in writeDiffs() [all …]
|
D | Chart.java | 129 public final void writeChart(Anchors anchors) { in writeChart() argument 131 …tedFileWriter x = new FormattedFileWriter(getFileName(), getTitle(), getExplanation(), anchors);) { in writeChart() argument
|
/external/skqp/platform_tools/android/apps/arcore/src/main/cpp/ |
D | hello_ar_application.cc | 548 std::vector<ArAnchor*> anchors = planeAnchors->second; in OnTouchedFirst() local 550 LOGI("Size of anchor list: %d", (int) anchors.size()); in OnTouchedFirst() 551 for(ArAnchor* const& anchor: anchors) { in OnTouchedFirst() 644 std::vector<ArAnchor*> anchors = planeAnchors->second; in AddAnchor() local 645 anchors.push_back(anchor); in AddAnchor() 646 plane_anchors_map_[containingPlane] = anchors; in AddAnchor() 650 std::vector<ArAnchor*> anchors; in AddAnchor() local 651 anchors.push_back(anchor); in AddAnchor() 652 plane_anchors_map_.insert({containingPlane, anchors}); in AddAnchor() 806 std::vector<ArAnchor*> anchors = planeAnchors->second; in RemoveAnchor() local [all …]
|
/external/fonttools/Lib/fontTools/ufoLib/ |
D | glifLib.py | 695 anchors = getattr(glyphObject, "anchors", None) 696 if formatVersion.major >= 2 and anchors: 703 if formatVersion.major == 1 and anchors: 704 _writeAnchorsFormat1(pen, anchors, validate) 855 def _writeAnchorsFormat1(pen, anchors, validate): argument 856 if validate and not anchorsValidator(anchors): 858 for anchor in anchors: 872 anchors = getattr(glyphObject, "anchors", []) 873 if validate and not anchorsValidator(anchors): 875 for anchor in anchors: [all …]
|
/external/harfbuzz_ng/src/ |
D | hb-aat-layout-ankr-table.hh | 70 const GlyphAnchors &anchors = &(this+anchorData) + *offset; in get_anchor() local 71 return anchors[i]; in get_anchor()
|
/external/skqp/platform_tools/android/apps/skar_java/src/main/java/com/google/skar/examples/helloskar/app/ |
D | HelloCanvasAR.java | 114 private final ArrayList<Anchor> anchors = new ArrayList<>(); field in HelloCanvasAR 424 if (anchors.size() >= MAX_NUMBER_DRAWABLES) { in handleSingleTaps() 425 anchors.get(0).detach(); in handleSingleTaps() 426 anchors.remove(0); in handleSingleTaps() 428 anchors.add(hit.createAnchor()); in handleSingleTaps() 488 for (Anchor anchor : anchors) { in drawModels()
|
/external/scapy/scapy/layers/tls/ |
D | cert.py | 823 def verify(self, anchors): argument 825 for a in anchors: 882 def verifyChain(self, anchors, untrusted=None): argument 891 for a in anchors: 921 anchors = [Cert(c) for c in split_pem(ca_certs)] 933 return self.verifyChain(anchors, untrusted) 944 anchors = [] 946 anchors.append(Cert(open(cafile).read())) 960 return self.verifyChain(anchors, untrusted)
|
/external/openscreen/cast/common/certificate/proto/ |
D | test_suite.proto | 63 // Chooses between test and production trust anchors for device certificates 64 // and CRLs. Defaults to using the test trust anchors.
|
/external/fonttools/Lib/fontTools/otlLib/ |
D | builder.py | 950 for glyph, anchors in self.bases.items(): 951 bases[glyph] = {markClasses[mc]: anchor for (mc, anchor) in anchors.items()} 1091 anchors = [self.baseMarks[base].get(mc) for mc in markClassList] 1092 st.Mark2Array.Mark2Record.append(buildMark2Record(anchors)) 1639 anchors = [b.get(markClass) for markClass in range(numMarkClasses)] 1640 self.BaseRecord.append(buildBaseRecord(anchors)) 1645 def buildBaseRecord(anchors): argument 1648 self.BaseAnchor = anchors 1652 def buildComponentRecord(anchors): argument 1667 if not anchors: [all …]
|
/external/fonttools/Doc/source/otlLib/ |
D | index.rst | 7 ``GSUB`` and ``GPOS`` tables: substitution and positioning rules, anchors, 40 as defined in the OpenType spec: value records, anchors, mark arrays and
|
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v1/ |
D | GenerateBoundingBoxProposals.pbtxt | 16 name: "anchors"
|
/external/tensorflow/tensorflow/core/ops/compat/ops_history_v2/ |
D | GenerateBoundingBoxProposals.pbtxt | 16 name: "anchors"
|
/external/perfetto/infra/perfetto.dev/src/assets/ |
D | script.js | 76 const anchors = document.querySelectorAll('.doc a.anchor'); 78 for (const anchor of anchors) {
|
/external/fonttools/Tests/ufoLib/ |
D | testSupport.py | 31 self.anchors = None 81 if self.anchors is not None: 82 text.append("glyph.anchors = %s" % _listToString(self.anchors))
|