Home
last modified time | relevance | path

Searched refs:firstValue (Results 1 – 16 of 16) sorted by relevance

/external/tpm2/
DEntropy.c24 extern int firstValue;
48 firstValue = 1; in _plat__GetEntropy()
54 if(firstValue) in _plat__GetEntropy()
55 firstValue = 0; in _plat__GetEntropy()
DPlatformData.c32 int firstValue; variable
DPlatformData.h39 extern int firstValue;
/external/libxml2/test/relaxng/
D302836.rng6 <value>firstValue</value>
/external/icu/icu4c/source/test/intltest/
Dsimpleformattertest.cpp251 UnicodeString firstValue; in TestTooFewArgumentValues() local
252 UnicodeString *params[] = {&firstValue}; in TestTooFewArgumentValues()
255 firstValue, appendTo, status); in TestTooFewArgumentValues()
Ducharstrietest.cpp829 int32_t firstValue=USTRINGTRIE_HAS_VALUE(firstResult) ? trie.getValue() : -1; in checkFirst() local
833 firstValue!=(USTRINGTRIE_HAS_VALUE(firstResult) ? trie.getValue() : -1) || in checkFirst()
843 firstValue=USTRINGTRIE_HAS_VALUE(firstResult) ? trie.getValue() : -1; in checkFirst()
847 firstValue!=(USTRINGTRIE_HAS_VALUE(firstResult) ? trie.getValue() : -1) || in checkFirst()
Dbytestrietest.cpp676 int32_t firstValue=USTRINGTRIE_HAS_VALUE(firstResult) ? trie.getValue() : -1; in checkFirst() local
680 firstValue!=(USTRINGTRIE_HAS_VALUE(firstResult) ? trie.getValue() : -1) || in checkFirst()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DCharsTrieTest.java707 int firstValue=firstResult.hasValue() ? trie.getValue() : -1; in checkFirst() local
711 firstValue!=(firstResult.hasValue() ? trie.getValue() : -1) || in checkFirst()
721 firstValue=firstResult.hasValue() ? trie.getValue() : -1; in checkFirst()
725 firstValue!=(firstResult.hasValue() ? trie.getValue() : -1) || in checkFirst()
DBytesTrieTest.java578 int firstValue=firstResult.hasValue() ? trie.getValue() : -1; in checkFirst() local
583 firstValue!=(firstResult.hasValue() ? trie.getValue() : -1) || in checkFirst()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DCharsTrieTest.java706 int firstValue=firstResult.hasValue() ? trie.getValue() : -1; in checkFirst() local
710 firstValue!=(firstResult.hasValue() ? trie.getValue() : -1) || in checkFirst()
720 firstValue=firstResult.hasValue() ? trie.getValue() : -1; in checkFirst()
724 firstValue!=(firstResult.hasValue() ? trie.getValue() : -1) || in checkFirst()
DBytesTrieTest.java577 int firstValue=firstResult.hasValue() ? trie.getValue() : -1; in checkFirst() local
582 firstValue!=(firstResult.hasValue() ? trie.getValue() : -1) || in checkFirst()
/external/icu/icu4c/source/common/
Duloc_tag.c1587 UBool firstValue = TRUE; in _appendKeywords() local
1591 if (firstValue) { in _appendKeywords()
1594 firstValue = FALSE; in _appendKeywords()
1666 UBool firstValue = TRUE; in _appendPrivateuseToLanguageTag() local
1687 if (firstValue) { in _appendPrivateuseToLanguageTag()
1706 if (firstValue) { in _appendPrivateuseToLanguageTag()
1725 firstValue = FALSE; in _appendPrivateuseToLanguageTag()
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DXMPNormalizer.java616 String firstValue = dcRightsArray.getChild(1).getValue(); in migrateAudioCopyright() local
618 firstValue, null); in migrateAudioCopyright()
/external/pdfium/xfa/fxfa/fm2js/
Dxfa_fm2jscontext.h402 CFXJSE_Value* firstValue,
Dxfa_fm2jscontext.cpp5938 CFXJSE_Value* firstValue, in simpleValueCompare() argument
5940 if (!firstValue) in simpleValueCompare()
5943 if (firstValue->IsString()) { in simpleValueCompare()
5945 ValueToUTF8String(firstValue, firstString); in simpleValueCompare()
5949 if (firstValue->IsNumber()) { in simpleValueCompare()
5950 FX_FLOAT first = ValueToFloat(pThis, firstValue); in simpleValueCompare()
5954 if (firstValue->IsBoolean()) in simpleValueCompare()
5955 return (firstValue->ToBoolean() == secondValue->ToBoolean()); in simpleValueCompare()
5957 return firstValue->IsNull() && secondValue && secondValue->IsNull(); in simpleValueCompare()
/external/clang/include/clang/AST/
DDecl.h608 static bool classofKind(Kind K) { return K >= firstValue && K <= lastValue; } in classofKind()