HomeSort by relevance Sort by last modified time
    Searched refs:fun (Results 1 - 25 of 219) sorted by null

1 2 3 4 5 6 7 8 9

  /ndk/tests/build/issue52819-STLPORT_FORCE_REBUILD/jni/
my_jni_module.cpp 1 int fun(int i) function
  /external/clang/test/CodeGenCXX/
2003-12-08-ArrayOfPtrToMemberFunc.cpp 4 void fun ();
8 static memfunptr jumpTable[] = { &Evil::fun };
10 void Evil::fun() { function in class:Evil
PR19955.cpp 5 extern void __declspec(dllimport) fun();
13 void (*funp)() = &fun;
24 // CHECK-DAG: store void ()* @"\01?fun@@YAXXZ", void ()** @"\01?funp@@3P6AXXZA"
27 // X64-DAG: store void ()* @"\01?fun@@YAXXZ", void ()** @"\01?funp@@3P6AXXZEA"
  /external/clang/test/SemaCXX/
PR19955.cpp 7 extern __attribute__((dllimport)) void fun();
8 constexpr void (*funp)(void) = &fun; // expected-error {{must be initialized by a constant expression}}
12 S<&fun> x;
writable-strings-deprecated.cpp 12 char *fun(void) function
goto2.cpp 10 void fun(const char* text) { function
45 fun(ptr);
warn-tautological-compare.cpp 143 void fun();
156 assert(fun == 0);
157 // expected-warning@-1{{comparison of function 'fun' equal to a null pointer is always false}}
159 assert(fun != 0);
160 // expected-warning@-1{{comparison of function 'fun' not equal to a null pointer is always true}}
162 assert(fun == 0 && "expecting null pointer");
163 // expected-warning@-1{{comparison of function 'fun' equal to a null pointer is always false}}
165 assert(fun != 0 && "expecting non-null pointer");
166 // expected-warning@-1{{comparison of function 'fun' not equal to a null pointer is always true}}
  /external/valgrind/
glibc-2.X-drd.supp 30 fun:write
35 fun:random_r
36 fun:random
52 # fun:_ZNSsC1ERKSs
58 fun:pthread_cond_broadcast@*
59 fun:__cxa_guard_release
71 fun:pthread_create*
76 fun:pthread_join
77 fun:pthread_join
83 fun:__deallocate_stac
    [all...]
  /external/ltrace/testsuite/ltrace.main/
parameters3.exp 24 void fun();
28 void fun(void) {}
33 fun();
37 ltraceMatch1 [ltraceRun -F $dir -L -x fun -- $bin] {fun@liba.so\(\)} == 1
38 ltraceMatch1 [ltraceRun -F $dir -e fun -- $bin] {fun\(\)} == 1
parameters2.exp 131 void fun(hexptr);
133 void fun(unsigned *arg);
135 void fun(unsigned *arg) {}
138 fun(&u);
139 }] {fun\(0x123\) *= <void>} == 1
144 void fun(bitvec(uint));
147 void fun(unsigned i);
150 void fun(unsigned i) {}
153 fun(0);
154 fun(0x123)
    [all...]
  /external/clang/test/CXX/temp/temp.decls/temp.mem/
p2.cpp 6 void fun() { function
  /external/clang/test/PCH/
struct.c 15 return fun->is_ptr? fun->ptr : 0;
26 int *int_ptr_fail = &fun->is_ptr; // expected-error{{address of bit-field requested}}
struct.h 11 struct Fun;
13 struct Fun *fun; variable in typeref:struct:Fun
15 struct Fun {
  /hardware/intel/common/libmix/mix_vbp/viddec_fw/fw/parser/
vbp_trace.c 14 void vbp_trace_util(const char* cat, const char* fun, int line, const char* format, ...)
16 if (NULL == cat || NULL == fun || NULL == format)
19 printf("%s %s(#%d): ", cat, fun, line);
  /hardware/intel/common/libmix/videodecoder/
VideoDecoderTrace.cpp 23 void TraceVideoDecoder(const char* cat, const char* fun, int line, const char* format, ...)
25 if (NULL == cat || NULL == fun || NULL == format)
28 printf("%s %s(#%d): ", cat, fun, line);
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
p4.cpp 16 template<typename S> void fun(const int* const S::* member) {} function in namespace:PR12132
19 fun(&A::x);
  /external/clang/test/CodeGen/
2009-01-05-BlockInlining.c 10 static int fun(int x) { function
24 print(fun(x));
  /external/v8/test/mjsunit/regress/
regress-crbug-344186.js 9 function fun(base) { function
14 fun(100);
15 %OptimizeFunctionOnNextCall(fun);
16 fun(0);
regress-crbug-352929.js 12 function fun(base,cond) { function
23 fun(5,true);
24 fun(7,false);
25 %OptimizeFunctionOnNextCall(fun);
26 fun(7,false);
  /external/clang/test/Sema/
invalid-decl.c 27 FunctionType fun; // expected-error {{field 'fun' declared as a function}} member in struct:__anon6709
30 buf->fun = 0;
  /frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/ext/
list_ext.kt 22 public fun List<String>.joinToCamelCase(): String = when(size()) {
28 public fun List<String>.joinToCamelCaseAsVar(): String = when(size()) {
34 public fun Array<String>.joinToCamelCase(): String = when(size()) {
40 public fun Array<String>.joinToCamelCaseAsVar(): String = when(size()) {
node_ext.kt 23 public fun Node.getAndroidId() : String? =
26 public fun Node.getAndroidIdPath(includeRoot : Boolean) : List<String> {
40 public fun NodeList.forEach( f : (Node) -> Unit ) {
47 public fun NodeList.toArrayList() : ArrayList<Node> {
  /frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/
KCode.kt 31 fun indent(n: Int): String {
45 fun isNull(kcode : KCode?) = kcode == null || (kcode.nodes.isEmpty() && (kcode.s == null || kcode.s.trim() == ""))
47 fun tab(vararg codes : KCode?) : KCode {
52 fun tab(codes : Collection<KCode?> ) : KCode {
57 fun tab(s : String?, init : (KCode.() -> Unit)? = null) : KCode {
65 private fun tab(c : KCode?) : KCode {
73 fun nls(vararg codes : KCode?) : KCode {
78 fun nls(codes : Collection<KCode?>) : KCode {
83 fun nl(c : KCode?) : KCode {
92 fun nl(s : String?, init : (KCode.() -> Unit)? = null) : KCode
    [all...]
  /external/libcxx/test/std/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.con/
alloc_F.pass.cpp 88 std::function<void(int)> fun = std::bind(&Foo::bar, &f, std::placeholders::_1); local
89 fun(10);
93 std::function<void(int)> fun(std::allocator_arg,
96 assert(fun);
97 assert(fun.target<int(*)(int)>() != 0);
98 fun(10);
  /external/ltrace/testsuite/ltrace.minor/
demangle.exp 43 if [regexp {extern (double|float|void|char|int|short|long|void \*|void \*\*) ([^ ])\(} $line match type fun] {
44 ltrace_verify_output ${objdir}/${subdir}/${testfile}.ltrace $fun
52 if [ regexp {((myclass|nested)::[^\(]*)\(} $line match fun] {
54 verbose "fun = $fun"
55 # Extract new/delete for remove extra SPACE in $fun, for example,
56 # $fun = "myclass::operator delete" will confuse ltrace_verify_output if it
58 if [regexp {(new|delete)} $fun match sub_fun] {
62 ltrace_verify_output ${objdir}/${subdir}/${testfile}.ltrace $fun

Completed in 876 milliseconds

1 2 3 4 5 6 7 8 9