/external/chromium_org/v8/test/mjsunit/regress/ |
regress-update-field-type-attributes.js | 11 assertTrue(Object.isFrozen(test())); 12 assertTrue(Object.isFrozen(test()));
|
regress-2606.js | 61 assertTrue(Object.isFrozen(Object.prototype));
|
/external/chromium_org/v8/test/mjsunit/ |
object-freeze.js | 28 // Tests the Object.freeze and Object.isFrozen methods - ES 15.2.3.9 and 49 Object.isFrozen(non_objects[key]); 52 assertTrue(/Object.isFrozen called on non-object/.test(e)); 70 assertFalse(Object.isFrozen(obj)); 76 assertTrue(Object.isFrozen(obj)); 111 assertFalse(Object.isFrozen(obj2)); 113 assertTrue(Object.isFrozen(obj2)); 140 assertFalse(Object.isFrozen(arr)); 142 assertTrue(Object.isFrozen(arr)); 160 // Test that isFrozen return the correct value even if configurable has been se [all...] |
object-seal.js | 80 assertFalse(Object.isFrozen(obj)); 119 assertTrue(Object.isFrozen(obj2)); 152 assertFalse(Object.isFrozen(arr)); 175 assertFalse(Object.isFrozen(obj3));
|
/external/chromium_org/v8/test/webkit/ |
preventExtensions.js | 30 // Add an accessor property to check 'isFrozen' returns the correct result for objects with accessors. 45 if (Object.isFrozen(obj)) 117 shouldBeTrue('Object.isFrozen(func)') 124 shouldBeTrue('Object.isFrozen(strictFunc)') 131 shouldBeTrue('Object.isFrozen(array)') 138 shouldBeTrue('Object.isFrozen(args)') 149 return Object.isFrozen(x);
|
/external/chromium_org/third_party/icu/source/common/ |
uniset.cpp | 198 len(0), capacity(o.isFrozen() ? o.len : o.len + GROW_EXTRA), list(0), 276 if (isFrozen()) { 882 if ((i & 1) != 0 || isFrozen() || isBogus()) return *this; 1001 if (s.length() == 0 || isFrozen() || isBogus()) return *this; 1020 if (isFrozen() || isBogus()) { [all...] |
uniset_closure.cpp | 122 if (isFrozen()) { 181 if (isFrozen() || isBogus()) {
|
uniset_props.cpp | 377 if (isFrozen()) { 952 if (U_FAILURE(ec) || isFrozen()) return *this; 970 if (U_FAILURE(ec) || isFrozen()) return *this; [all...] |
uset.cpp | 53 return ((UnicodeSet*) set)->UnicodeSet::isFrozen();
|
/external/icu/icu4c/source/common/ |
uniset.cpp | 198 len(0), capacity(o.isFrozen() ? o.len : o.len + GROW_EXTRA), list(0), 276 if (isFrozen()) { 882 if ((i & 1) != 0 || isFrozen() || isBogus()) return *this; 1001 if (s.length() == 0 || isFrozen() || isBogus()) return *this; 1020 if (isFrozen() || isBogus()) { [all...] |
uniset_closure.cpp | 122 if (isFrozen()) { 181 if (isFrozen() || isBogus()) {
|
uniset_props.cpp | 377 if (isFrozen()) { 952 if (U_FAILURE(ec) || isFrozen()) return *this; 970 if (U_FAILURE(ec) || isFrozen()) return *this; [all...] |
uset.cpp | 53 return ((UnicodeSet*) set)->UnicodeSet::isFrozen();
|
/external/chromium_org/third_party/icu/source/test/cintltst/ |
trie2test.c | 118 UBool isFrozen=utrie2_isFrozen(trie); 119 const char *const typeName= isFrozen ? "frozen trie" : "newTrie"; 129 if(isFrozen) { 172 if(isFrozen) { 227 if(isFrozen && U_IS_LEAD(start)) { 247 if(isFrozen) { 575 log_err("error: utrie2_freeze(%s) failed: %s isFrozen: %d\n", 692 log_err("error: utrie2_freeze(unserialized %s) failed: %s isFrozen: %d\n", 724 "%s (isFrozen: %d)\n", [all...] |
/external/icu/icu4c/source/test/cintltst/ |
trie2test.c | 118 UBool isFrozen=utrie2_isFrozen(trie); 119 const char *const typeName= isFrozen ? "frozen trie" : "newTrie"; 129 if(isFrozen) { 172 if(isFrozen) { 227 if(isFrozen && U_IS_LEAD(start)) { 247 if(isFrozen) { 575 log_err("error: utrie2_freeze(%s) failed: %s isFrozen: %d\n", 692 log_err("error: utrie2_freeze(unserialized %s) failed: %s isFrozen: %d\n", 724 "%s (isFrozen: %d)\n", [all...] |
/external/chromium_org/third_party/WebKit/Source/core/svg/animation/ |
SMILTimeContainer.cpp | 315 aBegin = a->isFrozen() && m_elapsed < aBegin ? a->previousIntervalBegin() : aBegin; 316 bBegin = b->isFrozen() && m_elapsed < bBegin ? b->previousIntervalBegin() : bBegin;
|
SVGSMILElement.h | 105 bool isFrozen() const;
|
SVGSMILElement.cpp | 721 bool SVGSMILElement::isFrozen() const [all...] |
/external/chromium_org/third_party/icu/source/common/unicode/ |
uniset.h | 531 inline UBool isFrozen() const; 542 * @see isFrozen 553 * @see isFrozen [all...] |
/external/icu/icu4c/source/common/unicode/ |
uniset.h | 531 inline UBool isFrozen() const; 542 * @see isFrozen 553 * @see isFrozen [all...] |
/external/javassist/src/main/javassist/ |
CtClass.java | 210 * <p>This method is not available if <code>isFrozen()</code> 228 * <p>This method is available even if <code>isFrozen()</code> 233 * @see CtClass#isFrozen() 264 public boolean isFrozen() { return true; } 269 * @see #isFrozen() 278 if (isFrozen()) 295 * @see #isFrozen() [all...] |
ClassPool.java | 604 if (clazz.isFrozen()) [all...] |
CtClassType.java | 230 else if (isFrozen() && !wasPruned) 276 public boolean isFrozen() { return wasFrozen; } 281 if (isFrozen()) { [all...] |
/external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/goog/object/ |
object.js | 623 if (Object.isFrozen && !Object.isFrozen(obj)) { 636 return !!Object.isFrozen && Object.isFrozen(obj);
|
/external/chromium_org/v8/test/webkit/fast/js/ |
Object-getOwnPropertyNames.js | 74 "Object": "['arguments', 'caller', 'create', 'defineProperties', 'defineProperty', 'deliverChangeRecords', 'freeze', 'getNotifier', 'getOwnPropertyDescriptor', 'getOwnPropertyNames', 'getOwnPropertySymbols', 'getPrototypeOf', 'is', 'isExtensible', 'isFrozen', 'isSealed', 'keys', 'length', 'name', 'observe', 'preventExtensions', 'prototype', 'seal', 'setPrototypeOf', 'unobserve']",
|