HomeSort by relevance Sort by last modified time
    Searched defs:fallback (Results 1 - 25 of 37) sorted by null

1 2

  /development/apps/Fallback/src/com/android/fallback/
Fallback.java 17 package com.android.fallback;
26 public class Fallback extends Activity {
30 setContentView(R.layout.fallback);
  /external/webkit/Source/WebCore/platform/graphics/wx/
FontCacheWx.cpp 84 SimpleFontData* fallback = 0; local
90 fallback = getCachedFontData(fontDescription, fallbackName);
91 ASSERT(fallback);
93 return fallback;
  /external/icu4c/common/
servlk.cpp 123 LocaleKey::fallback() { function in class:LocaleKey
127 _currentID.remove(x); // truncate current or fallback, whichever we're pointing to
serv.cpp 62 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/chromium/chrome/browser/
spellcheck_host_impl.cc 152 // 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/
ucmstate.c 588 /* 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 */
    [all...]
  /external/dhcpcd/
if-options.h 115 char *fallback; member in struct:if_options
  /external/linux-tools-perf/
builtin-help.c 359 const char *fallback = getenv("PERF_MAN_VIEWER"); local
365 if (fallback)
366 exec_viewer(fallback, page);
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
TranslationDetector.java 93 "run in a specific locale, but it's still a good idea to provide a fallback.)",
289 // Do we need to resolve fallback strings for regions that only define a subset
302 Set<String> fallback = languageToStrings.get(language); local
303 if (fallback != null) {
304 strings.addAll(fallback);
  /external/openssl/crypto/err/
err.c 1006 static ERR_STATE fallback; local
1020 if (ret == NULL) return(&fallback);
1034 return(&fallback);
  /external/svox/pico/lib/
picosa.c 524 picoos_uint16 fallback; local
602 fallback = 0;
604 &prevout, &fallback)) {
605 if (fallback) {
606 prevout = fallback;
    [all...]
picokdt.c 1718 picoos_uint16 fallback; \/* fallback value for failed graph encodings *\/ local
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/ThirdParty/ANGLE/src/libGLESv2/geometry/
VertexDataManager.cpp 356 // VertexTypeMapping maps GL type & normalized flag to preferred and fallback D3D vertex types (as D3DVertexType enums).
362 template <D3DVertexType Preferred, D3DVertexType Fallback = Preferred>
366 enum { fallback = Fallback }; enumerator in enum:gl::VertexTypeMappingBase::__anon14675
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/webkit/Source/WebCore/plugins/gtk/
gtk2xtbin.c 121 static String *fallback = NULL; variable
348 fallback = f;
563 if (fallback)
564 XtAppSetFallbackResources(app_context, fallback);
  /external/icu4c/extra/uconv/
uconv.cpp 562 UBool fallback,
585 UBool fallback,
723 ucnv_setFallback(convto, fallback);
1107 UBool fallback = FALSE; local
    [all...]
  /external/icu4c/i18n/
dtitvfmt.cpp 655 // use fallback
967 fallback{"{0} - {1}"}
1297 UnicodeString fallback; local
    [all...]
ucurr.cpp 243 // 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/webkit/Source/WebCore/platform/efl/
RenderThemeEfl.cpp 355 static RenderTheme* fallback = RenderThemeEfl::create(0).releaseRef(); local
356 return fallback;
    [all...]
  /external/dnsmasq/src/
rfc2131.c 85 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));
    [all...]
  /external/webkit/Source/WebCore/platform/qt/
RenderThemeQt.cpp 94 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
    [all...]
  /frameworks/base/core/java/android/view/
HardwareRenderer.java 729 fallback(error != EGL11.EGL_CONTEXT_LOST);
734 private void fallback(boolean fallback) { method in class:HardwareRenderer.GlRenderer
736 if (fallback) {
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
gimple.h 991 enum fallback { enum
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
gimple.h 991 enum fallback { enum
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
gimple.h 991 enum fallback { enum
    [all...]
  /frameworks/base/services/input/
InputDispatcher.cpp 3511 bool fallback = mPolicy->dispatchUnhandledKey(connection->inputWindowHandle, local
    [all...]

Completed in 2135 milliseconds

1 2