HomeSort by relevance Sort by last modified time
    Searched refs:func (Results 76 - 100 of 860) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/webkit/WebKit/wx/
WebView.h 514 #define wxWebViewLoadEventHandler(func) \
515 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxWebViewLoadEventFunction, &func)
516 #define wxWebViewBeforeLoadEventHandler(func) \
517 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxWebViewBeforeLoadEventFunction, &func)
518 #define wxWebViewNewWindowEventHandler(func) \
519 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxWebViewNewWindowEventFunction, &func)
520 #define wxWebViewRightClickEventHandler(func) \
521 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxWebViewRightClickEventFunction, &func)
522 #define wxWebViewConsoleMessageEventHandler(func) \
523 (wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxWebViewConsoleMessageEventFunction, &func)
    [all...]
  /external/v8/test/mjsunit/
string-replace.js 125 assertEquals(3, arguments.length, "replace('x',func) func-args");
126 assertEquals("x", m, "replace('x',func(m,..))");
127 assertEquals(0, i, "replace('x',func(..,i,..))");
128 assertEquals(short, s, "replace('x',func(..,s))");
131 assertEquals(1, ctr, "replace('x',func) num-match");
135 assertEquals(3, arguments.length, "replace(/x/,func) func-args");
136 assertEquals("x", m, "replace(/x/,func(m,..))");
137 assertEquals(0, i, "replace(/x/,func(..,i,..))")
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
testidna.h 72 void testToASCII(const char* testName, TestFunc func);
73 void testToUnicode(const char* testName, TestFunc func);
74 void testIDNToUnicode(const char* testName, TestFunc func);
75 void testIDNToASCII(const char* testName, TestFunc func);
76 void testCompare(const char* testName, CompareFunc func);
83 UBool doCompare, UBool testUnassigned, TestFunc func, UBool testSTD3ASCIIRules=TRUE);
87 const char* testName, CompareFunc func,
94 UBool useSTD3ASCIIRules, UBool caseInsensitive, TestFunc func);
96 void testRootLabelSeparator(const char* testName, CompareFunc func,
  /external/icu4c/test/intltest/
testidna.h 72 void testToASCII(const char* testName, TestFunc func);
73 void testToUnicode(const char* testName, TestFunc func);
74 void testIDNToUnicode(const char* testName, TestFunc func);
75 void testIDNToASCII(const char* testName, TestFunc func);
76 void testCompare(const char* testName, CompareFunc func);
83 UBool doCompare, UBool testUnassigned, TestFunc func, UBool testSTD3ASCIIRules=TRUE);
87 const char* testName, CompareFunc func,
94 UBool useSTD3ASCIIRules, UBool caseInsensitive, TestFunc func);
96 void testRootLabelSeparator(const char* testName, CompareFunc func,
  /external/stlport/src/
cxa.c 55 } func; member in struct:exit_function
70 int __cxa_atexit(void (*func)(void *), void *arg, void *d)
78 new->func.cxa.fn = (void (*) (void *, int)) func;
79 new->func.cxa.arg = arg;
80 new->func.cxa.dso_handle = d;
175 if ( (d == NULL || d == f->func.cxa.dso_handle) && (f->flavor == ef_cxa) ) {
177 (*f->func.cxa.fn) (f->func.cxa.arg, 0);
  /external/webkit/WebCore/svg/
SVGComponentTransferFunctionElement.cpp 111 ComponentTransferFunction func; local
112 func.type = (ComponentTransferType) type();
113 func.slope = slope();
114 func.intercept = intercept();
115 func.amplitude = amplitude();
116 func.exponent = exponent();
117 func.offset = offset();
123 func.tableValues.append(numbers->getItem(i, ec));
124 return func;
  /ndk/sources/android/stlport/src/
cxa.c 55 } func; member in struct:exit_function
70 int __cxa_atexit(void (*func)(void *), void *arg, void *d)
78 new->func.cxa.fn = (void (*) (void *, int)) func;
79 new->func.cxa.arg = arg;
80 new->func.cxa.dso_handle = d;
175 if ( (d == NULL || d == f->func.cxa.dso_handle) && (f->flavor == ef_cxa) ) {
177 (*f->func.cxa.fn) (f->func.cxa.arg, 0);
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/pkcs/
PBES2Algorithms.java 19 private KeyDerivationFunc func; field in class:PBES2Algorithms
39 func = new KeyDerivationFunc(id_PBKDF2, PBKDF2Params.getInstance(funcSeq.getObjectAt(1)));
43 func = new KeyDerivationFunc(funcSeq);
56 return func;
71 subV.add(func);
PBES2Parameters.java 15 private KeyDerivationFunc func; field in class:PBES2Parameters
26 func = new KeyDerivationFunc(id_PBKDF2, PBKDF2Params.getInstance(funcSeq.getObjectAt(1)));
30 func = new KeyDerivationFunc(funcSeq);
38 return func;
50 v.add(func);
  /external/kernel-headers/original/linux/
smp.h 54 int smp_call_function(void(*func)(void *info), void *info, int retry, int wait);
59 int on_each_cpu(void (*func) (void *info), void *info, int retry, int wait);
88 #define smp_call_function(func,info,retry,wait) (up_smp_call_function())
89 #define on_each_cpu(func,info,retry,wait) \
92 func(info); \
  /hardware/ti/wlan/lib/
shlist.h 19 SHLIST *shListFindItem( SHLIST *head, void *val, shListEqual func );
25 void shListDelItem( SHLIST *head, SHLIST *item, shListFree func );
28 shListCmp func );
30 void shListDelAllItems( SHLIST *head, shListFree func );
31 void shListPrintAllItems( SHLIST *head, shListPrint func );
  /libcore/luni/src/main/java/org/apache/xalan/extensions/
ExpressionVisitor.java 58 * @param func The function currently being visited.
62 public boolean visitFunction(ExpressionOwner owner, Function func)
64 if (func instanceof FuncExtFunction)
66 String namespace = ((FuncExtFunction)func).getNamespace();
69 else if (func instanceof FuncExtFunctionAvailable)
71 String arg = ((FuncExtFunctionAvailable)func).getArg0().toString();
  /system/wlan/ti/lib/
shlist.h 19 SHLIST *shListFindItem( SHLIST *head, void *val, shListEqual func );
25 void shListDelItem( SHLIST *head, SHLIST *item, shListFree func );
28 shListCmp func );
30 void shListDelAllItems( SHLIST *head, shListFree func );
31 void shListPrintAllItems( SHLIST *head, shListPrint func );
  /external/chromium/base/
at_exit.cc 38 void AtExitManager::RegisterCallback(AtExitCallbackType func, void* param) {
44 DCHECK(func);
47 g_top_manager->stack_.push(CallbackAndParam(func, param));
  /libcore/luni/src/main/java/org/apache/xalan/templates/
AbsPathChecker.java 57 * @param func The function reference object.
60 public boolean visitFunction(ExpressionOwner owner, Function func)
62 if((func instanceof FuncCurrent) ||
63 (func instanceof FuncExtFunction))
  /system/core/adb/
fdevent.h 39 fdevent *fdevent_create(int fd, fd_func func, void *arg);
48 void fdevent_install(fdevent *fde, int fd, fd_func func, void *arg);
76 fd_func func; member in struct:fdevent
  /external/strace/strace/linux/x86_64/
gentab.pl 66 $func = $known{$name};
68 $func = "printargs";
70 print "\t{ $na,\t0,\t$func,\t\"$name\" }, /* $num */\n";
  /device/samsung/crespo/alsa-lib/src/conf/cards/
ENS1370.conf 27 @func concat
34 @func concat
84 @func concat
93 @func concat
  /external/freetype/src/base/
ftadvanc.c 75 FT_Face_GetAdvancesFunc func; local
84 func = face->driver->clazz->get_advances;
85 if ( func && LOAD_ADVANCE_FAST_CHECK( flags ) )
90 error = func( face, gindex, 1, flags, padvance );
111 FT_Face_GetAdvancesFunc func; local
127 func = face->driver->clazz->get_advances;
128 if ( func && LOAD_ADVANCE_FAST_CHECK( flags ) )
130 error = func( face, start, count, flags, padvances );
  /external/icu4c/i18n/
ucln_in.c 48 cleanupFunc *func)
54 gCleanupFunctions[type] = func;
  /external/icu4c/io/
ucln_io.c 49 cleanupFunc *func)
55 gCleanupFunctions[type] = func;
  /external/ipsec-tools/src/racoon/
genlist.h 62 /* Traverse the list and call 'func' for each entry. As long as func() returns
65 * further from genlist_foreach(). Optional 'arg' may be passed to func(), e.g.
67 void *genlist_foreach (struct genlist *head, genlist_func_t func, void *arg);
78 /* Free all storage associated with list at head using func to free any
80 void genlist_free (struct genlist *head, genlist_freedata_t func);
  /external/libvpx/vpx_ports/
x86.h 19 #define cpuid(func,ax,bx,cx,dx)\
23 : "a" (func));
25 #define cpuid(func,ax,bx,cx,dx)\
32 : "a" (func));
38 #define cpuid(func,a,b,c,d) do{\
40 __cpuid(regs,func); a=regs[0]; b=regs[1]; c=regs[2]; d=regs[3];\
43 #define cpuid(func,a,b,c,d)\
44 __asm mov eax, func\
  /external/openssl/crypto/buffer/
buf_err.c 68 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_BUF,func,0)
  /external/openssl/crypto/comp/
comp_err.c 68 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_COMP,func,0)

Completed in 490 milliseconds

1 2 34 5 6 7 8 91011>>