Searched defs:fallback (Results 1 - 25 of 28) sorted by relevance

12

/external/webkit/Source/WebCore/platform/win/
H A DLanguageWin.cpp33 static String localeInfo(LCTYPE localeType, const String& fallback) argument
38 return fallback;
43 return fallback;
45 return fallback;
/external/chromium/chrome/common/
H A Dbadge_util.cc32 // Skia doesn't do any font fallback---if the user is missing the font then
33 // typeface will be NULL. If we don't do manual fallback then we'll crash.
58 const string16& fallback) {
74 badge_text = UTF16ToUTF8(fallback);
55 DrawBadgeIconOverlay(const SkBitmap& icon, float font_size, const string16& text, const string16& fallback) argument
/external/webkit/Source/JavaScriptCore/yarr/
H A DYarrJIT.h62 void setFallBack(bool fallback) { m_needFallBack = fallback; } argument
/external/webkit/Source/WebCore/platform/graphics/wx/
H A DFontCacheWx.cpp84 SimpleFontData* fallback = 0; local
90 fallback = getCachedFontData(fontDescription, fallbackName);
91 ASSERT(fallback);
93 return fallback;
/external/icu4c/common/
H A Dservlk.cpp123 LocaleKey::fallback() { function in class:LocaleKey
127 _currentID.remove(x); // truncate current or fallback, whichever we're pointing to
H A Dserv.cpp62 ICUServiceKey::fallback() function in class:ICUServiceKey
519 // fallback to the one that succeeded, we want to hit the
537 } while (key.fallback());
699 // fallback
702 while (fallbackKey->fallback()) {
/external/webkit/Source/JavaScriptCore/jit/
H A DSpecializedThunkJIT.h126 MacroAssemblerCodePtr finalize(MacroAssemblerCodePtr fallback) argument
129 patchBuffer.link(m_failures, CodeLocationLabel(fallback));
/external/chromium/chrome/browser/
H A Dspellcheck_host_impl.cc152 // Check if the dictionary exists in the fallback location. If so, use it
154 FilePath fallback = GetFallbackFilePath(bdict_file_path_); local
156 file_util::PathExists(fallback)) {
157 bdict_file_path_ = fallback;
/external/icu4c/tools/toolutil/
H A Ducmstate.c588 /* find a fallback for this offset; return the index or -1 if not found */
599 /* do a linear search for the fallback mapping (the table is not yet sorted) */
622 int32_t i, j, leadState, trailState, newState, fallback; local
775 * Note that fallback mappings need to get their offset values adjusted.
793 /* copy assigned-character code units and adjust fallback offsets */
800 if(unit==0xfffe && (fallback=ucm_findFallback(toUFallbacks, countToUFallbacks, oldOffset))>=0) {
801 toUFallbacks[fallback].offset=0x80000000|offset;
821 /* remove temporary flags from fallback offsets that protected them from being modified twice */
/external/dhcpcd/
H A Dif-options.h117 char *fallback; member in struct:if_options
/external/linux-tools-perf/
H A Dbuiltin-help.c359 const char *fallback = getenv("PERF_MAN_VIEWER"); local
365 if (fallback)
366 exec_viewer(fallback, page);
/external/icu4c/test/cintltst/
H A Dncnvfbts.c130 const char *codepage, UBool fallback, const int32_t *expectOffsets)
171 ucnv_setFallback (conv, fallback);
173 if(action != fallback){
174 log_err("FAIL: Error is setting fallback. Errocode=%s\n", myErrorName(status));
293 const char *codepage, UBool fallback, const int32_t *expectOffsets)
342 /*----setting the fallback routine----*/
343 ucnv_setFallback (conv, fallback);
345 if(action != fallback){
346 log_err("FAIL: Error is setting fallback. Errocode=%s\n", myErrorName(status));
576 log_verbose("toUnicode fallback wit
129 testConvertFromUnicode(const UChar *source, int sourceLen, const uint8_t *expect, int expectLen, const char *codepage, UBool fallback, const int32_t *expectOffsets) argument
292 testConvertToUnicode( const uint8_t *source, int sourcelen, const UChar *expect, int expectlen, const char *codepage, UBool fallback, const int32_t *expectOffsets) argument
[all...]
/external/webkit/Source/ThirdParty/ANGLE/src/libGLESv2/geometry/
H A DVertexDataManager.cpp356 // VertexTypeMapping maps GL type & normalized flag to preferred and fallback D3D vertex types (as D3DVertexType enums).
366 enum { fallback = Fallback }; enumerator in enum:gl::VertexTypeMappingBase::__anon14481
415 // Policy rules for use with Converter, to choose whether to use the preferred or fallback conversion.
416 // The fallback conversion produces an output that all D3D9 devices must support.
418 template <class T> struct UseFallback { enum { type = T::fallback }; };
420 // Converter ties it all together. Given an OpenGL type/norm/size and choice of preferred/fallback conversion,
/external/dbus/dbus/
H A Ddbus-object-tree.c382 * @param fallback #TRUE to handle messages to children of this path
392 dbus_bool_t fallback,
431 subtree->invoke_as_fallback = fallback != FALSE;
1027 * Lists the registered fallback handlers and object path handlers at
1298 dbus_bool_t handler_fallback; /**< true if the handler may be called as fallback */
1328 dbus_bool_t fallback,
1337 tree_test_data[i].handler_fallback = fallback;
1340 if (!_dbus_object_tree_register (tree, fallback, path,
391 _dbus_object_tree_register(DBusObjectTree *tree, dbus_bool_t fallback, const char **path, const DBusObjectPathVTable *vtable, void *user_data, DBusError *error) argument
1326 do_register(DBusObjectTree *tree, const char **path, dbus_bool_t fallback, int i, TreeTestData *tree_test_data) argument
/external/icu4c/extra/uconv/
H A Duconv.cpp562 UBool fallback,
585 UBool fallback,
723 ucnv_setFallback(convto, fallback);
1107 UBool fallback = FALSE; local
1172 } else if (!strcmp("--fallback", *iter)) {
1173 fallback = TRUE;
1174 } else if (!strcmp("--no-fallback", *iter)) {
1175 fallback = FALSE;
1352 fromucallback, fromuctxt, fallback, translit, *iter,
1361 fromucallback, fromuctxt, fallback, transli
578 convertFile(const char *pname, const char *fromcpage, UConverterToUCallback toucallback, const void *touctxt, const char *tocpage, UConverterFromUCallback fromucallback, const void *fromuctxt, UBool fallback, const char *translit, const char *infilestr, FILE * outfile, int verbose) argument
[all...]
/external/icu4c/i18n/
H A Ddtitvfmt.cpp655 // use fallback
967 fallback{"{0} - {1}"}
1297 UnicodeString fallback; local
1298 MessageFormat::format(fallbackPattern, fmtArray, 2, fallback, status);
1300 appendTo.append(fallback);
H A Ducurr.cpp243 // don't use ICUService since we don't need fallback
470 // There is nothing to fallback to. Report the failure/warning if possible.
493 * @return TRUE if the fallback happened; FALSE if locale is already
496 static UBool fallback(char *loc) { function
543 // fallback. That is, if a currency is not found in the en_US
548 // We want multi-level fallback for this resource, so we implement
574 // Fetch resource with multi-level resource inheritance fallback
580 // If we've succeeded we're done. Otherwise, try to fallback.
654 // Fetch resource with multi-level resource inheritance fallback
671 // If we've succeeded we're done. Otherwise, try to fallback
[all...]
/external/libxml2/
H A Dxinclude.c61 int emptyFb; /* flag to show fallback empty */
1923 * @fallback: the fallback node
1926 * Load the content of the fallback node, and store the result
1932 xmlXIncludeLoadFallback(xmlXIncludeCtxtPtr ctxt, xmlNodePtr fallback, int nr) { argument
1936 if ((fallback == NULL) || (ctxt == NULL))
1938 if (fallback->children != NULL) {
1940 * It's possible that the fallback also has 'includes'
1941 * (Bug 129969), so we re-process the fallback just in case
1949 ret = xmlXIncludeDoProcess(newctxt, ctxt->doc, fallback
[all...]
/external/openssl/crypto/err/
H A Derr.c1006 static ERR_STATE fallback; local
1020 if (ret == NULL) return(&fallback);
1034 return(&fallback);
/external/svox/pico/lib/
H A Dpicosa.c524 picoos_uint16 fallback; local
602 fallback = 0;
604 &prevout, &fallback)) {
605 if (fallback) {
606 prevout = fallback;
H A Dpicokdt.c1265 /* set fallback value in case of failed mapping, and set upper bound pos */
1297 PICODBG_DEBUG(("no mapping found, fallback: %d", *outfallbackval));
1364 /* set fallback value in case of failed mapping, and set upper bound pos */
1393 PICODBG_DEBUG(("outside imt %d, posb/pos/i: %d/%d/%d, fallback: %d",
1507 /* set fallback value in case of failed mapping, and set upper bound pos */
1539 PICODBG_DEBUG(("no mapping found, fallback: %d", *outfallbackval));
1718 picoos_uint16 fallback; /* fallback value for failed graph encodings */ local
1747 &fallback)) {
1748 if (fallback) {
1910 picoos_uint16 fallback = 0; local
2048 picoos_uint16 fallback = 0; local
2287 picoos_uint16 fallback = 0; local
2381 picoos_uint16 fallback = 0; local
2523 picoos_uint16 fallback = 0; local
[all...]
/external/webkit/Source/WebCore/plugins/gtk/
H A Dgtk2xtbin.c121 static String *fallback = NULL; variable
348 fallback = f;
563 if (fallback)
564 XtAppSetFallbackResources(app_context, fallback);
/external/dnsmasq/src/
H A Drfc2131.c85 static struct in_addr server_id(struct dhcp_context *context, struct in_addr override, struct in_addr fallback);
140 struct in_addr subnet_addr, fallback, override; local
343 fallback = context->local;
835 option_addr(opt).s_addr != server_id(context, override, fallback).s_addr)
868 option_addr(opt).s_addr != server_id(context, override, fallback).s_addr)
956 option_put(mess, end, OPTION_SERVER_IDENTIFIER, INADDRSZ, ntohl(server_id(context, override, fallback).s_addr));
1125 option_put(mess, end, OPTION_SERVER_IDENTIFIER, INADDRSZ, ntohl(server_id(context, override, fallback).s_addr));
1225 option_put(mess, end, OPTION_SERVER_IDENTIFIER, INADDRSZ, ntohl(server_id(context, override, fallback).s_addr));
1280 option_put(mess, end, OPTION_SERVER_IDENTIFIER, INADDRSZ, ntohl(server_id(context, override, fallback).s_addr));
1353 static struct in_addr server_id(struct dhcp_context *context, struct in_addr override, struct in_addr fallback) argument
[all...]
/external/webkit/Source/WebCore/platform/efl/
H A DRenderThemeEfl.cpp355 static RenderTheme* fallback = RenderThemeEfl::create(0).releaseRef(); local
356 return fallback;
/external/webkit/Source/WebCore/platform/qt/
H A DRenderThemeQt.cpp94 If a widget is not directly available for rendering, we fallback to default
173 static RenderTheme* fallback = RenderThemeQt::create(0).releaseRef(); local
174 return fallback;
248 // for some widget painting, we need to fallback to Windows style
823 // for drawing the combo box arrow, rely only on the fallback style

Completed in 674 milliseconds

12