Searched refs:strict (Results 1 - 25 of 249) sorted by relevance

12345678910

/external/webkit/LayoutTests/http/tests/cookies/resources/
H A DsetCookies.cgi2 use strict;
H A DgetCookies.cgi2 use strict;
/external/v8/test/mjsunit/regress/
H A Dregress-1360.js32 function strict() { "use strict"; assertEquals(void 0, this); } function
35 [1,2,3].sort(strict);
38 "axc".replace("x", strict);
H A Dregress-bind-receiver.js28 function strict() { 'use strict'; return this; } function
32 assertEquals(true, strict.bind(true)());
33 assertEquals(42, strict.bind(42)());
34 assertEquals("", strict.bind("")());
35 assertEquals(null, strict.bind(null)());
36 assertEquals(undefined, strict.bind(undefined)());
37 assertEquals(obj, strict.bind(obj)());
H A Dregress-1436.js29 // undefined as the receiver (which for non-strict functions is
36 function strict(){ "use strict"; assertEquals(void 0, this); } function
37 function strict_null(){ "use strict"; assertEquals(null, this); }
40 [2, 3].reduce(strict);
42 [2, 3].reduceRight(strict);
49 [2, 3].every(strict);
50 [2, 3].every(strict, undefined);
56 [2, 3].filter(strict);
57 [2, 3].filter(strict, undefine
[all...]
H A Dregress-1412.js29 // unchanged to strict-mode functions and builtins.
33 function strict() { "use strict"; return this; } function
36 assertEquals(void 0, strict.apply(undefined, arguments));
37 assertEquals(42, strict.apply(42, arguments));
38 assertEquals("asdf", strict.apply("asdf", arguments));
H A Dregress-1973.js28 // Test that getters and setters pass unwrapped this values in strict mode
29 // and wrapped this values is non-strict mode.
33 // Check that strict mode passes unwrapped this value.
35 Object.defineProperty(prototype, "strict", {
36 get: function() { "use strict"; assertSame(strict_type, typeof this); },
37 set: function() { "use strict"; assertSame(strict_type, typeof this); }
39 primitive.strict = primitive.strict;
40 // Check that non-strict mode passes wrapped this value.
/external/webkit/Tools/Scripts/
H A Dnum-cpus2 use strict;
H A Ddebug-minibrowser31 use strict;
H A Ddebug-safari31 use strict;
H A Ddebug-test-runner28 use strict;
H A Drun-minibrowser31 use strict;
H A Drun-safari31 use strict;
H A Drun-test-runner28 use strict;
H A Drun-test-webkit-api31 use strict;
H A Dgenerate-project-files29 use strict;
H A Dupdate-webkit-auxiliary-libs31 use strict;
H A Dupdate-webkit-wincairo-libs31 use strict;
H A Dupdate-webkit-localizable-strings29 use strict;
H A Drun-gtk-tests20 use strict;
/external/antlr/antlr-3.4/runtime/Perl5/t/
H A Dclasses.t3 use strict;
/external/webkit/LayoutTests/http/tests/ssl/resources/
H A Dno-http-referer.cgi2 use strict;
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
H A DXmlLoader.java17 public void setStrictI18n(boolean strict) { argument
18 this.strictI18n = strict;
/external/chromium/base/third_party/icu/
H A Dicu_utf.cc118 * The "strict" parameter controls the error behavior:
125 * >0 Obsolete "strict" behavior of UTF8_NEXT_CHAR_SAFE(..., TRUE):
137 utf8_nextCharSafeBody(const uint8 *s, int32 *pi, int32 length, UChar32 c, UBool strict) { argument
172 if(strict>=0) {
193 if(illegal || (c)<utf8_minLegal[count] || (CBU_IS_SURROGATE(c) && strict!=-2)) {
202 if(strict>=0) {
207 } else if((strict)>0 && CBU_IS_UNICODE_NONCHAR(c)) {
208 /* strict: forbid non-characters like U+fffe */
218 if(strict>=0) {
/external/webkit/Source/JavaScriptCore/wtf/unicode/
H A DUTF8.h51 // These conversion functions take a "strict" argument. When this
52 // flag is set to strict, both irregular sequences and isolated surrogates
56 // Whether the flag is strict or lenient, all illegal sequences will cause
62 // to the replacement character; otherwise (when the flag is set to strict)
67 UChar** targetStart, UChar* targetEnd, bool strict = true);
71 char** targetStart, char* targetEnd, bool strict = true);

Completed in 243 milliseconds

12345678910