Searched defs:func (Results 226 - 250 of 413) sorted by relevance

1234567891011>>

/external/svox/pico/lib/
H A Dpicodbg.c339 const char *func, const char *msg)
386 if (strlen(func) > 0) {
387 sprintf(cb, "%-18s", func);
409 void picodbg_assert(const char *file, int line, const char *func, const char *expr) argument
411 if (strlen(func) > 0) {
413 expr, picodbg_fileTitle(file), func, line);
338 picodbg_log(int level, int donewline, const char *file, int line, const char *func, const char *msg) argument
/external/v8/test/mjsunit/
H A Djson.js372 var func = function() { /* Is callable */ }; function
386 func, funcJSON, re, reJSON]));
H A Dstrict-mode.js1023 function CheckPillDescriptor(func, name) {
1040 var descriptor = Object.getOwnPropertyDescriptor(func, name);
1087 func: function() { return "func_value"; },
1093 assertEquals(o.func(), "func_value");
/external/valgrind/main/callgrind/
H A Dbbcc.c112 void CLG_(forall_bbccs)(void (*func)(BBCC*)) argument
126 (*func)(bbcc2);
/external/webkit/Source/WebCore/bridge/
H A DNP_jsobject.cpp440 JSValue func = obj->imp->get(exec, identifierFromNPIdentifier(exec, i->string())); local
442 return !func.isUndefined();
/external/webkit/Source/WebCore/plugins/
H A Dnpapi.cpp175 void NPN_PluginThreadAsyncCall(NPP instance, PluginThreadAsyncCallFunction func, void* userData) argument
178 PluginMainThreadScheduler::scheduler().scheduleCall(instance, reinterpret_cast<PluginMainThreadScheduler::MainThreadFunction*>(func), userData);
/external/webkit/Source/WebCore/xml/
H A DXSLTProcessorLibxslt.cpp68 SOFT_LINK(libxslt, xsltSetSecurityPrefs, int, (xsltSecurityPrefsPtr sec, xsltSecurityOption option, xsltSecurityCheck func), (sec, option, func))
162 static inline void setXSLTLoadCallBack(xsltDocLoaderFunc func, XSLTProcessor* processor, CachedResourceLoader* cachedResourceLoader) argument
164 xsltSetLoaderFunc(func);
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
H A DDebugGrammarParser.cs50 "invalidRule", "atom", "expr", "formalPar", "func", "multExpr", "prog",
262 // BuildOptions\\DebugGrammar.g3:53:0: stat : ( expr NEWLINE -> expr | ID '=' expr NEWLINE -> ^( '=' ID expr ) | func NEWLINE -> func | NEWLINE ->);
290 RewriteRuleSubtreeStream stream_func=new RewriteRuleSubtreeStream(adaptor,"rule func");
303 // BuildOptions\\DebugGrammar.g3:53:9: ( expr NEWLINE -> expr | ID '=' expr NEWLINE -> ^( '=' ID expr ) | func NEWLINE -> func | NEWLINE ->)
434 // BuildOptions\\DebugGrammar.g3:55:9: func NEWLINE
438 func8=func();
451 // elements: func
461 // 55:41: -> func
550 private DebugGrammarParser.func_return func( ) method in class:DebugGrammarParser
[all...]
H A DProfileGrammarParser.cs50 "invalidRule", "atom", "expr", "formalPar", "func", "multExpr", "prog",
266 // BuildOptions\\ProfileGrammar.g3:53:0: stat : ( expr NEWLINE -> expr | ID '=' expr NEWLINE -> ^( '=' ID expr ) | func NEWLINE -> func | NEWLINE ->);
294 RewriteRuleSubtreeStream stream_func=new RewriteRuleSubtreeStream(adaptor,"rule func");
307 // BuildOptions\\ProfileGrammar.g3:53:9: ( expr NEWLINE -> expr | ID '=' expr NEWLINE -> ^( '=' ID expr ) | func NEWLINE -> func | NEWLINE ->)
438 // BuildOptions\\ProfileGrammar.g3:55:9: func NEWLINE
442 func8=func();
455 // elements: func
465 // 55:41: -> func
554 private ProfileGrammarParser.func_return func( ) method in class:ProfileGrammarParser
[all...]
/external/bluetooth/bluez/attrib/
H A Dinteractive.c713 void (*func)(int argcp, char **argvp); member in struct:__anon345
781 commands[i].func(argcp, argvp);
/external/bluetooth/bluez/tools/
H A Dbccmd.c1070 int (*func)(int transport, int argc, char *argv[]); member in struct:__anon735
1235 err = commands[i].func(transport, argc, argv);
/external/bluetooth/glib/gio/xdgmime/
H A Dxdgmime.c224 xdg_run_command_on_dirs (XdgDirectoryFunc func, argument
234 if ((func) (xdg_data_home, user_data))
250 stop_processing = (func) (guessed_xdg_home, user_data);
288 stop_processing = (func) (dir, user_data);
/external/bluetooth/glib/glib/
H A Dghash.c1081 * @func: the user's callback function
1082 * @user_data: data for @func
1088 * Iterates over every node in the table, calling @func with the key
1089 * and value of the node (and @user_data). If @func returns %TRUE the
1097 GHRFunc func,
1108 if (node->key_hash > 1 && (* func) (node->key, node->value, user_data))
1128 * @func: the function to call for each key/value pair.
1144 GHRFunc func,
1148 g_return_val_if_fail (func != NULL, 0);
1150 return g_hash_table_foreach_remove_or_steal (hash_table, func, user_dat
1096 g_hash_table_foreach_remove_or_steal(GHashTable *hash_table, GHRFunc func, gpointer user_data, gboolean notify) argument
1143 g_hash_table_foreach_remove(GHashTable *hash_table, GHRFunc func, gpointer user_data) argument
1169 g_hash_table_foreach_steal(GHashTable *hash_table, GHRFunc func, gpointer user_data) argument
1196 g_hash_table_foreach(GHashTable *hash_table, GHFunc func, gpointer user_data) argument
[all...]
H A Dgthread.c177 GThreadFunc func,
190 once->retval = func (arg);
631 before thread->thread.func is called. See g_thread_create. */
635 thread->retval = thread->thread.func (thread->thread.data);
641 g_thread_create_full (GThreadFunc func, argument
651 g_return_val_if_fail (func, NULL);
659 result->thread.func = func;
765 thread->thread.func = NULL;
176 g_once_impl(GOnce *once, GThreadFunc func, gpointer arg) argument
H A Dgthread.h66 GThreadFunc func; member in struct:_GThread
98 void (*thread_create) (GThreadFunc func,
217 #define g_thread_create(func, data, joinable, error) \
218 (g_thread_create_full (func, data, 0, joinable, FALSE, \
221 GThread* g_thread_create_full (GThreadFunc func,
324 gpointer g_once_impl (GOnce *once, GThreadFunc func, gpointer arg);
327 # define g_once(once, func, arg) g_once_impl ((once), (func), (arg))
329 # define g_once(once, func, arg) \
332 g_once_impl ((once), (func), (ar
[all...]
/external/bluetooth/glib/gthread/
H A Dgthread-win32.c85 GThreadFunc func; member in struct:_GThreadData
406 self->func = NULL;
478 self->func (self->data);
488 g_thread_create_win32_impl (GThreadFunc func, argument
500 g_return_if_fail (func);
505 retval->func = func;
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-param-util.h476 GeneratorCreationFunc* func,
479 instantiations_.push_back(::std::make_pair(instantiation_name, func));
475 AddTestCaseInstantiation(const char* instantiation_name, GeneratorCreationFunc* func, const char* , int ) argument
/external/clang/test/Parser/
H A Dcxx-altivec.cpp131 void func() { function
/external/dbus/dbus/
H A Ddbus-message-util.c610 * @param func the function to run
616 DBusForeachMessageFileFunc func,
627 DBUS_VALID, func, user_data))
633 DBUS_INVALID_FOR_UNKNOWN_REASON, func, user_data))
639 DBUS_VALID_BUT_INCOMPLETE, func, user_data))
615 dbus_internal_do_not_use_foreach_message_file(const char *test_data_dir, DBusForeachMessageFileFunc func, void *user_data) argument
H A Ddbus-transport.c339 DBusTransportOpenResult (* func) (DBusAddressEntry *entry, member in struct:__anon4512
386 result = (* open_funcs[i].func) (entry, &transport, &tmp_error);
/external/gtest/include/gtest/internal/
H A Dgtest-param-util.h476 GeneratorCreationFunc* func,
479 instantiations_.push_back(::std::make_pair(instantiation_name, func));
475 AddTestCaseInstantiation(const string& instantiation_name, GeneratorCreationFunc* func, const char* , int ) argument
/external/icu4c/test/cintltst/
H A Didnatest.c75 UBool doCompare, UBool testUnassigned, TestFunc func){
95 destLen = func(src,-1,NULL,0,options, &parseError , &status);
100 destLen = func(src,-1,dest,destLen+1,options, &parseError, &status);
117 destLen = func(src,-1,NULL,0,options | UIDNA_ALLOW_UNASSIGNED, &parseError, &status);
122 destLen = func(src,-1,dest,destLen+1,options | UIDNA_ALLOW_UNASSIGNED, &parseError, &status);
141 destLen = func(tSrc, tSrcLen, NULL,0,options, &parseError, &status);
146 destLen = func(src,u_strlen(src),dest,destLen+1,options, &parseError, &status);
162 destLen = func(tSrc,tSrcLen,NULL,0,options | UIDNA_ALLOW_UNASSIGNED, &parseError, &status);
168 destLen = func(src,u_strlen(src),dest,destLen+1,options | UIDNA_ALLOW_UNASSIGNED, &parseError, &status);
184 destLen = func(sr
73 testAPI(const UChar* src, const UChar* expected, const char* testName, UBool useSTD3ASCIIRules,UErrorCode expectedStatus, UBool doCompare, UBool testUnassigned, TestFunc func) argument
434 TestFunc func = uidna_toASCII; local
448 TestFunc func = uidna_toUnicode; local
465 TestFunc func = uidna_IDNToUnicode; local
494 TestFunc func=uidna_IDNToASCII; local
518 testCompareWithSrc(const UChar* s1, int32_t s1Len, const UChar* s2, int32_t s2Len, const char* testName, CompareFunc func, UBool isEqual) argument
570 CompareFunc func = uidna_compare; local
[all...]
/external/icu4c/test/perf/ustrperf/
H A Dstringperf.h134 StringPerfFunction(ICUStringPerfFn func, ULine* srcLines, int32_t srcNumLines, UBool uselen) argument
137 fn1_ = func;
158 StringPerfFunction(StdStringPerfFn func, ULine* srcLines, int32_t srcNumLines, UBool uselen) argument
161 fn2_ = func;
181 StringPerfFunction(ICUStringPerfFn func, UChar* source, int32_t sourceLen, UBool uselen) argument
184 fn1_ = func;
203 StringPerfFunction(StdStringPerfFn func, UChar* source, int32_t sourceLen, UBool uselen) argument
206 fn2_ = func;
/external/ipsec-tools/src/racoon/
H A Deaytest.c1003 int (*func) __P((int, char **)); member in struct:__anon5808
1004 } func[] = { variable in typeref:struct:__anon5808
1023 int len = sizeof(func)/sizeof(func[0]);
1037 if ((ac == 0) || (strcmp(*av, func[i].name) == 0)) {
1038 if ((func[i].func)(ac, av) != 0) {
1039 printf ("\n!!!!! Test '%s' failed. !!!!!\n\n", func[i].name);
1057 int len = sizeof(func)/sizeof(func[
[all...]
/external/kernel-headers/original/linux/
H A Drtc.h203 void (*func)(void *private_data); member in struct:rtc_task

Completed in 1835 milliseconds

1234567891011>>