/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 | 14 char *fun(void) function
|
goto2.cpp | 10 void fun(const char* text) { function 45 fun(ptr);
|
/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-500824.js | 14 function fun() { 18 fun: fun 20 })(get_thrower()).fun;
|
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);
|
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/ext/ |
list_ext.kt | 19 public fun List<String>.joinToCamelCase(): String = when(size) { 25 public fun List<String>.joinToCamelCaseAsVar(): String = when(size) {
|
ext.kt | 22 override fun getValue(thisRef: K, property: kotlin.reflect.KProperty<*>): T { 36 override fun getValue(thisRef: K, property: KProperty<*>): T { 50 fun <K, T> lazyProp(initializer: (k : K) -> T): ReadOnlyProperty<K, T> = LazyExt(initializer) 51 fun <K, T> versionedLazy(initializer: (k : K) -> T): ReadOnlyProperty<K, T> = VersionedLazyExt(initializer) 53 public fun Class<*>.toJavaCode() : String { 76 public fun String.androidId() : String = this.split("/")[1] 78 public fun String.toCamelCase() : String { 85 public fun String.toCamelCaseAsVar() : String { 92 public fun String.br() : String =
|
/external/clang/test/Sema/ |
invalid-decl.c | 27 FunctionType fun; // expected-error {{field 'fun' declared as a function}} member in struct:__anon8751 30 buf->fun = 0;
|
/frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/writer/ |
KCode.kt | 32 fun indent(n: Int): String { 46 fun isNull(kcode : KCode?) = kcode == null || (kcode.nodes.isEmpty() && (kcode.s == null || kcode.s.trim() == "")) 48 fun tab(vararg codes : KCode?) : KCode { 53 fun tab(codes : Collection<KCode?> ) : KCode { 58 infix fun tab(s : String?, init : (KCode.() -> Unit)? = null) : KCode { 66 fun tab(c : KCode?) : KCode { 74 infix fun nl(c : KCode?) : KCode { 83 infix fun nl(s : String?, init : (KCode.() -> Unit)? = null) : KCode { 91 fun app(glue : String = "", c : KCode?) : KCode { 99 infix fun app(s : String) : KCode [all...] |
/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
|
/external/v8/test/mjsunit/es6/ |
prototype-ordinary-objects.js | 51 for (var fun of funcs) { 52 var p = fun.prototype; 66 for (var fun of funcs) { 67 var p = fun.prototype; 68 assertEquals(`[object ${fun.name}]`, Object.prototype.toString.call(p));
|