Home
last modified time | relevance | path

Searched refs:TO_STRING (Results 1 – 15 of 15) sorted by relevance

/external/skqp/tools/flags/
DSkCommandLineFlags.h210 #define TO_STRING(s) TO_STRING2(s) macro
214 SK_UNUSED static bool unused_##name = SkFlagInfo::CreateBoolFlag(TO_STRING(name), \
224 SK_UNUSED static bool unused_##name = SkFlagInfo::CreateBoolFlag(TO_STRING(name), \
225 TO_STRING(shortName),\
234 SK_UNUSED static bool unused_##name = SkFlagInfo::CreateStringFlag(TO_STRING(name), \
241 SK_UNUSED static bool unused_##name = SkFlagInfo::CreateStringFlag(TO_STRING(name), \
252 SK_UNUSED static bool unused_##name = SkFlagInfo::CreateStringFlag(TO_STRING(name), \
253 TO_STRING(shortName), \
265 SK_UNUSED static bool unused_##name = SkFlagInfo::CreateIntFlag(TO_STRING(name), \
272 SK_UNUSED static bool unused_##name = SkFlagInfo::CreateIntFlag(TO_STRING(name), \
[all …]
/external/skia/tools/flags/
DCommandLineFlags.h193 #define TO_STRING(s) TO_STRING2(s) macro
198 TO_STRING(name), nullptr, &FLAGS_##name, defaultValue, helpString)
205 TO_STRING(name), TO_STRING(shortName), &FLAGS_##name, defaultValue, helpString)
212 TO_STRING(name), nullptr, &FLAGS_##name, defaultValue, helpString, nullptr)
216 TO_STRING(name), nullptr, &FLAGS_##name, defaultValue, helpString, extendedHelpString)
222 … SK_UNUSED static bool unused_##name = SkFlagInfo::CreateStringFlag(TO_STRING(name), \
223 TO_STRING(shortName), \
234 SkFlagInfo::CreateIntFlag(TO_STRING(name), &FLAGS_##name, defaultValue, helpString)
239 TO_STRING(name), TO_STRING(shortName), &FLAGS_##name, defaultValue, helpString)
246 SkFlagInfo::CreateDoubleFlag(TO_STRING(name), &FLAGS_##name, defaultValue, helpString)
/external/smali/dexlib2/src/main/java/org/jf/util/
DCharSequenceUtils.java41 private static final Function<Object, String> TO_STRING = Functions.toStringFunction(); field in CharSequenceUtils
44 return Lists.transform(list, TO_STRING).hashCode(); in listHashCode()
48 return Lists.transform(list1, TO_STRING).equals( in listEquals()
49 Lists.transform(list2, TO_STRING)); in listEquals()
/external/ms-tpm-20-ref/TPMCmd/Platform/src/
DNVMem.c68 # define TO_STRING(s) TO_STRING_IMPL(s) in NvFileOpen() macro
70 const char* s_NvFilePath = TO_STRING(NV_FILE_PATH); in NvFileOpen()
71 # undef TO_STRING in NvFileOpen()
/external/libvpx/libvpx/test/
Dvideo_source.h33 #define TO_STRING(S) #S macro
34 #define STRINGIFY(S) TO_STRING(S)
53 #undef TO_STRING
/external/libaom/libaom/test/
Dvideo_source.h32 #define TO_STRING(S) #S macro
33 #define STRINGIFY(S) TO_STRING(S)
52 #undef TO_STRING
/external/conscrypt/common/src/jni/main/cpp/conscrypt/
Djniutil.cc69 env, TO_STRING(JNI_JARJAR_PREFIX) "org/conscrypt/CryptoUpcalls"); in init()
71 env, TO_STRING(JNI_JARJAR_PREFIX) "org/conscrypt/NativeRef"); in init()
73 env, TO_STRING(JNI_JARJAR_PREFIX) "org/conscrypt/OpenSSLBIOInputStream"); in init()
213 return conscrypt::jniutil::throwException(env, TO_STRING(JNI_JARJAR_PREFIX) in throwParsingException()
Dnative_crypto.cc10342 "L" TO_STRING(JNI_JARJAR_PREFIX) "org/conscrypt/NativeCrypto$SSLHandshakeCallbacks;"
10343 #define REF_EC_GROUP "L" TO_STRING(JNI_JARJAR_PREFIX) "org/conscrypt/NativeRef$EC_GROUP;"
10344 #define REF_EC_POINT "L" TO_STRING(JNI_JARJAR_PREFIX) "org/conscrypt/NativeRef$EC_POINT;"
10346 "L" TO_STRING(JNI_JARJAR_PREFIX) "org/conscrypt/NativeRef$EVP_CIPHER_CTX;"
10347 #define REF_EVP_MD_CTX "L" TO_STRING(JNI_JARJAR_PREFIX) "org/conscrypt/NativeRef$EVP_MD_CTX;"
10348 #define REF_EVP_PKEY "L" TO_STRING(JNI_JARJAR_PREFIX) "org/conscrypt/NativeRef$EVP_PKEY;"
10349 #define REF_EVP_PKEY_CTX "L" TO_STRING(JNI_JARJAR_PREFIX) "org/conscrypt/NativeRef$EVP_PKEY_CTX;"
10350 #define REF_HMAC_CTX "L" TO_STRING(JNI_JARJAR_PREFIX) "org/conscrypt/NativeRef$HMAC_CTX;"
10351 #define REF_CMAC_CTX "L" TO_STRING(JNI_JARJAR_PREFIX) "org/conscrypt/NativeRef$CMAC_CTX;"
10352 #define REF_BIO_IN_STREAM "L" TO_STRING(JNI_JARJAR_PREFIX) "org/conscrypt/OpenSSLBIOInputStream;"
[all …]
/external/conscrypt/common/src/jni/main/include/conscrypt/
Dmacros.h21 #define TO_STRING(x) TO_STRING1(x) macro
/external/caliper/examples/src/main/java/examples/
DDoubleToStringBenchmark.java29 TO_STRING { enumConstant
/external/auto/value/src/main/java/com/google/auto/value/processor/
DAutoValueOrOneOfProcessor.java432 vars.toString = methodsToGenerate.containsKey(ObjectMethod.TO_STRING); in defineSharedVarsForType()
471 TO_STRING, enumConstant
485 return ObjectMethod.TO_STRING; in objectMethodToOverride()
/external/guava/guava-tests/test/com/google/common/collect/
DImmutableSortedSetTest.java884 private static final Comparator<Object> TO_STRING = field in ImmutableSortedSetTest
894 new ImmutableSortedSet.Builder<Integer>(TO_STRING).add(3, 12, 101, 44).build(); in testSupertypeComparator()
900 new ImmutableSortedSet.Builder<Number>(TO_STRING).add(3, 12, 101, 44).build(); in testSupertypeComparatorSubtypeElements()
/external/guava/android/guava-tests/test/com/google/common/collect/
DImmutableSortedSetTest.java810 private static final Comparator<Object> TO_STRING = field in ImmutableSortedSetTest
820 new ImmutableSortedSet.Builder<Integer>(TO_STRING).add(3, 12, 101, 44).build(); in testSupertypeComparator()
826 new ImmutableSortedSet.Builder<Number>(TO_STRING).add(3, 12, 101, 44).build(); in testSupertypeComparatorSubtypeElements()
/external/cldr/tools/java/org/unicode/cldr/test/
DCheckCLDR.java725 return TO_STRING.matcher(name()).replaceAll(" $1").toLowerCase(); in toString()
728 static Pattern TO_STRING = PatternCache.get("([A-Z])"); field in CheckCLDR.CheckStatus.Subtype
/external/icu/icu4c/source/common/
Dputil.cpp1500 #define TO_STRING(x) TO_STRING_2(x) macro
1537 dir = TO_STRING(U_TIMEZONE_FILES_DIR); in TimeZoneDataDirInitFn()