HomeSort by relevance Sort by last modified time
    Searched full:frozen (Results 1 - 25 of 524) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/v8/test/mjsunit/es6/regress/
regress-2034.js 32 // Try querying using frozen key.
36 // Try adding using frozen key.
41 // Try deleting using frozen key.
  /external/replicaisland/src/com/replica/replicaisland/
GenericAnimationComponent.java 60 case FROZEN:
61 mSprite.playAnimation(Animation.FROZEN);
83 public static final int FROZEN = 6;
  /external/chromium_org/third_party/WebKit/ManualTests/inspector/
forzen-ui-while-paused.html 10 <p>Test for <a href="https://bugs.webkit.org/show_bug.cgi?id=20042">Bug 20042: UI frozen when the debugger is paused</a>.</p>
  /external/chromium_org/mojo/public/platform/native/
gles2_impl_thunks.h 12 // Like MojoGLES2ControlThunks, but specifies the frozen GLES2 API. Separated
14 // interface is frozen.
gles2_impl_chromium_sync_point_thunks.h 12 // Specifies the frozen API for the GLES2 CHROMIUM_sync_point extension.
gles2_impl_chromium_texture_mailbox_thunks.h 12 // Specifies the frozen API for the GLES2 CHROMIUM_texture_mailbox extension.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_frozen.py 1 # Test the frozen module defined in frozen.c.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_frozen.py 1 # Test the frozen module defined in frozen.c.
  /external/chromium_org/chrome/browser/chromeos/power/
renderer_freezer.h 49 // Called when all asynchronous work is complete and renderers can be frozen.
52 // Used to ensure that renderers do not get frozen if the suspend is canceled.
freezer_cgroup_process_manager.cc 17 const char kFreezeCommand[] = "FROZEN";
  /external/chromium_org/v8/test/webkit/
preventExtensions.js 72 function frozen(){}; function
75 freeze(frozen);
78 new frozen;
81 frozen.prototype.prototypeExists = true;
85 shouldBeTrue("(new frozen).prototypeExists");
90 shouldBe('test(freeze(obj()))', '"(a:1)(b:2)SF"'); // sealed and frozen, CANNOT delete a, CANNOT modify b, and CANNOT add c
80 frozen.prototype.prototypeExists = true; class
  /external/lldb/test/expression_command/formatters/
TestFormatters.py 2 Test using LLDB data formatters with frozen objects coming from the expression parser.
136 frozen = frame.EvaluateExpression("$" + object_name + ".a_ptr")
138 a_data = frozen.GetPointeeData()
151 frozen = frame.EvaluateExpression("&numbers")
153 a_data = frozen.GetPointeeData(0, 1)
161 frozen = frame.EvaluateExpression("numbers")
163 a_data = frozen.GetData()
  /external/chromium_org/third_party/icu/source/common/
utrie2.h 80 * Open a frozen trie from its serialized from, stored in 32-bit-aligned memory.
104 * Open a frozen, empty "dummy" trie.
133 * objects, frozen or not, holding 16-bit or 32-bit data values.
198 * which determines the data value width in the serialized and frozen forms.
222 * is frozen. (See utrie2_freeze().)
247 * - U_NO_WRITE_PERMISSION if the trie is frozen
263 * - U_NO_WRITE_PERMISSION if the trie is frozen
276 * A trie can be frozen only once. If this function is called again with different
286 * but not frozen and not usable with the fast macros)
294 * Test if the trie is frozen. (See utrie2_freeze().
    [all...]
  /external/icu/icu4c/source/common/
utrie2.h 80 * Open a frozen trie from its serialized from, stored in 32-bit-aligned memory.
104 * Open a frozen, empty "dummy" trie.
133 * objects, frozen or not, holding 16-bit or 32-bit data values.
198 * which determines the data value width in the serialized and frozen forms.
222 * is frozen. (See utrie2_freeze().)
247 * - U_NO_WRITE_PERMISSION if the trie is frozen
263 * - U_NO_WRITE_PERMISSION if the trie is frozen
276 * A trie can be frozen only once. If this function is called again with different
286 * but not frozen and not usable with the fast macros)
294 * Test if the trie is frozen. (See utrie2_freeze().
    [all...]
  /external/chromium_org/third_party/icu/source/common/unicode/
uset.h 328 * If this set is frozen, then the clone will be frozen as well.
329 * Use uset_cloneAsThawed() for a mutable clone of a frozen set.
339 * Determines whether the set has been frozen (made immutable) or not.
342 * @return TRUE/FALSE for whether the set has been frozen
352 * Once frozen, it cannot be unfrozen and is therefore thread-safe
357 * A frozen set will not be modified. (It remains frozen.)
359 * @return the same set, now frozen
383 * A frozen set will not be modified
    [all...]
  /external/icu/icu4c/source/common/unicode/
uset.h 328 * If this set is frozen, then the clone will be frozen as well.
329 * Use uset_cloneAsThawed() for a mutable clone of a frozen set.
339 * Determines whether the set has been frozen (made immutable) or not.
342 * @return TRUE/FALSE for whether the set has been frozen
352 * Once frozen, it cannot be unfrozen and is therefore thread-safe
357 * A frozen set will not be modified. (It remains frozen.)
359 * @return the same set, now frozen
383 * A frozen set will not be modified
    [all...]
  /external/chromium_org/v8/src/
interface.h 19 // A frozen type is one that is fully determined. Unification does not
21 // frozen interfaces. Otherwise, unifying modules merges their exports.
27 // value (frozen) module
45 static Interface value_interface(VALUE + FROZEN); // Cached.
50 static Interface value_interface(VALUE + CONST + FROZEN); // Cached.
93 if (*ok) Chase()->flags_ |= FROZEN;
118 bool IsFrozen() { return Chase()->flags_ & FROZEN; }
186 FROZEN = 8 // This type is fully determined
  /external/chromium_org/third_party/icu/source/test/cintltst/
usettest.c 553 USet *frozen; local
564 frozen=uset_clone(idSet);
566 if (frozen == NULL) {
571 if(!uset_equals(frozen, idSet)) {
575 uset_freeze(frozen);
576 uset_addRange(frozen, 0xd802, 0xd805);
578 if(uset_isFrozen(idSet) || !uset_isFrozen(frozen) || !uset_equals(frozen, idSet)) {
582 thawed=uset_cloneAsThawed(frozen);
585 log_err("uset_cloneAsThawed(frozen) returned NULL")
    [all...]
  /external/icu/icu4c/source/test/cintltst/
usettest.c 553 USet *frozen; local
564 frozen=uset_clone(idSet);
566 if (frozen == NULL) {
571 if(!uset_equals(frozen, idSet)) {
575 uset_freeze(frozen);
576 uset_addRange(frozen, 0xd802, 0xd805);
578 if(uset_isFrozen(idSet) || !uset_isFrozen(frozen) || !uset_equals(frozen, idSet)) {
582 thawed=uset_cloneAsThawed(frozen);
585 log_err("uset_cloneAsThawed(frozen) returned NULL")
    [all...]
  /ndk/
README.TXT 14 See docs/STABLE-APIS.html for the list of frozen binary APIs exposed by
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
import.h 64 collection of frozen modules: */
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
import.h 64 collection of frozen modules: */
  /system/core/include/log/
logd.h 20 /* the stable/frozen log-related definitions have been
  /external/chromium_org/third_party/icu/source/test/perf/unisetperf/
unisetperf.cpp 158 // Verify that the frozen set is equal to the unfrozen one.
168 fprintf(stderr, "error: frozen set != original!\n");
208 // Verify that the frozen set is equal to the unfrozen one.
230 fprintf(stderr, "error: frozen set != original!\n");
259 // Verify that the frozen set is equal to the unfrozen one.
281 fprintf(stderr, "error: frozen set != original!\n");
314 // Verify that the frozen set is equal to the unfrozen one.
331 fprintf(stderr, "error: frozen set != original!\n");
360 // Verify that the frozen set is equal to the unfrozen one.
377 fprintf(stderr, "error: frozen set != original!\n")
    [all...]
  /external/icu/icu4c/source/test/perf/unisetperf/
unisetperf.cpp 158 // Verify that the frozen set is equal to the unfrozen one.
168 fprintf(stderr, "error: frozen set != original!\n");
208 // Verify that the frozen set is equal to the unfrozen one.
230 fprintf(stderr, "error: frozen set != original!\n");
259 // Verify that the frozen set is equal to the unfrozen one.
281 fprintf(stderr, "error: frozen set != original!\n");
314 // Verify that the frozen set is equal to the unfrozen one.
331 fprintf(stderr, "error: frozen set != original!\n");
360 // Verify that the frozen set is equal to the unfrozen one.
377 fprintf(stderr, "error: frozen set != original!\n")
    [all...]

Completed in 670 milliseconds

1 2 3 4 5 6 7 8 91011>>