/external/clang/test/CXX/expr/expr.post/expr.call/ |
D | p7-0x.cpp | 21 void vararg(...); 26 vararg(x1); // OK in f() 27 …vararg(x2); // expected-error{{cannot pass object of non-trivial type 'X2' through variadic functi… in f() 28 vararg(x3); // OK in f() 29 …vararg(x4); // expected-error{{cannot pass object of non-trivial type 'X4' through variadic functi… in f() 31 vararg(g()); // expected-error{{cannot pass expression of type 'void' to variadic function}} in f() 32 vararg({1, 2, 3}); // expected-error{{cannot pass initializer list to variadic function}} in f()
|
/external/llvm/test/MC/AsmParser/ |
D | macros-darwin-vararg.s | 3 .macro abc a b:vararg argument 12 .macro ifcc arg:vararg argument 18 .macro ifcc2 arg0 arg1:vararg argument 24 .macro ifcc3 arg0, arg1:vararg argument 30 .macro ifcc4 arg0, arg1:vararg argument 63 .macro abc arg:vararg=nop argument 67 .macro abcd arg0=%eax, arg1:vararg=%ebx 78 .macro .make_macro start, end, name, body:vararg argument
|
D | vararg.s | 2 .macro ifcc arg:vararg argument 8 .macro ifcc2 arg0 arg1:vararg argument 14 .macro ifcc3 arg0, arg1:vararg argument 20 .macro ifcc4 arg0, arg1:vararg argument
|
D | vararg-default-value.s | 2 .macro abc arg:vararg=nop argument 6 .macro abcd arg0=%eax arg1:vararg=%ebx
|
/external/clang/test/CodeGenCXX/ |
D | vararg-non-pod-ms-compat.cpp | 10 void vararg(...); 26 vararg(x); in test()
|
D | vararg-non-pod.cpp | 9 void vararg(...); 14 vararg(x); in test()
|
/external/clang/test/CodeGen/ |
D | varargs.c | 11 void vararg(int, ...); 15 vararg(0, focus_changed_cb); in function_as_vararg()
|
/external/jpeg/ |
D | ansi2knr.c | 540 char *vararg = 0; local 630 vararg = p-2; 682 if ( vararg != 0 ) 683 { *vararg = 0;
|
/external/mockito/src/org/mockito/internal/matchers/ |
D | VarargCapturingMatcher.java | 42 List<T> vararg = unpackAsList(varArgArray); in captureFrom() local 43 this.arguments.add(vararg); in captureFrom()
|
/external/llvm/test/CodeGen/AArch64/ |
D | arm64-abi-varargs.ll | 13 ; First vararg 16 ; Second vararg 19 ; Third vararg 141 ; When passing 16-byte aligned small structs as vararg, make sure the caller
|
/external/clang/test/CodeGenObjC/ |
D | message-arrays.m | 13 // This should also get an implicit cast (for the vararg)
|
/external/llvm/test/CodeGen/PowerPC/ |
D | ppcf128-endian.ll | 142 define double @vararg(i32 %a, ...) { 151 ; CHECK: @vararg
|
/external/llvm/test/TableGen/ |
D | intrinsic-varargs.td | 27 def llvm_vararg_ty : LLVMType<isVoid>; // this means vararg here
|
/external/clang/test/Sema/ |
D | warn-documentation.m | 222 /// @param[in] ... This is vararg 228 /// @param[in] ... This is vararg
|
/external/llvm/include/llvm/Target/ |
D | TargetCallingConv.td | 70 /// CCIfVarArg - If the current function is vararg - apply the action 73 /// CCIfNotVarArg - If the current function is not vararg - apply the action
|
/external/llvm/lib/Target/X86/ |
D | X86CallingConv.td | 267 // this is a vararg function. 269 // fixed arguments to vararg functions are supposed to be passed in 435 // is not a vararg call and if SSE2 is available, are passed in SSE registers. 441 // call is not a vararg call. 491 // a vararg call, are passed in integer registers. 581 // The first 3 float or double arguments, if the call is not a vararg
|
/external/llvm/test/CodeGen/X86/ |
D | statepoint-call-lowering.ll | 81 ; Check a statepoint wrapping a *void* returning vararg function works
|
/external/libxml2/os400/libxmlrpg/ |
D | xmlstring.rpgle | 100 * xmlStrPrintf() is a vararg function.
|
D | valid.rpgle | 27 * @msg: the string to format *printf like vararg 41 * @msg: the string to format *printf like vararg
|
D | xmlerror.rpgle | 1588 * These are vararg functions.
|
/external/llvm/lib/Target/Mips/ |
D | MipsCallingConv.td | 34 /// Match if this specific argument is a vararg. 36 /// a vararg.
|
/external/llvm/include/llvm/IR/ |
D | Intrinsics.td | 197 def llvm_vararg_ty : LLVMType<isVoid>; // this means vararg here
|
/external/llvm/docs/ |
D | BitCodeFormat.rst | 989 ``[FUNCTION, vararg, ignored, retty, ...paramty... ]`` 994 * *vararg*: Non-zero if the type represents a varargs function
|
/external/llvm/docs/tutorial/ |
D | LangImpl3.rst | 272 double as a result, and that is not vararg (the false parameter
|
D | OCamlLangImpl3.rst | 242 double as a result, and that is not vararg (that uses the function
|