/external/valgrind/main/none/tests/s390x/ |
op00.c | 1 /* Test for invalid instruction 00. */
|
/frameworks/compile/slang/tests/F_rs_prefix/ |
stderr.txt.expect | 1 rs_prefix.rs:4:6: error: invalid function name prefix, "rs" is reserved: 'rs_foo'
|
/frameworks/compile/slang/tests/F_set_target_api_foo/ |
set_target_api_foo.rs | 6 #error Invalid RS_VERSION
|
/frameworks/compile/slang/tests/P_unknown_function/ |
stderr.txt.expect | 1 unknown_function.rs:6:5: warning: implicit declaration of function 'rsgProgramStoreGetDepthFunc' is invalid in C99
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/ |
segoff-err.errwarn | 1 -:3: error: invalid segment in effective address 2 -:4: error: invalid segment in effective address 3 -:5: error: invalid segment in effective address
|
svm.asm | 7 ; invlpga [ax], ecx ; invalid 9 ; skinit [rax] ; invalid 29 ; skinit [ax] ; invalid
|
/external/dropbear/libtomcrypt/src/misc/ |
error_to_string.c | 25 "Invalid keysize for block cipher.", 26 "Invalid number of rounds for block cipher.", 30 "Invalid input packet.", 32 "Invalid number of bits for a PRNG.", 35 "Invalid cipher specified.", 36 "Invalid hash specified.", 37 "Invalid PRNG specified.", 41 "Invalid PK key or key type specified for function.", 44 "Invalid argument provided.", 47 "Invalid PK type." [all...] |
/external/clang/test/SemaOpenCL/ |
invalid-logical-ops-1.2.cl | 12 float fbaf = 0.0f & 0.0f; // expected-error {{invalid operands}} 13 float fbof = 0.0f | 0.0f; // expected-error {{invalid operands}} 14 float fbxf = 0.0f ^ 0.0f; // expected-error {{invalid operands}} 17 float ibaf = 0 & 0.0f; // expected-error {{invalid operands}} 18 float ibof = 0 | 0.0f; // expected-error {{invalid operands}} 19 float bnf = ~0.0f;// expected-error {{invalid argument type}} 27 float4 f4baf = f4 & 0.0f; // expected-error {{invalid operands}} 28 float4 f4bof = f4 | 0.0f; // expected-error {{invalid operands}} 29 float4 f4bxf = f4 ^ 0.0f; // expected-error {{invalid operands}} 30 float bnf4 = ~f4; // expected-error {{invalid argument type} [all...] |
/external/clang/test/CXX/class/class.friend/ |
p6.cpp | 5 friend static class B; // expected-error {{'static' is invalid in friend declarations}} 6 friend extern class C; // expected-error {{'extern' is invalid in friend declarations}} 8 friend register class E; // expected-error {{'register' is invalid in friend declarations}} 10 friend register class E; // expected-error {{'register' is invalid in friend declarations}} 12 friend mutable class F; // expected-error {{'mutable' is invalid in friend declarations}} 13 friend typedef class G; // expected-error {{'typedef' is invalid in friend declarations}} 14 friend __thread class G; // expected-error {{'__thread' is invalid in friend declarations}} 15 friend _Thread_local class G; // expected-error {{'_Thread_local' is invalid in friend declarations}} 16 friend static _Thread_local class G; // expected-error {{'static _Thread_local' is invalid in friend declarations}} 18 friend auto class D; // expected-warning {{incompatible with C++11}} expected-error {{'auto' is invalid in friend declarations} [all...] |
/external/chromium_org/v8/test/webkit/fast/js/ |
parser-syntax-check-expected.txt | 32 PASS Invalid: "(a" 33 PASS Invalid: "function f() { (a }" 34 PASS Invalid: "a[5" 35 PASS Invalid: "function f() { a[5 }" 36 PASS Invalid: "a[5 + 6" 37 PASS Invalid: "function f() { a[5 + 6 }" 38 PASS Invalid: "a." 39 PASS Invalid: "function f() { a. }" 40 PASS Invalid: "()" 41 PASS Invalid: "function f() { () } [all...] |
/external/dropbear/libtomcrypt/src/headers/ |
tomcrypt.h | 35 CRYPT_INVALID_KEYSIZE, /* Invalid key size given */ 36 CRYPT_INVALID_ROUNDS, /* Invalid number of rounds */ 40 CRYPT_INVALID_PACKET, /* Invalid input packet given */ 42 CRYPT_INVALID_PRNGSIZE, /* Invalid number of bits for a PRNG */ 45 CRYPT_INVALID_CIPHER, /* Invalid cipher specified */ 46 CRYPT_INVALID_HASH, /* Invalid hash specified */ 47 CRYPT_INVALID_PRNG, /* Invalid PRNG specified */ 54 CRYPT_INVALID_ARG, /* Generic invalid argument */ 57 CRYPT_PK_INVALID_TYPE, /* Invalid type of PK key */ 58 CRYPT_PK_INVALID_SYSTEM,/* Invalid PK system specified * [all...] |
/external/llvm/test/MC/SystemZ/ |
insn-bad-z196.s | 5 #CHECK: error: invalid operand 7 #CHECK: error: invalid operand 9 #CHECK: error: invalid operand 16 #CHECK: error: invalid operand 18 #CHECK: error: invalid operand 20 #CHECK: error: invalid operand 27 #CHECK: error: invalid operand 29 #CHECK: error: invalid operand 31 #CHECK: error: invalid operand 33 #CHECK: error: invalid operan [all...] |
regs-bad.s | 6 #CHECK: error: invalid operand for instruction 8 #CHECK: error: invalid operand for instruction 10 #CHECK: error: invalid operand for instruction 12 #CHECK: error: invalid operand for instruction 14 #CHECK: error: invalid operand for instruction 16 #CHECK: error: invalid operand for instruction 28 #CHECK: error: invalid operand for instruction 30 #CHECK: error: invalid operand for instruction 32 #CHECK: error: invalid operand for instruction 34 #CHECK: error: invalid operand for instructio [all...] |
insn-bad.s | 5 #CHECK: error: invalid operand 7 #CHECK: error: invalid operand 13 #CHECK: error: invalid operand 15 #CHECK: error: invalid operand 21 #CHECK: error: invalid operand 23 #CHECK: error: invalid operand 29 #CHECK: error: invalid operand 31 #CHECK: error: invalid operand 37 #CHECK: error: invalid operand 39 #CHECK: error: invalid operan [all...] |
/external/clang/test/SemaCXX/ |
nullptr_in_arithmetic_ops.cpp | 7 a = 0 ? nullptr + a : a + nullptr; // expected-error 2{{invalid operands to binary expression}} 8 a = 0 ? nullptr - a : a - nullptr; // expected-error 2{{invalid operands to binary expression}} 9 a = 0 ? nullptr / a : a / nullptr; // expected-error 2{{invalid operands to binary expression}} 10 a = 0 ? nullptr * a : a * nullptr; // expected-error 2{{invalid operands to binary expression}} 11 a = 0 ? nullptr >> a : a >> nullptr; // expected-error 2{{invalid operands to binary expression}} 12 a = 0 ? nullptr << a : a << nullptr; // expected-error 2{{invalid operands to binary expression}} 13 a = 0 ? nullptr % a : a % nullptr; // expected-error 2{{invalid operands to binary expression}} 14 a = 0 ? nullptr & a : a & nullptr; // expected-error 2{{invalid operands to binary expression}} 15 a = 0 ? nullptr | a : a | nullptr; // expected-error 2{{invalid operands to binary expression}} 16 a = 0 ? nullptr ^ a : a ^ nullptr; // expected-error 2{{invalid operands to binary expression} [all...] |
cxx-member-pointer-op.cpp | 11 c->*pmfc(); // expected-error {{invalid use of pointer to member type after ->*}} 13 c1.*pmfc(); // expected-error {{invalid use of pointer to member type after .*}} 14 c->*(pmfc()); // expected-error {{invalid use of pointer to member type after ->*}} 15 c1.*((pmfc())); // expected-error {{invalid use of pointer to member type after .*}}
|
/external/chromium_org/chrome/common/extensions/ |
extension_manifest_constants.cc | 229 "Invalid value for 'content_scripts[*].all_frames'."; 231 "Invalid value for 'background_page'."; 233 "Invalid value for 'background.allow_js_access'."; 238 "Invalid value for 'background.scripts[*]'."; 240 "Invalid value for 'background.scripts'."; 242 "Invalid value for 'background_page'. Hosted apps must specify an " 245 "Invalid value for 'background.persistent'."; 250 "Invalid value for 'browser_action'."; 252 "Invalid value for 'chrome_url_overrides'."; 254 "Invalid value for 'commands'." [all...] |
/external/chromium/net/data/proxy_resolver_v8_unittest/ |
missing_close_brace.js | 1 // This PAC script is invalid, because there is a missing close brace
|
/external/chromium-libpac/test/js-unittest/ |
missing_close_brace.js | 1 // This PAC script is invalid, because there is a missing close brace
|
/external/chromium_org/net/data/proxy_resolver_v8_unittest/ |
missing_close_brace.js | 1 // This PAC script is invalid, because there is a missing close brace
|
/external/chromium_org/ppapi/native_client/tests/ppapi_browser/bad/ |
ppapi_bad_native_glibc.stderr | 1 /lib/main.nexe: error while loading shared libraries: /lib/main.nexe: failed to load code from shared object: Invalid argumen
|
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct.default/ |
p8.cpp | 3 void f(A* p = this) { } // expected-error{{invalid use of 'this'}}
|
/external/clang/test/Tooling/ |
clang-check-args.cpp | 4 invalid;
|
/external/llvm/test/Bitcode/ |
null-type.ll | 5 ; CHECK: Invalid MODULE_CODE_FUNCTION record
|
/external/llvm/test/YAMLParser/ |
spec-05-02-utf8.data | 3 # Invalid use of BOM
|