Home
last modified time | relevance | path

Searched refs:entryType (Results 1 – 5 of 5) sorted by relevance

/external/conscrypt/common/src/main/java/org/conscrypt/ct/
DCertificateEntry.java49 private final LogEntryType entryType; field in CertificateEntry
58 private CertificateEntry(LogEntryType entryType, byte[] certificate, byte[] issuerKeyHash) { in CertificateEntry() argument
59 if (entryType == LogEntryType.PRECERT_ENTRY && issuerKeyHash == null) { in CertificateEntry()
61 } else if (entryType == LogEntryType.X509_ENTRY && issuerKeyHash != null) { in CertificateEntry()
69 this.entryType = entryType; in CertificateEntry()
113 return entryType; in getEntryType()
126 Serialization.writeNumber(output, entryType.ordinal(), CTConstants.LOG_ENTRY_TYPE_LENGTH); in encode()
127 if (entryType == LogEntryType.PRECERT_ENTRY) { in encode()
/external/conscrypt/repackaged/common/src/main/java/com/android/org/conscrypt/ct/
DCertificateEntry.java54 private final LogEntryType entryType; field in CertificateEntry
63 private CertificateEntry(LogEntryType entryType, byte[] certificate, byte[] issuerKeyHash) { in CertificateEntry() argument
64 if (entryType == LogEntryType.PRECERT_ENTRY && issuerKeyHash == null) { in CertificateEntry()
66 } else if (entryType == LogEntryType.X509_ENTRY && issuerKeyHash != null) { in CertificateEntry()
74 this.entryType = entryType; in CertificateEntry()
118 return entryType; in getEntryType()
131 Serialization.writeNumber(output, entryType.ordinal(), CTConstants.LOG_ENTRY_TYPE_LENGTH); in encode()
132 if (entryType == LogEntryType.PRECERT_ENTRY) { in encode()
/external/icu/icu4c/source/i18n/
Dtransreg.cpp454 } entryType; member in TransliteratorEntry
484 entryType = NONE; in TransliteratorEntry()
490 if (entryType == PROTOTYPE) { in ~TransliteratorEntry()
492 } else if (entryType == RBT_DATA) { in ~TransliteratorEntry()
498 } else if (entryType == COMPOUND_RBT) { in ~TransliteratorEntry()
507 if (entryType == PROTOTYPE) { in adoptPrototype()
510 entryType = PROTOTYPE; in adoptPrototype()
516 if (entryType == PROTOTYPE) { in setFactory()
519 entryType = FACTORY; in setFactory()
593 if (entry->entryType == TransliteratorEntry::RULES_FORWARD || in reget()
[all …]
/external/clang/lib/CodeGen/
DSwiftCallingConv.cpp305 if (auto entryType = getCommonType(Entries[index].Type, type)) { in addEntry() local
306 Entries[index].Type = entryType; in addEntry()
/external/guice/core/src/com/google/inject/internal/
DInjectorImpl.java313 Type entryType = ((ParameterizedType) providerType).getActualTypeArguments()[0]; in getProvidedKey() local
316 Key<T> providedKey = (Key<T>) key.ofType(entryType); in getProvidedKey()