HomeSort by relevance Sort by last modified time
    Searched refs:fallback (Results 101 - 125 of 307) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/pixman/pixman/
pixman-arm-simd.c 249 _pixman_implementation_create_arm_simd (pixman_implementation_t *fallback)
251 pixman_implementation_t *imp = _pixman_implementation_create (fallback, arm_simd_fast_paths);
  /external/chromium_org/chrome/browser/resources/local_ntp/
most_visited_util.js 37 // There was an error in loading both the thumbnail image and the fallback
40 // Used a gray tile with the domain as the fallback for a failed thumbnail.
42 // The visuals of that tile's fallback are handled externally.
  /external/chromium_org/third_party/icu/source/test/cintltst/
ncnvfbts.c 12 * Madhu Katragadda 06/23/2000 Tests for Conveter FallBack API and Functionality
130 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))
    [all...]
  /external/icu/icu4c/source/test/cintltst/
ncnvfbts.c 12 * Madhu Katragadda 06/23/2000 Tests for Conveter FallBack API and Functionality
130 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))
    [all...]
  /hardware/intel/img/hwcomposer/ips/anniedale/
AnnOverlayPlane.cpp 835 bool fallback = false;
846 fallback = true;
851 fallback = true;
858 fallback = true;
864 // fallback to video ration buffer in such case.
867 fallback = true;
870 if (fallback || mBobDeinterlace) {
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/radeon/
radeon_state.c 114 GLboolean fallback = GL_FALSE; local
130 fallback = GL_TRUE;
136 FALLBACK( rmesa, RADEON_FALLBACK_BLEND_EQ, fallback );
137 if ( !fallback ) {
156 GLboolean fallback = GL_FALSE; local
197 fallback = GL_TRUE;
241 fallback = GL_TRUE;
249 FALLBACK( rmesa, RADEON_FALLBACK_BLEND_FUNC, fallback );
700 GLboolean fallback = GL_FALSE; local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/radeon/
radeon_state.c 114 GLboolean fallback = GL_FALSE; local
130 fallback = GL_TRUE;
136 FALLBACK( rmesa, RADEON_FALLBACK_BLEND_EQ, fallback );
137 if ( !fallback ) {
156 GLboolean fallback = GL_FALSE; local
197 fallback = GL_TRUE;
241 fallback = GL_TRUE;
249 FALLBACK( rmesa, RADEON_FALLBACK_BLEND_FUNC, fallback );
700 GLboolean fallback = GL_FALSE; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_xml_etree.py 260 Test find methods using the elementpath fallback.
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_xml_etree.py 260 Test find methods using the elementpath fallback.
    [all...]
  /external/chromium_org/chrome/browser/resources/net_internals/
log_view_painter.js 617 * Outputs the SSL version fallback parameters of |entry| to |out|.
702 // The proxy settings specify up to three major fallback choices
721 if (urlScheme != 'fallback') {
726 if (config.proxy_per_scheme.fallback) {
728 getProxyListString(config.proxy_per_scheme.fallback));
756 // (which correspond with the fallback order).
  /external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/
options.js 22 * fallback when the script is undeclared.
266 * |effectiveFont| is the font used taking fallback into consideration.
297 // If we're still here, we have to fallback to common script, unless this
318 * @param {string} effectiveFont The font used, including fallback to Common
401 // Add a special item to indicate fallback to the non-per-script
403 // fallback.
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-shape.cc 36 #include "hb-ot-shape-fallback-private.hh"
577 hb_bool_t fallback = !hb_ot_position_complex (c); local
581 if (fallback && c->plan->shaper->fallback_position)
587 /* Visual fallback goes here. */
589 if (fallback)
  /external/harfbuzz_ng/src/
hb-ot-shape.cc 36 #include "hb-ot-shape-fallback-private.hh"
540 /* If the font has no GPOS, AND, no fallback positioning will
546 * If fallback positinoing happens or GPOS is present, we don't
624 hb_bool_t fallback = !hb_ot_position_complex (c); local
628 if (fallback && c->plan->shaper->fallback_position)
634 /* Visual fallback goes here. */
636 if (fallback)
  /external/chromium_org/net/http/
http_stream_factory_impl_job.cc 1231 int fallback = FALLBACK_NONE; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/nouveau/
nouveau_context.c 126 nctx->fallback = HWTNL;
390 nctx->fallback = MAX2(HWTNL, mode);
  /external/chromium_org/v8/tools/
generate-runtime-tests.py 215 def _Variable(self, name, value, fallback=None):
216 args = { "name": name, "value": value, "fallback": fallback }
217 if fallback:
218 wrapper = "try { %%s } catch(e) { var %(name)s = %(fallback)s; }" % args
457 fallback="new DataView(new ArrayBuffer(8))")
567 fallback="new %sArray(8)" % arraytype)
573 fallback="new %sArray(8)" % arraytype))
583 fallback="new %sArray(8)" % arraytype))
600 fallback="new %sArray(8)" % arraytype)
    [all...]
  /external/e2fsprogs/lib/ext2fs/
closefs.c 192 fallback:
219 goto fallback;
  /external/icu/icu4c/source/data/coll/
colfiles.mk 45 # Empty locales, used for validSubLocale fallback.
  /external/mesa3d/src/mesa/drivers/dri/nouveau/
nouveau_context.c 126 nctx->fallback = HWTNL;
390 nctx->fallback = MAX2(HWTNL, mode);
  /external/valgrind/main/exp-sgcheck/tests/
hackedbz2.stdout.exp 3 too repetitive; using fallback sorting algorithm
  /external/valgrind/main/memcheck/tests/
origin5-bz2.stdout.exp 4 too repetitive; using fallback sorting algorithm
vcpu_bz2.stdout.exp 3 too repetitive; using fallback sorting algorithm
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
IconFactory.java 205 * fallback will be used instead.
206 * @param fallback the fallback icon name to use if the primary icon does
213 public Image getIcon(@NonNull String osName, @Nullable String fallback) {
217 ImageDescriptor id = getImageDescriptor(osName, fallback);
230 * icon of the given fallback name.
233 * @param fallbackKey the fallback image to use if the primary key does not
252 // Place the fallback image for this key as well such that we don't keep trying
  /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/chromium_org/third_party/harfbuzz-ng/
harfbuzz-ng.target.darwin-arm.mk 33 third_party/harfbuzz-ng/src/hb-fallback-shape.cc \
49 third_party/harfbuzz-ng/src/hb-ot-shape-fallback.cc \

Completed in 2370 milliseconds

1 2 3 45 6 7 8 91011>>