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

1 23 4 5 6 7 8 91011>>

  /external/clang/test/Preprocessor/
_Pragma-physloc.c 1 // RUN: %clang_cc1 -E %s | FileCheck --strict-whitespace %s
macro_rparen_scan2.c 1 // RUN: %clang_cc1 -E %s | FileCheck -strict-whitespace %s
print_line_count.c 1 /* RUN: %clang -E -C -P %s | FileCheck --strict-whitespace %s
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
XmlLoader.java 17 public void setStrictI18n(boolean strict) {
18 this.strictI18n = strict;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
quopri_codec.py 12 def quopri_encode(input, errors='strict'):
16 'strict' handling which is the only currently supported
20 assert errors == 'strict'
28 def quopri_decode(input, errors='strict'):
32 'strict' handling which is the only currently supported
36 assert errors == 'strict'
45 def encode(self, input,errors='strict'):
47 def decode(self, input,errors='strict'):
charmap.py 25 def __init__(self, errors='strict', mapping=None):
33 def __init__(self, errors='strict', mapping=None):
42 def __init__(self,stream,errors='strict',mapping=None):
46 def encode(self,input,errors='strict'):
51 def __init__(self,stream,errors='strict',mapping=None):
55 def decode(self,input,errors='strict'):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/
quopri_codec.py 12 def quopri_encode(input, errors='strict'):
16 'strict' handling which is the only currently supported
20 assert errors == 'strict'
28 def quopri_decode(input, errors='strict'):
32 'strict' handling which is the only currently supported
36 assert errors == 'strict'
45 def encode(self, input,errors='strict'):
47 def decode(self, input,errors='strict'):
charmap.py 25 def __init__(self, errors='strict', mapping=None):
33 def __init__(self, errors='strict', mapping=None):
42 def __init__(self,stream,errors='strict',mapping=None):
46 def encode(self,input,errors='strict'):
51 def __init__(self,stream,errors='strict',mapping=None):
55 def decode(self,input,errors='strict'):
  /external/chromium_org/v8/test/webkit/fast/js/
numeric-escapes-in-string-literals-expected.txt 20 # ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 PASS eval(stringLiteral) threw exception SyntaxError: Octal literals are not allowed in strict mode..
34 PASS eval(stringLiteral) threw exception SyntaxError: Octal literals are not allowed in strict mode..
40 PASS eval(stringLiteral) threw exception SyntaxError: Octal literals are not allowed in strict mode..
42 PASS eval(stringLiteral) threw exception SyntaxError: Octal literals are not allowed in strict mode..
44 PASS eval(stringLiteral) threw exception SyntaxError: Octal literals are not allowed in strict mode..
46 PASS eval(stringLiteral) threw exception SyntaxError: Octal literals are not allowed in strict mode..
48 PASS eval(stringLiteral) threw exception SyntaxError: Octal literals are not allowed in strict mode..
50 PASS eval(stringLiteral) threw exception SyntaxError: Octal literals are not allowed in strict mode..
52 PASS eval(stringLiteral) threw exception SyntaxError: Octal literals are not allowed in strict mode.
    [all...]
caller-property.js 20 // ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
45 // The caller property should throw in strict mode, and a non-strict function cannot use caller to reach a strict caller (see ES5.1 15.3.5.4).
47 function strictCallee() { "use strict"; return strictCallee.caller; }
49 function strictCaller(x) { "use strict"; return x(); }
52 shouldThrow("strictCaller(nonStrictCallee)", '"TypeError: Function.caller used to retrieve strict caller"');
60 shouldThrow("strictCaller(boundNonStrictCallee)", '"TypeError: Function.caller used to retrieve strict caller"');
71 get foo() { "use strict"; return getFooGetter(strictAccessor).caller; },
72 set foo(x) { "use strict"; if (getFooSetter(strictAccessor).caller !==x) throw false;
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps_validate.c 2 * Wi-Fi Protected Setup - Strict protocol validation routines
25 wpa_printf(MSG_INFO, "WPS-STRICT: Version attribute "
32 wpa_printf(MSG_INFO, "WPS-STRICT: Invalid Version attribute "
44 wpa_printf(MSG_INFO, "WPS-STRICT: Version2 attribute "
51 wpa_printf(MSG_INFO, "WPS-STRICT: Invalid Version2 attribute "
63 wpa_printf(MSG_INFO, "WPS-STRICT: Request Type "
70 wpa_printf(MSG_INFO, "WPS-STRICT: Invalid Request Type "
82 wpa_printf(MSG_INFO, "WPS-STRICT: Response Type "
89 wpa_printf(MSG_INFO, "WPS-STRICT: Invalid Response Type "
101 wpa_printf(MSG_INFO, "WPS-STRICT: Physical/Virtual
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1973.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // 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
    [all...]
regress-parse-use-strict.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
31 // Snippet trying to switch to strict mode.
32 var strict = '"use strict"; with({}) {}'; variable
34 // Test switching to strict mode after string literal.
35 assertThrows('function f() { "use sanity";' + strict + '}');
36 assertThrows('function f() { "use sanity";' + strict + filler + '}');
38 // Test switching to strict mode after function declaration.
41 eval('function f() { function g() {}' + strict + '}');
42 eval('function f() { function g() {}' + strict + filler + '}')
    [all...]
  /external/chromium_org/v8/test/mjsunit/
strict-mode-opt.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 // Attempt to inline strcit in non-strict.
36 "use strict";
37 global = "strict";
59 // Attempt to inline non-strict in strict.
67 "use strict";
83 // Optimize strict function.
86 "use strict";
87 global = "strict";
    [all...]
  /external/v8/test/mjsunit/regress/
regress-1973.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // 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
    [all...]
  /external/v8/test/mjsunit/
strict-mode-opt.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 // Attempt to inline strcit in non-strict.
36 "use strict";
37 global = "strict";
59 // Attempt to inline non-strict in strict.
67 "use strict";
83 // Optimize strict function.
86 "use strict";
87 global = "strict";
    [all...]
  /external/chromium_org/v8/test/preparser/
strict-octal-use-strict-after.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // Strict mode with octal escape in string/directive prologue looking like
29 // "use strict", after "use strict" directive.
32 "use strict";
33 "use\040strict";
strict-octal-use-strict-before.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // Strict mode with octal escape in string/directive prologue looking like
29 // "use strict, before "use strict" directive.
32 "use\040strict";
33 "use strict";
  /external/clang/test/Format/
style-on-command-line.cpp 2 // RUN: clang-format -style="{BasedOnStyle: Google, IndentWidth: 8}" %t.cpp | FileCheck -strict-whitespace -check-prefix=CHECK1 %s
3 // RUN: clang-format -style="{BasedOnStyle: LLVM, IndentWidth: 7}" %t.cpp | FileCheck -strict-whitespace -check-prefix=CHECK2 %s
4 // RUN: clang-format -style="{BasedOnStyle: invalid, IndentWidth: 7}" %t.cpp 2>&1 | FileCheck -strict-whitespace -check-prefix=CHECK3 %s
5 // RUN: clang-format -style="{lsjd}" %t.cpp 2>&1 | FileCheck -strict-whitespace -check-prefix=CHECK4 %s
7 // RUN: clang-format -style=file %t.cpp 2>&1 | FileCheck -strict-whitespace -check-prefix=CHECK5 %s
9 // RUN: clang-format -style=file %t.cpp 2>&1 | FileCheck -strict-whitespace -check-prefix=CHECK6 %s
multiple-inputs-inplace.cpp 4 // RUN: FileCheck -strict-whitespace -input-file=%t-1.cpp %s
5 // RUN: FileCheck -strict-whitespace -input-file=%t-2.cpp %s
  /external/v8/test/preparser/
strict-octal-use-strict-after.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // Strict mode with octal escape in string/directive prologue looking like
29 // "use strict", after "use strict" directive.
32 "use strict";
33 "use\040strict";
strict-octal-use-strict-before.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // Strict mode with octal escape in string/directive prologue looking like
29 // "use strict, before "use strict" directive.
32 "use\040strict";
33 "use strict";
  /external/chromium_org/net/data/url_request_unittest/
hsts-and-hpkp-headers.html.mock-http-headers 6 Strict-Transport-Security: max-age=12300
7 Strict-Transport-Security: max-age=12300; includeSubdomains
  /external/dnsmasq/contrib/try-all-ns/
README-2.47 6 as it doesn't add new switch, rather it binds itself to "strict-order".
8 What it does is: if you have strict-order in the
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_codecencodings_hk.py 16 ("abc\x80\x80\xc1\xc4", "strict", None),
17 ("abc\xc8", "strict", None),

Completed in 911 milliseconds

1 23 4 5 6 7 8 91011>>