Searched defs:any (Results 1 - 25 of 75) sorted by path

123

/external/chromium_org/content/renderer/manifest/
H A Dmanifest_parser_unittest.cc265 // Accept 'any'.
267 Manifest manifest = ParseManifest("{ \"orientation\": \"any\" }");
562 // 'any' is correctly parsed and transformed to gfx::Size(0,0).
565 "\"sizes\": \"any AnY ANY aNy\" } ] }");
566 gfx::Size any = gfx::Size(0, 0); local
568 EXPECT_EQ(manifest.icons[0].sizes[0], any);
569 EXPECT_EQ(manifest.icons[0].sizes[1], any);
570 EXPECT_EQ(manifest.icons[0].sizes[2], any);
571 EXPECT_EQ(manifest.icons[0].sizes[3], any);
578 gfx::Size any local
[all...]
/external/chromium_org/third_party/WebKit/Source/bindings/modules/v8/
H A DIDBBindingUtilities.cpp403 ScriptValue idbAnyToScriptValue(ScriptState* scriptState, IDBAny* any) argument
407 v8::Handle<v8::Value> v8Value(toV8(any, scriptState->context()->Global(), isolate));
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/javascript/ com/google/javascript/jscomp/ ...
/external/chromium_org/third_party/checkstyle/
H A Dcheckstyle-5.7-all.jarMETA-INF/MANIFEST.MF META-INF/ checkstyle_packages.xml checkstylecompilation.properties checkstyletask.properties com/ ...
/external/chromium_org/third_party/closure_compiler/compiler/
H A Dcompiler.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/debugging/ com/google/debugging/sourcemap/ ...
/external/chromium_org/third_party/cython/src/Cython/
H A DUtils.py369 # all() and any() are new in 2.5
374 any = any variable
382 def any(items): function
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcdattst.c63 UDateFormat *any; local
137 any = udat_open(UDAT_SHORT, UDAT_SHORT, udat_getAvailable(i), NULL ,0, NULL, 0, &subStatus);
141 udat_close(any);
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dtztest.cpp531 StringEnumeration *any, *canonical, *canonicalLoc; local
542 any = canonical = canonicalLoc = any_US = canonical_US = canonicalLoc_US = any_W5 = any_CA_W5 = any_US_E14 = NULL;
544 any = TimeZone::createTimeZoneIDEnumeration(UCAL_ZONE_TYPE_ANY, NULL, NULL, ec);
600 checkContainsAll(any, "ANY", canonical, "CANONICAL");
603 checkContainsAll(any, "ANY", any_US, "ANY_US");
610 checkContainsAll(any, "ANY", any_W5, "ANY_W5");
613 // And ID in any set, but not in canonical set must not be a canonical ID
614 any->reset(ec);
615 while ((id1 = any->snext(ec)) != NULL) {
720 delete any;
[all...]
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
H A Dtransport.cc558 bool any = false; local
565 any = any || b;
570 } else if (any) {
602 // We hold any messages until the client lets us connect.
691 // A Transport has failed if any of its channels have no remaining
/external/chromium_org/third_party/libxml/src/include/libxml/
H A DschemasInternals.h315 int any; /* Indicates if the ns constraint is of ##any */ member in struct:_xmlSchemaWildcard
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_tile_cache.h6 * Permission is hereby granted, free of charge, to any person obtaining a
74 ubyte any[1]; member in union:softpipe_cached_tile::__anon13930
/external/chromium_org/third_party/mesa/src/src/glsl/
H A Dlower_mat_op_to_vec.cpp4 * Permission is hereby granted, free of charge, to any person obtaining a
88 /* Pull out any matrix expression to a separate assignment to a
237 * return !any(bvec4(a[0] != b[0],
245 * return any(bvec4(a[0] != b[0],
276 ir_expression *any = new(this->mem_ctx) ir_expression(ir_unop_any, val); local
279 any = new(this->mem_ctx) ir_expression(ir_unop_logic_not, any);
282 new(mem_ctx) ir_assignment(result->clone(mem_ctx, NULL), any);
/external/chromium_org/third_party/skia/experimental/PdfViewer/
H A DSkTracker.h31 * A.1) a breackpoint require that any of the points is changed
33 * Points in B are allways in "any mode" - chaning the value of any pixel, will disable
67 void any() { function in class:SkTracker
155 // any/all of the expected touched has to be changed, and all expected untouched must be intact
214 // break on any change on expected touched or all.
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c51 ** Ticket #2739: The _LARGEFILE_SOURCE macro must appear before any
122 ** not have more than a dozen or so columns in any table. And if
124 ** dozen values in any of the other situations described above.
161 ** any limit on the number of terms in a compount SELECT.
285 ** fire any triggers. A value of 0 means that no trigger programs at all
636 ** The SQLITE_VERSION_NUMBER for any given release of SQLite will also
704 ** prefix is omitted from any strings returned by
749 ** thread safety, not any run-time changes to that setting made by
864 ** is not NULL then any error message is written into memory obtained
875 ** without running any subsequen
119648 const int any = SQLITE_ANY; local
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2_tokenizer.c346 const int any = SQLITE_ANY; local
360 || (rc = sqlite3_create_function(db, zName, 1, any, p, scalarFunc, 0, 0))
361 || (rc = sqlite3_create_function(db, zName, 2, any, p, scalarFunc, 0, 0))
363 || (rc = sqlite3_create_function(db, zTest, 2, any, p, testFunc, 0, 0))
364 || (rc = sqlite3_create_function(db, zTest, 3, any, p, testFunc, 0, 0))
365 || (rc = sqlite3_create_function(db, zTest2, 0, any, pdb, intTestFunc, 0, 0))
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_tokenizer.c455 const int any = SQLITE_ANY; local
469 rc = sqlite3_create_function(db, zName, 1, any, p, scalarFunc, 0, 0);
472 rc = sqlite3_create_function(db, zName, 2, any, p, scalarFunc, 0, 0);
476 rc = sqlite3_create_function(db, zTest, 2, any, p, testFunc, 0, 0);
479 rc = sqlite3_create_function(db, zTest, 3, any, p, testFunc, 0, 0);
482 rc = sqlite3_create_function(db, zTest2, 0, any, pdb, intTestFunc, 0, 0);
/external/chromium_org/third_party/webrtc/common_audio/signal_processing/
H A Drefl_coef_to_lpc.c22 int16_t any[WEBRTC_SPL_MAX_LPC_ORDER + 1]; local
29 *any = *a;
38 anyptr = any;
41 any[m + 1] = WEBRTC_SPL_RSHIFT_W16((*kptr), 3);
52 anyptr = any;
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/cng/
H A Dcng_helpfuns.c19 int16_t any[WEBRTC_SPL_MAX_LPC_ORDER + 1]; local
26 *any = *a;
33 anyptr = any;
36 any[m + 1] = (*kptr + 4) >> 3;
43 anyptr = any;
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dactions.c564 RegExp *any, *ran, *inv; local
572 any = ranToRE(*ss);
575 return any;
578 inv = mkDiff(any, ran);
581 free(any);
589 RegExp * any = ranToRE(*ss); local
591 RegExp * inv = mkDiff(any, ran);
595 free(any);
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.type/dcl.type.simple/
H A Dp5-cxx0x.cpp70 struct any { struct in namespace:libcxx_example
71 any(...);
80 nat swap(any, any);
/external/clang/test/CXX/expr/expr.unary/expr.sizeof/
H A Dp5-0x.cpp17 struct any { struct
18 template<typename T> any(T);
23 any array[sizeof...(inits)] = { inits... };
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.conv/
H A Dp4.cpp8 void test_cvqual_ref(AnyT any) { argument
9 const int &cir = any;
/external/clang/test/SemaCXX/
H A Dconversion-function.cpp28 // expected-error{{conversion function cannot have any parameters}}
30 operator bool(int a = 4, int b = 6) const; // expected-error{{conversion function cannot have any parameters}}
220 Any any = Other(); // expected-error{{cannot pass object of non-POD type 'Other' through variadic constructor; call will abort at runtime}} local
/external/deqp/scripts/
H A Dtestset.py15 def any (results, predicate): function
208 FilterRule("any-pass", "Any of results is 'Pass'", [lambda l: any(l, lambda r: r == 'Pass')]),
209 FilterRule("any-fail", "Any of results is not 'Pass' or 'NotSupported'", [lambda l: not all(l, lambda r: r == 'Pass' or r == 'NotSupported')]),
211 FilterRule("prev-passing", "Any except last result is 'Pass'", [lambda l: l[-1] != 'Pass' and any(l[:-1], lambda r: r == 'Pass')])
/external/dexmaker/lib/
H A Dmockito-core-1.9.1-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/mockito/ org/mockito/asm/ org/mockito/asm/signature/ ...

Completed in 1619 milliseconds

123