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

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
version.rb 13 ANTLR_VERSION = [ ANTLR_MAJOR_VERSION, ANTLR_MINOR_VERSION, ANTLR_PATCH_VERSION ].freeze
16 ANTLR_VERSION_STRING.freeze
25 VERSION_STRING = VERSION.join( '.' ).freeze
  /external/toybox/toys/other/
fsfreeze.c 1 /* fsfreeze.c - freeze or thaw filesystem
14 Freeze or unfreeze a filesystem.
16 -f freeze
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-dfa.rb 9 EOT = [1, 2].freeze
10 EOF = [3, 4].freeze
11 MAX = [5, 6].freeze
12 MIN = [7, 8].freeze
13 ACCEPT = [9, 10, 11].freeze
14 SPECIAL = [12].freeze
16 [13, 14, 15, 16].freeze,
17 [].freeze
18 ].freeze
  /external/libcxx/test/std/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.members/
freeze.pass.cpp 14 // void freeze(bool freezefl = true);
23 out.freeze();
28 out.freeze(false);
32 out.freeze(false);
  /external/libcxx/test/std/depr/depr.str.strstreams/depr.strstream/depr.strstream.oper/
freeze.pass.cpp 14 // void freeze(bool freezefl = true);
23 out.freeze();
28 out.freeze(false);
32 out.freeze(false);
  /external/v8/test/mjsunit/compiler/
regress-447567.js 6 Object.freeze(new Int8Array(1))
  /external/v8/test/mjsunit/
object-freeze-global.js 5 Object.freeze(this);
object-freeze.js 28 // Tests the Object.freeze and Object.isFrozen methods - ES 19.1.2.5 and
36 assertSame(non_objects[key], Object.freeze(non_objects[key]));
59 Object.freeze(obj);
99 Object.freeze(obj2);
113 // Test freeze on arrays.
128 Object.freeze(arr);
179 // Make sure that Object.freeze returns the frozen object.
181 assertTrue(obj6 === Object.freeze(obj6))
186 Object.freeze(obj);
196 Object.freeze(obj)
    [all...]
  /external/v8/test/mjsunit/regress/
regress-349870.js 6 Object.freeze(r);
regress-450895.js 8 Object.freeze(v);
regress-489151.js 6 Object.freeze(this);
regress-crbug-390925.js 9 Object.freeze(a);
regress-crbug-454091.js 6 Object.freeze(this);
regress-freeze-setter.js 6 Object.freeze(this);
regress-update-field-type-attributes.js 8 return Object.freeze(container);
regress-builtinbust-5.js 9 Object.freeze(a);
regress-reset-dictionary-elements.js 13 Object.freeze(o);
regress-95920.js 35 Object.freeze(new Int8Array(0));
39 Object.freeze(o);
43 // Freeze should still have managed to preventExtensions o.
  /external/v8/test/webkit/
preventExtensions.js 25 "This test checks whether various seal/freeze/preventExtentions work on a regular object."
58 function freeze(obj) function
60 Object.freeze(obj);
75 freeze(frozen);
90 shouldBe('test(freeze(obj()))', '"(a:1)(b:2)SF"'); // sealed and frozen, CANNOT delete a, CANNOT modify b, and CANNOT add c
110 Object.freeze(Constructor.prototype);
116 var func = freeze(function foo(){});
123 var strictFunc = freeze(function foo(){ "use strict"; });
130 var array = freeze([0,1,2]);
137 var args = freeze((function(){ return arguments; })(0,1,2))
    [all...]
  /external/libcxx/test/std/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.members/
freeze.pass.cpp 14 // void freeze(bool freezefl = true);
23 sb.freeze(true);
25 sb.freeze(false);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.ostrstream/depr.ostrstream.members/
freeze.pass.cpp 14 // void freeze(bool freezefl = true);
23 out.freeze();
28 out.freeze(false);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.strstream/depr.strstream.oper/
freeze.pass.cpp 14 // void freeze(bool freezefl = true);
23 out.freeze();
28 out.freeze(false);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/depr/depr.str.strstreams/depr.strstreambuf/depr.strstreambuf.members/
freeze.pass.cpp 14 // void freeze(bool freezefl = true);
23 sb.freeze(true);
25 sb.freeze(false);
  /external/icu/icu4c/source/i18n/
rbt_set.h 37 * rule set is getting built. After that, freeze() reorders and
45 * Sorted and indexed table of rules. This is created by freeze()
47 * the rules in ruleVector. It is zero before freeze() is called
55 * freeze(). Before freeze() is called it contains garbage.
98 * a call to <code>freeze()</code> before the rule set is used.
99 * This method must <em>not</em> be called after freeze() has been
110 * <code>addRule()</code>; (2) freeze the set using
111 * <code>freeze()</code>; (3) use the rule set. If
114 * That is, <code>freeze()</code> may be called multiple times
    [all...]
decfmtst.cpp 151 // Freeze all the sets
152 fDotEquivalents->freeze();
153 fCommaEquivalents->freeze();
154 fOtherGroupingSeparators->freeze();
155 fDashEquivalents->freeze();
156 fStrictDotEquivalents->freeze();
157 fStrictCommaEquivalents->freeze();
158 fStrictOtherGroupingSeparators->freeze();
159 fStrictDashEquivalents->freeze();
160 fDefaultGroupingSeparators->freeze();
    [all...]

Completed in 1572 milliseconds

1 2 3 4 5 6 7 8 91011>>