Home
last modified time | relevance | path

Searched refs:doIt (Results 1 – 5 of 5) sorted by relevance

/external/clang/test/Misc/
Dbackend-stack-frame-diagnostics.cpp23 extern void doIt(char *);
31 doIt(buffer); in frameSizeWarning()
42 doIt(buffer); in frameSizeWarningIgnored()
57 doIt(buffer); in frameSizeLocalClassWarning()
67 doIt(buffer); in frameSizeLambdaWarning()
76 doIt(buffer); in frameSizeBlocksWarning()
/external/clang/test/SemaCXX/
Dfor-range-unused.cpp7 void doIt() { in doIt() function
20 vector.doIt(); // expected-note {{here}} in main()
/external/clang/test/Frontend/
Dbackend-diagnostic.c16 extern void doIt(char *);
23 doIt(buffer); in stackSizeWarning()
/external/dbus/doc/
Ddcop-howto.txt132 remote function is called "doIt", and it takes an int, it would be
133 described as "doIt(int)". Please note that the return type is not
144 Say you want to call "doIt" as described above, and not block (or wait
153 if (!client->send("someAppId", "fooObject/barObject", "doIt(int)",
167 if (!client->call("someAppId", "fooObject/barObject", "doIt(int)",
177 qDebug("doIt returned an unexpected type of reply!");
209 if (fun == "doIt(int)") {
213 QString result = self->doIt (i);
243 if (fun == "doIt(int)") {
247 QString result = self->doIt(i);
/external/clang/test/SemaTemplate/
Dinstantiate-local-class.cpp82 template <typename T> void doIt() { in doIt() function
92 doIt<int>(); in call()