Home
last modified time | relevance | path

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

/external/conscrypt/platform/src/main/java/org/conscrypt/ct/
DCertificateEntry.java51 private final LogEntryType entryType; field in CertificateEntry
60 private CertificateEntry(LogEntryType entryType, byte[] certificate, byte[] issuerKeyHash) { in CertificateEntry() argument
61 if (entryType == LogEntryType.PRECERT_ENTRY && issuerKeyHash == null) { in CertificateEntry()
63 } else if (entryType == LogEntryType.X509_ENTRY && issuerKeyHash != null) { in CertificateEntry()
71 this.entryType = entryType; in CertificateEntry()
115 return entryType; in getEntryType()
128 Serialization.writeNumber(output, entryType.ordinal(), CTConstants.LOG_ENTRY_TYPE_LENGTH); in encode()
129 if (entryType == LogEntryType.PRECERT_ENTRY) { in encode()
/external/icu/icu4c/source/i18n/
Dtransreg.cpp436 } entryType; member in TransliteratorEntry
466 entryType = NONE; in TransliteratorEntry()
472 if (entryType == PROTOTYPE) { in ~TransliteratorEntry()
474 } else if (entryType == RBT_DATA) { in ~TransliteratorEntry()
480 } else if (entryType == COMPOUND_RBT) { in ~TransliteratorEntry()
489 if (entryType == PROTOTYPE) { in adoptPrototype()
492 entryType = PROTOTYPE; in adoptPrototype()
498 if (entryType == PROTOTYPE) { in setFactory()
501 entryType = FACTORY; in setFactory()
568 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.java303 Type entryType = ((ParameterizedType) providerType).getActualTypeArguments()[0]; in getProvidedKey() local
306 Key<T> providedKey = (Key<T>) key.ofType(entryType); in getProvidedKey()