/external/clang/test/SemaCXX/ |
function-overload-typo-crash.cpp | 14 template <typename T> void somefunc(T*, T*); //expected-note {{'somefunc' declared here}} 15 template <typename T> void somefunc(const T[]); //expected-note {{'somefunc' declared here}} 16 template <typename T1, typename T2> void somefunc(T1*, T2*); //expected-note {{'somefunc' declared here}} 17 template <typename T1, typename T2> void somefunc(T1*, const T2[]); //expected-note 2 {{'somefunc' declared here}} 23 somefun(i, j); //expected-error {{use of undeclared identifier 'somefun'; did you mean 'somefunc'?}} 24 somefun(x); //expected-error {{use of undeclared identifier 'somefun'; did you mean 'somefunc'?} [all...] |
typo-correction.cpp | 235 void somefunc(); // expected-note{{'::outer::somefunc' declared here}} 236 void somefunc(int, int); // expected-note{{'::outer::somefunc' declared here}} 239 void somefunc(int) { function in namespace:outer::inner 240 someFunc(); // expected-error{{use of undeclared identifier 'someFunc'; did you mean '::outer::somefunc'?}} 241 someFunc(1, 2); // expected-error{{use of undeclared identifier 'someFunc'; did you mean '::outer::somefunc'?} [all...] |
/external/llvm/test/CodeGen/AArch64/ |
tailcall-ccmismatch.ll | 4 declare void @somefunc() 6 ; Ensure that no tail call is used here, as the called function somefunc does 9 ; CHECK-NOT: b somefunc 10 ; CHECK: bl somefunc 11 tail call void @somefunc()
|
/external/clang/test/CodeGen/ |
debug-info-args.c | 3 int somefunc(char *x, int y, double z) { function
|
2002-07-14-MiscTests3.c | 37 extern int SomeFunc(void); 39 SomeFunc();
|
/external/llvm/test/Assembler/ |
2007-01-02-Undefined-Arg-Type.ll | 9 define i1 @someFunc(i32* %tmp.71.reload, %typedef.bc_struct* %n1) {
|
/external/swiftshader/third_party/LLVM/test/Assembler/ |
2007-01-02-Undefined-Arg-Type.ll | 7 define i1 @someFunc(i32* %tmp.71.reload, %typedef.bc_struct* %n1) {
|
/external/clang/test/Sema/ |
constant-builtins.c | 24 short somefunc(); 26 short t = __builtin_constant_p(5353) ? 42 : somefunc();
|
/frameworks/ml/nn/common/operations/internal/optimized/ |
cpu_check.h | 20 // NEON_OR_PORTABLE(SomeFunc, arcs) calls NeonSomeFunc(args) if NEON is
|
/external/clang/test/CodeGenObjC/ |
objc2-write-barrier-2.m | 10 extern id **somefunc(void); 50 id **ppptr = somefunc();
|
/external/libchrome/base/ |
tuple.h | 16 // void SomeFunc(int a, const char* b) { } 17 // DispatchToFunction(&SomeFunc, tuple_a); // SomeFunc(1, "wee") 19 // &SomeFunc, std::make_tuple(10, "foo")); // SomeFunc(10, "foo")
|
/external/llvm/test/Transforms/IndVarSimplify/ |
pr25051.ll | 6 define i32 @somefunc(double* %arr) { 7 ; CHECK-LABEL: @somefunc(
|
/external/clang/test/SemaObjC/ |
method-bad-param.m | 23 void somefunc(foo x) {} // expected-error {{interface type 'foo' cannot be passed by value; did you forget * in 'foo'}}
|
/external/llvm/test/CodeGen/ARM/ |
cxx-tlscc.ll | 129 declare void @somefunc() 131 ; A tail call is not possible here because somefunc does not preserve enough 136 tail call void @somefunc()
|
/external/harfbuzz_ng/docs/ |
usermanual-buffers-language-script-and-direction.xml | 35 void somefunc(hb_buffer_t *buffer) {
|
/external/google-breakpad/src/common/ |
scoped_ptr.h | 46 // SomeFunc(foo.release()); // SomeFunc takes ownership, foo no longer
|
/external/webrtc/webrtc/base/ |
scoped_ptr.h | 30 // SomeFunc(foo.release()); // SomeFunc takes ownership, foo no longer
|
/frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/ |
TestService.java | 554 someFunc(i); 559 int someFunc(int foo) { [all...] |
/external/v8/src/parsing/ |
preparser.h | 331 // Dummy implementation for making expression->somefunc() work in both Parser 514 // Dummy implementation for making statement->somefunc() work in both Parser [all...] |
/external/swiftshader/third_party/LLVM/docs/ |
CodingStandards.html | [all...] |
/external/clang/unittests/Format/ |
FormatTestJS.cpp | 904 verifyFormat("function someFunc(args: string[]):\n" [all...] |
/external/llvm/docs/ |
CodingStandards.rst | [all...] |
ProgrammersManual.rst | [all...] |
/external/valgrind/drd/tests/ |
tsan_unittest.cpp | [all...] |