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

1 2 3 4 56 7 8 91011>>

  /external/chromium_org/v8/test/mjsunit/compiler/
eval-introduced-closure.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 // strict mode and non-strict mode eval in scopes.
40 "use strict";
50 "use strict";
61 "use strict";
73 function strict_eval(str) { "use strict"; return eval(str); }
85 "use strict";
86 function strict_eval(str) { "use strict"; return eval(str); }
  /external/chromium_org/v8/test/preparser/
duplicate-parameter.pyt 24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 # A template that performs the same strict-mode test in different
35 # and in non-strict mode too.
40 Template(name, '"use strict";\n' + source)(non_selfstrict, expectation)
42 'function foo() {\n "use strict";\n' + source +'\n}\n')(
45 'function foo() {\n "use strict";\n function bar() {\n' +
48 selfstrict = {"selfstrict": "\"use strict\";", "id": "selfstrict"}
49 nestedstrict = {"selfstrict": "function bar(){\"use strict\";}",
52 "use strict";
  /external/v8/test/mjsunit/compiler/
eval-introduced-closure.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 // strict mode and non-strict mode eval in scopes.
40 "use strict";
50 "use strict";
61 "use strict";
73 function strict_eval(str) { "use strict"; return eval(str); }
85 "use strict";
86 function strict_eval(str) { "use strict"; return eval(str); }
  /external/v8/test/preparser/
duplicate-parameter.pyt 24 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 # A template that performs the same strict-mode test in different
35 # and in non-strict mode too.
40 Template(name, '"use strict";\n' + source)(non_selfstrict, expectation)
42 'function foo() {\n "use strict";\n' + source +'\n}\n')(
45 'function foo() {\n "use strict";\n function bar() {\n' +
48 selfstrict = {"selfstrict": "\"use strict\";", "id": "selfstrict"}
49 nestedstrict = {"selfstrict": "function bar(){\"use strict\";}",
52 "use strict";
  /external/chromium_org/v8/test/mjsunit/
getter-in-prototype.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 // that have only a getter in a prototype object, except when we are in strict
41 assertThrows(function() { 'use strict'; o.x = 42; });
42 assertThrows(function() { 'use strict'; o[0] = 42; });
59 'use strict';
73 'use strict';
readonly.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
153 "use strict";
158 for (var strict = 0; strict < 2; ++strict) {
159 print(" strict =", strict);
160 f(strict);
167 f(function(strict, create, readonly) {
176 if (strict === 0
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
numeric-escapes-in-string-literals.js 20 // ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 stringLiteral = '"use strict"; ' + stringLiteral;
43 // In non-strict mode 0-7 are octal escapes, 8-9 are NonEscapeCharacters.
44 // In strict mode only "\0" is permitted.
51 // Tests for multi-digit octal values outside strict mode;
52 // Octal literals may be 1-3 digits long. In strict more all multi-digit sequences are illegal.
caller-property-expected.txt 20 # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 FAIL nonStrictCaller(strictCallee) should throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them.
34 FAIL strictCaller(nonStrictCallee) should throw TypeError: Function.caller used to retrieve strict caller. Was null.
35 FAIL strictCaller(strictCallee) should throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them.
37 FAIL nonStrictCaller(boundStrictCallee) should throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them.
38 FAIL strictCaller(boundNonStrictCallee) should throw TypeError: Function.caller used to retrieve strict caller. Was null.
39 FAIL strictCaller(boundStrictCallee) should throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them.
42 FAIL nonStrictGetter(strictAccessor) should throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them.
43 FAIL nonStrictSetter(strictAccessor) should throw TypeError: Type error. Threw exception TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them.
44 FAIL strictGetter(nonStrictAccessor) should throw TypeError: Function.caller used to retrieve strict caller. Was null
    [all...]
  /external/v8/test/mjsunit/
getter-in-prototype.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 // that have only a getter in a prototype object, except when we are in strict
41 assertThrows(function() { 'use strict'; o.x = 42; });
42 assertThrows(function() { 'use strict'; o[0] = 42; });
59 'use strict';
73 'use strict';
  /external/chromium_org/third_party/JSON/JSON-2.59/t/
e02_bool.t 2 use strict;
5 use strict;
xe02_bool.t 2 use strict;
5 use strict;
  /external/chromium_org/third_party/jsoncpp/
jsoncpp_untrusted.gyp 22 # Turn off optimizations based on strict aliasing
25 '-fno-strict-aliasing',
  /external/clang/test/Driver/
Ofast.c 4 // RUN: %clang -fno-strict-aliasing -Ofast -### %s 2>&1 | FileCheck -check-prefix=CHECK-OFAST %s
8 // RUN: %clang -Ofast -fno-strict-aliasing -### %s 2>&1 | FileCheck -check-prefix=CHECK-OFAST-NO-STRICT-ALIASING %s
29 // CHECK-OFAST-NO-STRICT-ALIASING: -cc1
30 // CHECK-OFAST-NO-STRICT-ALIASING: -relaxed-aliasing
31 // CHECK-OFAST-NO-STRICT-ALIASING: -ffast-math
32 // CHECK-OFAST-NO-STRICT-ALIASING: -Ofast
33 // CHECK-OFAST-NO-STRICT-ALIASING: -vectorize-loops
clang_wrapv_opts.c 4 // RUN: %clang -### -S -fstrict-overflow -fno-strict-overflow %s 2>&1 | FileCheck -check-prefix=CHECK2 %s
10 // RUN: %clang -### -S -fno-wrapv -fno-strict-overflow %s 2>&1 | FileCheck -check-prefix=CHECK4 %s
  /external/clang/test/Preprocessor/
macro_fn_comma_swallow2.c 3 // RUN: %clang_cc1 -E %s | FileCheck -check-prefix=GCC -strict-whitespace %s
4 // RUN: %clang_cc1 -E -std=c99 %s | FileCheck -check-prefix=C99 -strict-whitespace %s
5 // RUN: %clang_cc1 -E -std=c11 %s | FileCheck -check-prefix=C99 -strict-whitespace %s
6 // RUN: %clang_cc1 -E -x c++ %s | FileCheck -check-prefix=GCC -strict-whitespace %s
7 // RUN: %clang_cc1 -E -std=gnu99 %s | FileCheck -check-prefix=GCC -strict-whitespace %s
8 // RUN: %clang_cc1 -E -fms-compatibility %s | FileCheck -check-prefix=MS -strict-whitespace %s
9 // RUN: %clang_cc1 -E -DNAMED %s | FileCheck -check-prefix=GCC -strict-whitespace %s
10 // RUN: %clang_cc1 -E -std=c99 -DNAMED %s | FileCheck -check-prefix=C99 -strict-whitespace %s
  /external/ipsec-tools/src/racoon/samples/
racoon.conf.sample-inherit 20 proposal_check strict; # obey, strict or claim
  /external/iptables/extensions/
libip6t_rt.man 18 \fB\-\-rt\-0\-not\-strict\fP
19 List of type=0 addresses is not a strict list.
  /external/oprofile/doc/xsl/
xhtml.xsl 9 doctype-public="-//W3C//DTD XHTML 1.0 Strict//EN"
10 doctype-system="http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
uu_codec.py 15 def uu_encode(input,errors='strict',filename='<data>',mode=0666):
21 'strict' handling which is the only currently supported
25 assert errors == 'strict'
44 def uu_decode(input,errors='strict'):
54 'strict' handling which is the only currently supported
61 assert errors == 'strict'
98 def encode(self,input,errors='strict'):
101 def decode(self,input,errors='strict'):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
testcodec.py 14 def encode(self,input,errors='strict'):
18 def decode(self,input,errors='strict'):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
uu_codec.py 15 def uu_encode(input,errors='strict',filename='<data>',mode=0666):
21 'strict' handling which is the only currently supported
25 assert errors == 'strict'
44 def uu_decode(input,errors='strict'):
54 'strict' handling which is the only currently supported
61 assert errors == 'strict'
98 def encode(self,input,errors='strict'):
101 def decode(self,input,errors='strict'):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
testcodec.py 14 def encode(self,input,errors='strict'):
18 def decode(self,input,errors='strict'):
  /external/antlr/antlr-3.4/runtime/Perl5/t/author/
perlcritic.t 1 use strict;
  /external/antlr/antlr-3.4/runtime/Perl5/t/
version.t 1 use strict;
  /external/chromium-trace/trace-viewer/src/base/unittest/
test_error.js 5 'use strict';

Completed in 1875 milliseconds

1 2 3 4 56 7 8 91011>>