/art/test/451-regression-add-float/ |
info.txt | 1 Tests a regression in float addition for optimizing. The second argument
|
/external/clang/test/CXX/temp/temp.decls/temp.class.spec/ |
p9-0x.cpp | 3 // -- The argument list of the specialization shall not be identical 4 // to the implicit argument list of the primary template. 10 struct X1<T, Types...> // expected-error{{class template partial specialization does not specialize any template argument; to define the primary template, remove the template argument list}}
|
/external/clang/test/CXX/temp/temp.param/ |
p12.cpp | 2 template<typename> struct Y1; // expected-note{{too few template parameters in template template argument}} 7 class T2 = int> // expected-note{{previous default template argument defined here}} 11 typename T2 = float> // expected-error{{template parameter redefines default argument}} 15 template<class> class = Y1> // expected-note{{previous default template argument defined here}} 21 template<class> class = Y1> // expected-error{{template parameter redefines default argument}} 25 int M = 5> // expected-note{{previous default template argument defined here}} 31 int M = 7> // expected-error{{template parameter redefines default argument}} 36 = Y1> // expected-error{{template template argument has different template parameters than its corresponding template template parameter}} 39 C1<> c1; // expected-note{{while checking a default template argument}}
|
/external/clang/test/Sema/ |
call-with-static-chain.c | 7 __builtin_call_with_static_chain(f, f); // expected-error {{first argument to __builtin_call_with_static_chain must be a non-member call expression}} 8 __builtin_call_with_static_chain(^{}(), f); // expected-error {{first argument to __builtin_call_with_static_chain must not be a block call}} 9 __builtin_call_with_static_chain(__builtin_unreachable(), f); // expected-error {{first argument to __builtin_call_with_static_chain must not be a builtin call}} 10 __builtin_call_with_static_chain(f(), 42); // expected-error {{second argument to __builtin_call_with_static_chain must be of pointer type}}
|
builtin-stackaddress.c | 7 return __builtin_return_address(x); // expected-error{{argument to '__builtin_return_address' must be a constant integer}} 15 return __builtin_frame_address(x); // expected-error{{argument to '__builtin_frame_address' must be a constant integer}}
|
builtins-arm.c | 36 __builtin_arm_dsb(16); // expected-error {{argument should be a value from 0 to 15}} 37 __builtin_arm_dmb(17); // expected-error {{argument should be a value from 0 to 15}} 38 __builtin_arm_isb(18); // expected-error {{argument should be a value from 0 to 15}} 42 __builtin_arm_prefetch(0, 2, 0); // expected-error {{argument should be a value from 0 to 1}} 43 __builtin_arm_prefetch(0, 0, 2); // expected-error {{argument should be a value from 0 to 1}} 47 __builtin_arm_dbg(16); // expected-error {{argument should be a value from 0 to 15}} 51 __builtin_arm_mrc( a, 0, 13, 0, 3); // expected-error {{argument to '__builtin_arm_mrc' must be a constant integer}} 52 __builtin_arm_mrc(15, a, 13, 0, 3); // expected-error {{argument to '__builtin_arm_mrc' must be a constant integer}} 53 __builtin_arm_mrc(15, 0, a, 0, 3); // expected-error {{argument to '__builtin_arm_mrc' must be a constant integer}} 54 __builtin_arm_mrc(15, 0, 13, a, 3); // expected-error {{argument to '__builtin_arm_mrc' must be a constant integer} [all...] |
variadic-incomplete-arg-type.c | 11 junk(1, *error, (void)0); // expected-error {{argument type 'struct __CFError' is incomplete}} \ 12 // expected-error {{argument type 'void' is incomplete}}
|
builtins-x86.c | 14 __builtin_ia32_cmpps(__a, __b, 32); // expected-error {{argument should be a value from 0 to 31}} 18 __builtin_ia32_cmppd(__a, __b, 32); // expected-error {{argument should be a value from 0 to 31}} 22 __builtin_ia32_cmpss(__a, __b, 32); // expected-error {{argument should be a value from 0 to 31}} 26 __builtin_ia32_cmpsd(__a, __b, 32); // expected-error {{argument should be a value from 0 to 31}} 30 __builtin_ia32_cmpps512_mask(__a, __b, 32, -1, 0); // expected-error {{argument should be a value from 0 to 31}} 34 __builtin_ia32_cmppd512_mask(__a, __b, 32, -1, 0); // expected-error {{argument should be a value from 0 to 31}} 38 __builtin_ia32_vpcomub(__a, __b, 8); // expected-error {{argument should be a value from 0 to 7}} 42 __builtin_ia32_vpcomuw(__a, __b, 8); // expected-error {{argument should be a value from 0 to 7}} 46 __builtin_ia32_vpcomud(__a, __b, 8); // expected-error {{argument should be a value from 0 to 7}} 50 __builtin_ia32_vpcomuq(__a, __b, 8); // expected-error {{argument should be a value from 0 to 7} [all...] |
builtin-prefetch.c | 9 __builtin_prefetch(&a, "hello", 2); // expected-error{{argument to '__builtin_prefetch' must be a constant integer}} 10 __builtin_prefetch(&a, a, 2); // expected-error{{argument to '__builtin_prefetch' must be a constant integer}} 11 __builtin_prefetch(&a, 2); // expected-error{{argument should be a value from 0 to 1}} 12 __builtin_prefetch(&a, 0, 4); // expected-error{{argument should be a value from 0 to 3}} 13 __builtin_prefetch(&a, -1, 4); // expected-error{{argument should be a value from 0 to 1}}
|
/external/javasqlite/src/main/java/SQLite/ |
Authorizer.java | 13 * @param arg1 first argument (table, view, index, or trigger name) 14 * @param arg2 second argument (file, table, or column name) 15 * @param arg3 third argument (database name) 16 * @param arg4 third argument (trigger name)
|
/external/llvm/test/Other/ |
invalid-commandline-option.ll | 1 ; RUN: not opt --foo 2>&1 | grep "Unknown command line argument"
|
/external/objenesis/tck-android/ |
pom.xml | 75 <argument>install</argument>
76 <argument>-r</argument>
77 <argument>${project.build.directory}\${project.build.finalName}.apk</argument>
90 <argument>shell</argument>
91 <argument>am</argument>
[all...] |
/external/testng/src/main/java/org/testng/ |
ITestNGListener.java | 5 * as a -listener argument.
|
/frameworks/compile/slang/tests/F_foreach_unexpected_kernel_arg/ |
stderr.txt.expect | 1 foreach_unexpected_kernel_arg.rs:11:13: error: Invalid kernel launch call. Expects a function designator for the first argument. 2 foreach_unexpected_kernel_arg.rs:12:13: error: Invalid kernel launch call. Expects a function designator for the first argument. 3 foreach_unexpected_kernel_arg.rs:13:24: error: Invalid kernel launch call. Expects a function designator for the first argument. 4 foreach_unexpected_kernel_arg.rs:14:24: error: Invalid kernel launch call. Expects a function designator for the first argument.
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/sparc/ |
save-args.s | 1 ! Test several forms of save argument
|
/external/mockito/src/org/mockito/ |
AdditionalMatchers.java | 47 * argument greater than or equal the given value. 60 * byte argument greater than or equal to the given value. 73 * double argument greater than or equal to the given value. 86 * float argument greater than or equal to the given value. 99 * int argument greater than or equal to the given value. 112 * long argument greater than or equal to the given value. 125 * short argument greater than or equal to the given value. 138 * comparable argument less than or equal the given value details. 151 * byte argument less than or equal to the given value. 164 * double argument less than or equal to the given value [all...] |
/external/llvm/include/llvm/IR/ |
Argument.h | 1 //===-- llvm/Argument.h - Definition of the Argument class ------*- C++ -*-===// 10 // This file declares the Argument class. 26 /// \brief LLVM Argument representation 28 /// This class represents an incoming formal argument to a Function. A formal 29 /// argument, since it is ``formal'', does not contain an actual value but 30 /// instead represents the type, argument number, and attributes of an argument 32 /// argument of course represents the value of the actual argument that th [all...] |
/external/guice/lib/build/jdiff/ |
Null.java | 2 * This class is used only as a "null" argument for Javadoc when comparing 4 * argument, even though JDiff doesn't use it.
|
/external/lzma/CPP/7zip/UI/FileManager/ |
FormatUtils.h | 11 UString MyFormatNew(const UString &format, const UString &argument);
12 UString MyFormatNew(UINT resourceID, const UString &argument);
|
/external/v8/test/message/ |
rest-param-class-setter-strict.out | 1 *%(basename)s:11: SyntaxError: Setter function argument must not be a rest parameter 4 SyntaxError: Setter function argument must not be a rest parameter
|
rest-param-object-setter-sloppy.out | 1 *%(basename)s:10: SyntaxError: Setter function argument must not be a rest parameter 4 SyntaxError: Setter function argument must not be a rest parameter
|
rest-param-object-setter-strict.out | 1 *%(basename)s:11: SyntaxError: Setter function argument must not be a rest parameter 4 SyntaxError: Setter function argument must not be a rest parameter
|
unterminated-arg-list.out | 5 *%(basename)s:7: SyntaxError: missing ) after argument list 8 SyntaxError: missing ) after argument list
|
/toolchain/binutils/binutils-2.25/gas/testsuite/gas/ia64/ |
proc.l | 5 .*:12: Error: Empty argument of .proc 6 .*:13: Error: Empty argument of .endp
|
/external/clang/test/Parser/ |
pragma-optimize-diagnostics.cpp | 8 #pragma clang optimize on top of spaghetti // expected-error {{unexpected extra argument 'top' to '#pragma clang optimize'}} 10 // Wrong argument 11 #pragma clang optimize something_wrong // expected-error {{unexpected argument 'something_wrong' to '#pragma clang optimize'; expected 'on' or 'off'}} 13 // No argument 14 #pragma clang optimize // expected-error {{missing argument to '#pragma clang optimize'; expected 'on' or 'off'}}
|