/external/icu4c/common/ |
ucnv_ext.cpp | 125 UBool /*useFallback*/, UBool flush) { 170 TO_U_USE_FALLBACK(useFallback)) && 209 TO_U_USE_FALLBACK(useFallback)) && 291 cnv->useFallback, flush); 332 UBool useFallback) { 345 useFallback, TRUE); 378 cnv->useFallback, pArgs->flush); 506 * @param useFallback "use fallback" flag, usually from cnv->useFallback 524 UBool useFallback, UBool flush) [all...] |
ucnv_cnv.h | 268 #define TO_U_USE_FALLBACK(useFallback) TRUE 271 /** Use fallbacks from Unicode to codepage when cnv->useFallback or for private-use code points */ 273 #define FROM_U_USE_FALLBACK(useFallback, c) ((useFallback) || IS_PRIVATE_USE(c)) 274 #define UCNV_FROM_U_USE_FALLBACK(cnv, c) FROM_U_USE_FALLBACK((cnv)->useFallback, c)
|
ucnv2022.cpp | [all...] |
ucnv_ct.c | 338 UBool useFallback = cnv->useFallback; 408 pValueLength = ucnv_MBCSFromUChar32(myConverterData->myConverterArray[i], sourceChar, &pValue, useFallback); 426 pValueLength = ucnv_MBCSFromUChar32(myConverterData->myConverterArray[currentState], sourceChar, &pValue, useFallback);
|
ucnvmbcs.h | 493 UBool useFallback); 502 uint8_t b, UBool useFallback); 544 UBool useFallback); 555 UBool useFallback);
|
ucnvmbcs.c | 782 UBool useFallback; 786 useFallback=(UBool)(which==UCNV_ROUNDTRIP_AND_FALLBACK_SET); [all...] |
ucnv_bld.h | 181 UBool useFallback;
|
ucnv_ext.h | 358 UBool useFallback); 378 UBool useFallback);
|
ucnvhz.c | 270 tempBuf, 2, args->converter->useFallback); 380 mySourceChar,&targetUniChar,args->converter->useFallback);
|
ucnv.c | [all...] |
/external/webkit/Source/WebCore/loader/ |
SubframeLoader.cpp | 98 bool useFallback; 99 return shouldUsePlugin(completedURL, mimeType, shouldPreferPlugInsForImages, false, useFallback); 102 bool SubframeLoader::requestPlugin(HTMLPlugInImageElement* ownerElement, const KURL& url, const String& mimeType, const Vector<String>& paramNames, const Vector<String>& paramValues, bool useFallback) 121 return loadPlugin(ownerElement, url, mimeType, paramNames, paramValues, useFallback); 139 bool useFallback; 140 if (shouldUsePlugin(completedURL, mimeType, ownerElement->shouldPreferPlugInsForImages(), renderer->hasFallbackContent(), useFallback)) 141 return requestPlugin(ownerElement, completedURL, mimeType, paramNames, paramValues, useFallback); 300 bool SubframeLoader::shouldUsePlugin(const KURL& url, const String& mimeType, bool shouldPreferPlugInsForImages, bool hasFallback, bool& useFallback) 303 useFallback = false; 319 useFallback = objectType == ObjectContentNone && hasFallback [all...] |
SubframeLoader.h | 83 bool requestPlugin(HTMLPlugInImageElement*, const KURL&, const String& serviceType, const Vector<String>& paramNames, const Vector<String>& paramValues, bool useFallback); 87 const Vector<String>& paramNames, const Vector<String>& paramValues, bool useFallback); 89 bool shouldUsePlugin(const KURL&, const String& mimeType, bool shouldPreferPlugInsForImages, bool hasFallback, bool& useFallback);
|
/external/chromium/webkit/glue/ |
cpp_bound_class_unittest.cc | 86 ExampleTestShell* host = new ExampleTestShell(useFallback()); 148 virtual bool useFallback() { 158 virtual bool useFallback() {
|
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
BugReporter.h | 183 const StringRef getShortDescription(bool UseFallback = true) const { 184 if (ShortDescription.empty() && UseFallback)
|
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/ |
VertexDataManager.cpp | 418 template <class T> struct UseFallback { enum { type = T::fallback }; }; 454 TRANSLATION(type, norm, size, UseFallback) \
|
/frameworks/base/core/java/android/speech/tts/ |
TextToSpeech.java | 592 String packageName, boolean useFallback) { 596 mUseFallback = useFallback; [all...] |
/external/icu4c/test/cintltst/ |
nucnvtst.c | 376 const char *codepage, const int32_t *expectOffsets , UBool useFallback) 411 if(useFallback){ 412 ucnv_setFallback(conv,useFallback); 533 const char *codepage, const int32_t *expectOffsets, UBool useFallback) 570 if(useFallback){ 571 ucnv_setFallback(conv,useFallback); [all...] |