/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/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/clang/test/Sema/ |
constant-builtins.c | 24 short somefunc(); 26 short t = __builtin_constant_p(5353) ? 42 : somefunc();
|
/external/ltrace/testsuite/ltrace.main/ |
parameters2.exp | 251 addr somefunc(); 253 void *somefunc(void); 255 void *somefunc(void) { 259 somefunc(); 260 }] {somefunc\(\) *= nil} == 1
|
/external/clang/test/CodeGenObjC/ |
objc2-write-barrier-2.m | 10 extern id **somefunc(void); 50 id **ppptr = somefunc();
|
/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/harfbuzz_ng/docs/ |
usermanual-buffers-language-script-and-direction.xml | 35 void somefunc(hb_buffer_t *buffer) {
|
/external/libchrome/base/ |
tuple.h | 19 // void SomeFunc(int a, const char* b) { } 20 // DispatchToFunction(&SomeFunc, tuple_a); // SomeFunc(1, "wee") 22 // &SomeFunc, MakeTuple(10, "foo")); // SomeFunc(10, "foo")
|
/external/libweave/third_party/chromium/base/ |
tuple.h | 19 // void SomeFunc(int a, const char* b) { } 20 // DispatchToFunction(&SomeFunc, tuple_a); // SomeFunc(1, "wee") 22 // &SomeFunc, MakeTuple(10, "foo")); // SomeFunc(10, "foo")
|
/external/google-breakpad/src/common/ |
scoped_ptr.h | 46 // SomeFunc(foo.release()); // SomeFunc takes ownership, foo no longer
|
/external/libchrome/base/memory/ |
scoped_ptr.h | 22 // SomeFunc(foo.release()); // SomeFunc takes ownership, foo no longer
|
/external/libweave/third_party/chromium/base/memory/ |
scoped_ptr.h | 22 // 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/chromium-trace/catapult/third_party/Paste/paste/ |
registry.py | 75 def somefunc():
|
/external/llvm/lib/Analysis/ |
StratifiedSets.h | 180 // %c = call i1 @SomeFunc()
|
/external/v8/src/parsing/ |
preparser.h | 271 // Dummy implementation for making expression->somefunc() work in both Parser [all...] |
/external/llvm/docs/ |
CodingStandards.rst | [all...] |
ProgrammersManual.rst | 714 void someFunc() { [all...] |
/external/valgrind/drd/tests/ |
tsan_unittest.cpp | [all...] |