Searched refs:isFrozen (Results 1 - 25 of 34) sorted by relevance

12

/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-update-field-type-attributes.js11 assertTrue(Object.isFrozen(test()));
12 assertTrue(Object.isFrozen(test()));
H A Dregress-2606.js61 assertTrue(Object.isFrozen(Object.prototype));
/external/chromium_org/v8/test/mjsunit/
H A Dobject-freeze.js28 // 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 retur
[all...]
H A Dobject-seal.js80 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/
H A DpreventExtensions.js30 // 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/chrome/third_party/chromevox/third_party/closure-library/closure/goog/object/
H A Dobject.js623 if (Object.isFrozen && !Object.isFrozen(obj)) {
636 return !!Object.isFrozen && Object.isFrozen(obj);
/external/chromium_org/third_party/icu/source/common/
H A Duniset.cpp198 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()) {
1204 if (s.length() == 0 || isFrozen() || isBogus()) return *this;
1227 if (isFrozen() || isBogus()) {
1247 if (isFrozen() || isBogus()) {
1281 if (s.length() == 0 || isFrozen() || isBogus()) return *this;
1333 if (isFrozen() || isBogu
[all...]
H A Duniset_closure.cpp122 if (isFrozen()) {
181 if (isFrozen() || isBogus()) {
H A Duniset_props.cpp377 if (isFrozen()) {
952 if (U_FAILURE(ec) || isFrozen()) return *this;
970 if (U_FAILURE(ec) || isFrozen()) return *this;
H A Duset.cpp53 return ((UnicodeSet*) set)->UnicodeSet::isFrozen();
/external/icu/icu4c/source/common/
H A Duniset.cpp198 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()) {
1204 if (s.length() == 0 || isFrozen() || isBogus()) return *this;
1227 if (isFrozen() || isBogus()) {
1247 if (isFrozen() || isBogus()) {
1281 if (s.length() == 0 || isFrozen() || isBogus()) return *this;
1333 if (isFrozen() || isBogu
[all...]
H A Duniset_closure.cpp122 if (isFrozen()) {
181 if (isFrozen() || isBogus()) {
H A Duniset_props.cpp377 if (isFrozen()) {
952 if (U_FAILURE(ec) || isFrozen()) return *this;
970 if (U_FAILURE(ec) || isFrozen()) return *this;
H A Duset.cpp53 return ((UnicodeSet*) set)->UnicodeSet::isFrozen();
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dtrie2test.c118 UBool isFrozen=utrie2_isFrozen(trie); local
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",
/external/icu/icu4c/source/test/cintltst/
H A Dtrie2test.c118 UBool isFrozen=utrie2_isFrozen(trie); local
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",
/external/chromium_org/third_party/WebKit/Source/core/svg/animation/
H A DSMILTimeContainer.cpp315 aBegin = a->isFrozen() && m_elapsed < aBegin ? a->previousIntervalBegin() : aBegin;
316 bBegin = b->isFrozen() && m_elapsed < bBegin ? b->previousIntervalBegin() : bBegin;
H A DSVGSMILElement.h105 bool isFrozen() const;
H A DSVGSMILElement.cpp721 bool SVGSMILElement::isFrozen() const function in class:blink::SVGSMILElement
1164 bool isFrozen = (m_activeState == Frozen); local
1165 if (isFrozen) {
1172 return isFrozen;
/external/chromium_org/third_party/icu/source/common/unicode/
H A Duniset.h531 inline UBool isFrozen() const;
542 * @see isFrozen
553 * @see isFrozen
1633 inline UBool UnicodeSet::isFrozen() const { function in class:UnicodeSet
/external/icu/icu4c/source/common/unicode/
H A Duniset.h531 inline UBool isFrozen() const;
542 * @see isFrozen
553 * @see isFrozen
1633 inline UBool UnicodeSet::isFrozen() const { function in class:UnicodeSet
/external/javassist/src/main/javassist/
H A DCtClass.java210 * <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; } method in class:CtClass
269 * @see #isFrozen()
278 if (isFrozen())
295 * @see #isFrozen()
H A DClassPool.java604 if (clazz.isFrozen())
H A DCtClassType.java230 else if (isFrozen() && !wasPruned)
276 public boolean isFrozen() { return wasFrozen; } method in class:CtClassType
281 if (isFrozen()) {
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dproxies-example-membrane.js61 if (Object.isFrozen(obj)) {

Completed in 2670 milliseconds

12