HomeSort by relevance Sort by last modified time
    Searched full:strict (Results 176 - 200 of 35862) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/v8/test/preparser/
nonstrict-eval.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // Eval restrictions should not trigger outside of strict-mode code.
38 function strict() { function
39 "use strict";
nonstrict-with.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // The with statement is allowed in non-strict code, and even around
29 // strict code.
35 "use strict";
strict-octal-indirect-regexp.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // Strict mode with call to RegExp containing octal escape:
31 "use strict";
strict-octal-number.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // Strict mode with octal number literal.
31 "use strict";
strict-octal-regexp.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // Strict mode with octal escape in RegExp literal.
31 "use strict";
strict-octal-string.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // Strict mode with octal escape in string literal.
31 "use strict";
strict-with.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // The with statement is not allowed in strict code.
31 "use strict";
  /external/chromium_org/third_party/JSON/JSON-2.59/t/
e13_overloaded_eq.t 2 use strict;
29 use strict;
42 use strict;
  /external/chromium_org/v8/test/mjsunit/
keywords-and-reserved_words.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 // future reserved words in strict mode as specific by 7.6.1 and 7.6.2
49 eval("'use strict'; var "+x+";");
60 // All non-strict keywords are also keywords in strict code.
67 // Check for strict mode future reserved words.
69 return "strict";
110 "id", "strict",
161 // 7.6.1.2 Future Reserved Words, in strict mode only.
174 assertEquals ("strict", classifyIdentifier(future_strict_reserved_words[i]))
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1176.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 "use strict";
30 // "delete this" is allowed in strict mode.
regress-2243.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 assertThrows("'use strict'; (function f() { f = 123; })", SyntaxError);
31 assertThrows("(function f() { 'use strict'; f = 123; })", SyntaxError);
regress-2261.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 // strict mode closure after modifying an argument.
36 "use strict";
55 // inlined strict mode closure after modifying an argument.
60 "use strict";
88 "use strict";
98 "use strict";
  /external/chromium_org/v8/test/preparser/
strict-octal-indirect-regexp.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // Strict mode with call to RegExp containing octal escape:
31 "use strict";
strict-octal-number.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // Strict mode with octal number literal.
31 "use strict";
strict-octal-regexp.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // Strict mode with octal escape in RegExp literal.
31 "use strict";
strict-octal-string.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // Strict mode with octal escape in string literal.
31 "use strict";
strict-with.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // The with statement is not allowed in strict code.
31 "use strict";
  /external/compiler-rt/lib/lsan/lit_tests/TestCases/
do_leak_check_override.cc 3 // "normal" mode (LSan runs in "strict" mode by default).
6 // RUN: LSAN_OPTIONS=$LSAN_BASE not %t 2>&1 | FileCheck --check-prefix=CHECK-strict %s
35 // CHECK-strict: SUMMARY: LeakSanitizer: 2003 byte(s) leaked in 2 allocation(s)
  /external/v8/test/mjsunit/
keywords-and-reserved_words.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 // future reserved words in strict mode as specific by 7.6.1 and 7.6.2
49 eval("'use strict'; var "+x+";");
60 // All non-strict keywords are also keywords in strict code.
67 // Check for strict mode future reserved words.
69 return "strict";
110 "id", "strict",
161 // 7.6.1.2 Future Reserved Words, in strict mode only.
174 assertEquals ("strict", classifyIdentifier(future_strict_reserved_words[i]))
    [all...]
  /external/v8/test/mjsunit/regress/
regress-1176.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 "use strict";
30 // "delete this" is allowed in strict mode.
  /external/icu4c/common/
utf_impl.c 90 errorValue(int32_t count, int8_t strict) {
91 if(strict>=0) {
93 } else if(strict==-3) {
106 * The "strict" parameter controls the error behavior:
118 * >0 Obsolete "strict" behavior of UTF8_NEXT_CHAR_SAFE(..., TRUE):
125 utf8_nextCharSafeBody(const uint8_t *s, int32_t *pi, int32_t length, UChar32 c, UBool strict) {
154 if(((c&0xffe0)==0x360 && strict!=-2) || trail>0x3f) { break; }
161 /* strict: forbid non-characters like U+fffe */
162 (strict<=0 || !U_IS_UNICODE_NONCHAR(c))) {
179 c=errorValue(i-*pi, strict);
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mimetypes.py 5 guess_type(url, strict=1) -- guess the MIME type and encoding of a URL.
7 guess_extension(type, strict=1) -- guess the extension for a given MIME type.
64 def __init__(self, filenames=(), strict=True):
69 self.types_map = ({}, {}) # dict for (non-strict, strict)
76 self.read(name, strict)
78 def add_type(self, type, ext, strict=True):
86 If strict is true, information will be added to
90 self.types_map[strict][ext] = type
91 exts = self.types_map_inv[strict].setdefault(type, []
577 strict = 1 variable
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mimetypes.py 5 guess_type(url, strict=1) -- guess the MIME type and encoding of a URL.
7 guess_extension(type, strict=1) -- guess the extension for a given MIME type.
64 def __init__(self, filenames=(), strict=True):
69 self.types_map = ({}, {}) # dict for (non-strict, strict)
76 self.read(name, strict)
78 def add_type(self, type, ext, strict=True):
86 If strict is true, information will be added to
90 self.types_map[strict][ext] = type
91 exts = self.types_map_inv[strict].setdefault(type, []
577 strict = 1 variable
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/unicode/
UTF8.h 21 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
52 // These conversion functions take a "strict" argument. When this
53 // flag is set to strict, both irregular sequences and isolated surrogates
57 // Whether the flag is strict or lenient, all illegal sequences will cause
63 // to the replacement character; otherwise (when the flag is set to strict)
68 UChar** targetStart, UChar* targetEnd, bool* isSourceAllASCII = 0, bool strict = true);
76 char** targetStart, char* targetEnd, bool strict = true);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_check.py 42 # now with the strict mode, we should
44 self.assertRaises(DistutilsSetupError, self._run, {}, **{'strict': 1})
47 cmd = self._run(metadata, strict=1)
85 # let's see if we have an error with strict=1
91 **{'strict': 1, 'restructuredtext': 1})
95 cmd = self._run(metadata, strict=1, restructuredtext=1)
102 {}, **{'strict': 1,

Completed in 730 milliseconds

1 2 3 4 5 6 78 91011>>