HomeSort by relevance Sort by last modified time
    Searched full:literals (Results 1 - 25 of 1359) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/v8/test/message/
strict-octal-number.out 1 *%(basename)s:32: SyntaxError: Octal literals are not allowed in strict mode.
4 SyntaxError: Octal literals are not allowed in strict mode.
strict-octal-string.out 1 *%(basename)s:32: SyntaxError: Octal literals are not allowed in strict mode.
4 SyntaxError: Octal literals are not allowed in strict mode.
strict-octal-use-strict-after.out 1 *%(basename)s:33: SyntaxError: Octal literals are not allowed in strict mode.
4 SyntaxError: Octal literals are not allowed in strict mode.
strict-octal-use-strict-before.out 1 *%(basename)s:32: SyntaxError: Octal literals are not allowed in strict mode.
4 SyntaxError: Octal literals are not allowed in strict mode.
  /ndk/tests/build/merge-string-literals/jni/
Android.mk 4 LOCAL_MODULE := merge-string-literals
5 LOCAL_SRC_FILES := merge-string-literals-1.c merge-string-literals-2.c
  /external/clang/test/Index/
annotate-literals.m 49 // RUN: c-index-test -test-annotate-tokens=%s:41:1:46:1 %s | FileCheck -check-prefix=CHECK-LITERALS %s
51 // CHECK-LITERALS: Identifier: "id" [41:3 - 41:5] TypeRef=id:0:0
52 // CHECK-LITERALS: Identifier: "objects" [41:6 - 41:13] VarDecl=objects:41:6 (Definition)
53 // CHECK-LITERALS: Punctuation: "=" [41:14 - 41:15] VarDecl=objects:41:6 (Definition)
54 // CHECK-LITERALS: Punctuation: "@" [41:16 - 41:17] UnexposedExpr=
55 // CHECK-LITERALS: Punctuation: "[" [41:17 - 41:18] UnexposedExpr=
56 // CHECK-LITERALS: Identifier: "o1" [41:19 - 41:21] DeclRefExpr=o1:40:30
57 // CHECK-LITERALS: Punctuation: "," [41:21 - 41:22] UnexposedExpr=
58 // CHECK-LITERALS: Identifier: "o2" [41:23 - 41:25] DeclRefExpr=o2:40:44
59 // CHECK-LITERALS: Punctuation: "]" [41:26 - 41:27] UnexposedExpr
    [all...]
  /external/clang/test/Lexer/
string_concat.cpp 12 const char* a = u8"abc" u"abc"; // expected-error {{unsupported non-standard concatenation of string literals}}
13 const char* b = u8"abc" U"abc"; // expected-error {{unsupported non-standard concatenation of string literals}}
14 const char* c = u8"abc" L"abc"; // expected-error {{unsupported non-standard concatenation of string literals}}
16 const char* d = u8"abc" uR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
17 const char* e = u8"abc" UR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
18 const char* f = u8"abc" LR"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
21 const char16_t* g = u"abc" u8"abc"; // expected-error {{unsupported non-standard concatenation of string literals}}
22 const char16_t* h = u"abc" U"abc"; // expected-error {{unsupported non-standard concatenation of string literals}}
23 const char16_t* i = u"abc" L"abc"; // expected-error {{unsupported non-standard concatenation of string literals}}
25 const char16_t* j = u"abc" u8R"(abc)"; // expected-error {{unsupported non-standard concatenation of string literals}}
    [all...]
unicode-strings.c 16 const char *a = u8"abcd"; // expected-warning {{unicode literals are incompatible with}}
17 const char16_t *b = u"abcd"; // expected-warning {{unicode literals are incompatible with}}
18 const char32_t *c = U"abcd"; // expected-warning {{unicode literals are incompatible with}}
20 char16_t d = u'a'; // expected-warning {{unicode literals are incompatible with}}
21 char32_t e = U'a'; // expected-warning {{unicode literals are incompatible with}}
  /libcore/luni/src/test/java/dalvik/system/
JniTest.java 93 final Object[] literals = {"Bradshaw", "Isherwood", "Oldknow", "Mallet", local
96 // test selection from a list of object literals where the literals are all the same
97 for(Object literal : literals) {
107 // test selection from a list of object literals where the literals are shuffled
108 for(int j = 0; j < literals.length; j++) {
110 a[i] = literals[(i + j) % literals.length];
122 final boolean[] literals = {true, false, false, true}
150 final char[] literals = {Character.MAX_VALUE, Character.MIN_VALUE, local
209 final short[] literals = {Byte.MAX_VALUE, Byte.MIN_VALUE, Short.MAX_VALUE, Short.MIN_VALUE, 0, -1}; local
237 final int[] literals = {Byte.MAX_VALUE, Byte.MIN_VALUE, Short.MAX_VALUE, Short.MIN_VALUE, local
266 final long[] literals = {Byte.MAX_VALUE, Byte.MIN_VALUE, Short.MAX_VALUE, Short.MIN_VALUE, local
295 final float[] literals = {Byte.MAX_VALUE, Byte.MIN_VALUE, Short.MAX_VALUE, Short.MIN_VALUE, local
326 final double[] literals = {Byte.MAX_VALUE, Byte.MIN_VALUE, Short.MAX_VALUE, Short.MIN_VALUE, local
    [all...]
  /external/v8/test/webkit/fast/js/
numeric-escapes-in-string-literals-expected.txt 24 Test numeric escapes in string literals - https://bugs.webkit.org/show_bug.cgi?id=51724
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...]
  /external/v8/src/runtime/
runtime-literals.cc 37 Isolate* isolate, Handle<LiteralsArray> literals,
41 Isolate* isolate, Handle<LiteralsArray> literals,
45 // In case we have function literals, we want the object to be in
54 isolate->heap()->InNewSpace(*literals) ? NOT_TENURED : TENURED;
81 isolate, value, CreateLiteralBoilerplate(isolate, literals, array),
102 // Transform to fast properties if necessary. For object literals with
103 // containing function literals we defer this operation until after all
115 Isolate* isolate, Handle<LiteralsArray> literals,
121 isolate->heap()->InNewSpace(*literals) ? NOT_TENURED : TENURED;
173 CreateLiteralBoilerplate(isolate, literals, fa), Object)
    [all...]
  /external/clang/test/Preprocessor/
utf8-allowed-chars.c 35 // expected-error@13 {{non-ASCII characters are not allowed outside of literals and identifiers}}
41 // expected-error@9 {{non-ASCII characters are not allowed outside of literals and identifiers}}
42 // expected-error@10 {{non-ASCII characters are not allowed outside of literals and identifiers}}
43 // expected-error@13 {{non-ASCII characters are not allowed outside of literals and identifiers}}
44 // expected-error@14 {{non-ASCII characters are not allowed outside of literals and identifiers}}
45 // expected-error@21 {{non-ASCII characters are not allowed outside of literals and identifiers}} expected-warning@21 {{declaration does not declare anything}}
53 // expected-error@13 {{non-ASCII characters are not allowed outside of literals and identifiers}}
60 // expected-error@9 {{non-ASCII characters are not allowed outside of literals and identifiers}}
61 // expected-error@11 {{non-ASCII characters are not allowed outside of literals and identifiers}}
62 // expected-error@13 {{non-ASCII characters are not allowed outside of literals and identifiers}
    [all...]
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug087.go 18 bug087.go:6: illegal combination of literals LEN 9
19 bug087.go:6: illegal combination of literals LEN 9
bug466.go 8 // complex literals "a+bi" to "a+b".
gcc61264.go 7 // PR61264: IncDec statements involving composite literals caused in ICE in gccgo.
issue4879.go 8 // composite literals in inlined bodies.
issue4932.go 7 // Issue 4932: regression in export of composite literals.
bug300.go 14 // legal composite literals
22 // illegal composite literals: parentheses not allowed around literal type
  /prebuilts/go/linux-x86/test/fixedbugs/
bug087.go 18 bug087.go:6: illegal combination of literals LEN 9
19 bug087.go:6: illegal combination of literals LEN 9
bug466.go 8 // complex literals "a+bi" to "a+b".
gcc61264.go 7 // PR61264: IncDec statements involving composite literals caused in ICE in gccgo.
issue4879.go 8 // composite literals in inlined bodies.
issue4932.go 7 // Issue 4932: regression in export of composite literals.
bug300.go 14 // legal composite literals
22 // illegal composite literals: parentheses not allowed around literal type
  /external/v8/test/mjsunit/
debug-liveedit-literals.js 69 // No literals -> 1 literal.
72 // No literals -> 2 literals.
75 // 1 literal -> no literals.
78 // 2 literals -> no literals.
81 // No literals -> regexp.
90 // No literals -> regexp.
93 // Regexp -> no literals.

Completed in 1401 milliseconds

1 2 3 4 5 6 7 8 91011>>