HomeSort by relevance Sort by last modified time
    Searched refs:strict (Results 1 - 25 of 1935) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
arithsmall.asm 4 and eax, strict dword 3584
5 and eax, strict dword 35
6 and eax, strict byte 3584
7 and eax, strict byte 35
10 and ebx, strict dword 3584
11 and ebx, strict dword 35
12 and ebx, strict byte 3584
13 and ebx, strict byte 35
push64.asm 4 push strict dword 50
5 push strict dword -1
addbyte.asm 3 add ax,strict byte 5
4 add ax,strict word 5
6 add ax,strict byte -128
7 add ax,strict word -128
9 add ax,strict byte 0x7f
10 add ax,strict word 0x7f
12 add ax,strict byte 0x80
13 add ax,strict word 0x80
15 add ax,strict byte 0x100
16 add ax,strict word 0x10
    [all...]
strict.asm 3 ;jmp strict near foo
5 ;jmp strict short foo
9 ;jz strict near foo
11 ;jz strict short foo
18 add eax, strict 4 ; NASM generates dword, yasm generates byte
20 add eax, strict byte 4
22 add eax, strict dword 4
24 add eax, strict 400
26 add eax, strict byte 400 ; generates warning
28 add eax, strict dword 40
    [all...]
strict-err.asm 3 add [rax], strict dword 4 ; illegal; must use dword [eax], strict dword 4
5 add [rax], strict qword 4 ; illegal; must use qword [eax], strict dword 4
pushnosize.asm 6 push strict byte 0 ; 6A 00
7 push strict word 0 ; 68 0000
8 push strict dword 0 ; 66 68 00000000
13 push strict byte 128 ; 6A 80 - warning (signed overflow)
14 push strict word 128 ; 68 8000
15 push strict dword 128 ; 66 68 80000000
22 push strict byte 0 ; 6A 00
23 push strict word 0 ; 66 68 0000
24 push strict dword 0 ; 68 00000000
29 push strict byte 128 ; 6A 80 - warning (signed overflow
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/t/
classes.t 3 use strict;
  /external/chromium_org/v8/test/webkit/fast/js/
basic-strict-mode.js 20 // ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 description("Test behaviour of strict mode");
28 "use strict";
32 "use strict";
36 "use strict";
76 shouldBeUndefined("Function('\"use strict\"; return this;')()");
77 shouldThrow("Function('\"use strict\"; with({});')");
86 shouldBeSyntaxError("(function eval(){'use strict';})");
87 shouldBeSyntaxError("(function (eval){'use strict';})");
88 shouldBeSyntaxError("(function arguments(){'use strict';})");
    [all...]
  /packages/apps/Email/src/com/beetstra/jutf7/
UTF7StyleCharset.java 44 final boolean strict; field in class:UTF7StyleCharset
52 * decoders should be strict about the interpretation of malformed encoded
61 * @param strict True if strict handling of sequences is requested
64 boolean strict) {
67 this.strict = strict;
83 return new UTF7StyleCharsetDecoder(this, base64, strict);
91 return new UTF7StyleCharsetEncoder(this, base64, strict);
  /external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/
EarlyExitException.pm 3 use strict;
  /external/chromium_org/remoting/codec/
codec_test.h 22 // If |strict| is set to true then this routine will make sure the updated
24 void TestVideoEncoder(VideoEncoder* encoder, bool strict);
28 // If |strict| is set to true, this routine will make sure the updated rects
32 bool strict);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
debug-test-runner 22 # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
28 use strict;
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
XmlLoader.java 17 public void setStrictI18n(boolean strict) {
18 this.strictI18n = strict;
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1624-strict.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // Test that global eval calls of strict code (independent from whether being
31 "use strict";
34 // Test global direct strict eval in strict script.
37 eval('"use strict"; var no_touch = 1;');
40 // Test global indirect strict eval in strict script.
43 evil('"use strict"; var no_touch = 2;');
46 // Test global direct non-strict eval in strict script
    [all...]
regress-1624.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // Test that global eval calls of strict code (independent from whether being
33 // Test global direct strict eval.
36 eval('"use strict"; var no_touch = 1;');
39 // Test global indirect strict eval.
42 evil('"use strict"; var no_touch = 2;');
45 // Test global direct non-strict eval.
51 // Test global indirect non-strict eval.
57 // Test non-global direct strict eval in non-strict function
    [all...]
  /external/v8/test/mjsunit/regress/
regress-1624-strict.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // Test that global eval calls of strict code (independent from whether being
31 "use strict";
34 // Test global direct strict eval in strict script.
37 eval('"use strict"; var no_touch = 1;');
40 // Test global indirect strict eval in strict script.
43 evil('"use strict"; var no_touch = 2;');
46 // Test global direct non-strict eval in strict script
    [all...]
regress-1624.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // Test that global eval calls of strict code (independent from whether being
33 // Test global direct strict eval.
36 eval('"use strict"; var no_touch = 1;');
39 // Test global indirect strict eval.
42 evil('"use strict"; var no_touch = 2;');
45 // Test global direct non-strict eval.
51 // Test global indirect non-strict eval.
57 // Test non-global direct strict eval in non-strict function
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/bin/
antRun.pl 29 use strict;
  /external/chromium_org/v8/test/mjsunit/
strict-mode.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 assertThrows("'use strict';\n" + code, exception);
31 assertThrows('"use strict";\n' + code, exception);
40 'use strict';\
52 // Create non-strict function. No exception.
57 // Create strict mode function. Exception expected.
58 args[arguments.length] = "'use strict';";
64 // Incorrect 'use strict' directive.
70 // Incorrectly place 'use strict' directive.
71 assertThrows("function foo (x) 'use strict'; {}", SyntaxError)
505 function strict() { function
    [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/v8/test/mjsunit/
strict-mode.js 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 assertThrows("'use strict';\n" + code, exception);
31 assertThrows('"use strict";\n' + code, exception);
40 'use strict';\
52 // Create non-strict function. No exception.
57 // Create strict mode function. Exception expected.
58 args[arguments.length] = "'use strict';";
64 // Incorrect 'use strict' directive.
70 // Incorrectly place 'use strict' directive.
71 assertThrows("function foo (x) 'use strict'; {}", SyntaxError)
505 function strict() { function
    [all...]
  /dalvik/dx/tests/003-magic-version-access/
run 23 dx --dump --strict class-bad-magic.txt
26 dx --dump --strict class-version-44.0.txt
27 dx --dump --strict class-version-44.65535.txt
43 dx --dump --strict class-version-51.1.txt
44 dx --dump --strict class-version-51.65535.txt
45 dx --dump --strict class-version-52.0.txt
  /external/chromium/base/third_party/icu/
icu_utf.cc 118 * 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) {
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/chromium_org/base/third_party/icu/
icu_utf.cc 118 * 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) {
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) {

Completed in 1036 milliseconds

1 2 3 4 5 6 7 8 91011>>