Searched defs:func (Results 1 - 25 of 779) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DCheck.cs53 public static void SourceAndFuncAndSelector ( object source, object func, object selector) argument
57 if (func == null)
58 throw new ArgumentNullException ("func");
64 public static void SourceAndFunc (object source, object func) argument
68 if (func == null)
69 throw new ArgumentNullException ("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/apache-commons-math/src/main/java/org/apache/commons/math/optimization/univariate/
H A DBracketFinder.java111 * @param func Function whose optimum should be bracketted.
119 public void search(UnivariateRealFunction func, argument
127 double fA = eval(func, xA);
128 double fB = eval(func, xB);
142 double fC = eval(func, xC);
160 fW = eval(func, w);
177 fW = eval(func, w);
180 fW = eval(func, w);
182 fW = eval(func, w);
191 fW = eval(func,
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/extensions/
H A DExpressionVisitor.java58 * @param func The function currently being visited.
62 public boolean visitFunction(ExpressionOwner owner, Function func) argument
64 if (func instanceof FuncExtFunction)
66 String namespace = ((FuncExtFunction)func).getNamespace();
69 else if (func instanceof FuncExtFunctionAvailable)
71 String arg = ((FuncExtFunctionAvailable)func).getArg0().toString();
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DAbsPathChecker.java57 * @param func The function reference object.
60 public boolean visitFunction(ExpressionOwner owner, Function func) argument
62 if((func instanceof FuncCurrent) ||
63 (func instanceof FuncExtFunction))
/external/apache-xml/src/main/java/org/apache/xpath/
H A DXPathVisitor.java144 * @param func The function reference object.
147 public boolean visitFunction(ExpressionOwner owner, Function func) argument
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DHasPositionalPredChecker.java61 * @param func The function reference object.
64 public boolean visitFunction(ExpressionOwner owner, Function func) argument
66 if((func instanceof FuncPosition) ||
67 (func instanceof FuncLast))
/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DFunctionTable.java360 * @param func A Implementation of an XPath Function object.
363 public int installFunction(String name, Class func) argument
377 m_functions_customer[funcIndex - NUM_BUILT_IN_FUNCS] = func;
383 m_functions_customer[funcIndex-NUM_BUILT_IN_FUNCS] = func;
/external/autotest/client/profilers/powertop/src/
H A Dpowertop.c939 char *count, *pid, *process, *func; local
972 func = c;
980 if (strncmp(func, "tick_nohz_", 10) == 0)
982 if (strncmp(func, "tick_setup_sched_timer", 20) == 0)
995 sprintf(line2, "%15s : %s", process, func);
H A Dsuggestions.c51 suggestion_func *func; member in struct:suggestion
80 void add_suggestion(char *text, int weight, char key, char *keystring, suggestion_func *func) argument
97 new->func = func;
131 suggestion_activate = ptr->func;
/external/autotest/client/tests/monotonic_time/src/
H A Dthreads.c22 thread_func_t func; member in struct:thread
41 result = thread->func(thread->arg);
52 int create_per_cpu_threads(cpu_set_t *cpus, thread_func_t func, void *arg) argument
65 thread->func = func;
86 int create_threads(int nthreads, thread_func_t func, void *arg) argument
96 thread->func = func;
100 err = pthread_create(&thread->thread, NULL, func, arg);
H A Dtime_test.c139 void (*func)(struct test_info *); /* the test */ member in struct:test_info
186 .func = _name##_test, \
225 (*test->func)(test);
/external/autotest/server/
H A Dsubcommand_unittest.py12 def _create_subcommand(func, args):
15 def __init__(self, func, args):
16 self.func = func
22 self.lambda_function = lambda: func(*args)
24 return wrapper(func, args)
40 def check_attributes(cmd, func, args, subdir=None, debug=None,
43 self.assertEquals(cmd.func, func)
52 def func(arg function in function:subcommand_test.test_create
[all...]
/external/avahi/avahi-common/
H A Dsimple-watch.c630 void avahi_simple_poll_set_func(AvahiSimplePoll *s, AvahiPollFunc func, void *userdata) { argument
633 s->poll_func = func ? func : system_poll;
634 s->poll_func_userdata = func ? userdata : NULL;
/external/avahi/avahi-compat-howl/
H A Dunsupported.c130 AVAHI_GCC_UNUSED sw_socket_handler_func func,
149 AVAHI_GCC_UNUSED sw_timer_handler_func func,
166 AVAHI_GCC_UNUSED sw_network_interface_handler_func func,
181 AVAHI_GCC_UNUSED sw_signal_handler_func func,
200 AVAHI_GCC_UNUSED sw_const_string func,
436 AVAHI_GCC_UNUSED sw_corby_orb_observer_func func,
494 AVAHI_GCC_UNUSED sw_corby_orb_observer_func func,
830 AVAHI_GCC_UNUSED sw_corby_buffer_written_func func,
934 AVAHI_GCC_UNUSED sw_corby_buffer_written_func func,
125 sw_salt_register_socket( AVAHI_GCC_UNUSED sw_salt self, AVAHI_GCC_UNUSED struct _sw_socket * _socket, AVAHI_GCC_UNUSED sw_socket_event events, AVAHI_GCC_UNUSED sw_socket_handler handler, AVAHI_GCC_UNUSED sw_socket_handler_func func, AVAHI_GCC_UNUSED sw_opaque extra) argument
144 sw_salt_register_timer( AVAHI_GCC_UNUSED sw_salt self, AVAHI_GCC_UNUSED struct _sw_timer * timer, AVAHI_GCC_UNUSED sw_time timeout, AVAHI_GCC_UNUSED sw_timer_handler handler, AVAHI_GCC_UNUSED sw_timer_handler_func func, AVAHI_GCC_UNUSED sw_opaque extra) argument
162 sw_salt_register_network_interface( AVAHI_GCC_UNUSED sw_salt self, AVAHI_GCC_UNUSED struct _sw_network_interface * netif, AVAHI_GCC_UNUSED sw_network_interface_handler handler, AVAHI_GCC_UNUSED sw_network_interface_handler_func func, AVAHI_GCC_UNUSED sw_opaque extra) argument
177 sw_salt_register_signal( AVAHI_GCC_UNUSED sw_salt self, AVAHI_GCC_UNUSED struct _sw_signal * _signal, AVAHI_GCC_UNUSED sw_signal_handler handler, AVAHI_GCC_UNUSED sw_signal_handler_func func, AVAHI_GCC_UNUSED sw_opaque extra) argument
196 sw_print_assert( AVAHI_GCC_UNUSED int code, AVAHI_GCC_UNUSED sw_const_string assert_string, AVAHI_GCC_UNUSED sw_const_string file, AVAHI_GCC_UNUSED sw_const_string func, AVAHI_GCC_UNUSED int line) argument
431 sw_corby_orb_init( AVAHI_GCC_UNUSED sw_corby_orb * self, AVAHI_GCC_UNUSED sw_salt salt, AVAHI_GCC_UNUSED const sw_corby_orb_config * config, AVAHI_GCC_UNUSED sw_corby_orb_observer observer, AVAHI_GCC_UNUSED sw_corby_orb_observer_func func, AVAHI_GCC_UNUSED sw_opaque_t extra) argument
491 sw_corby_orb_set_observer( AVAHI_GCC_UNUSED sw_corby_orb self, AVAHI_GCC_UNUSED sw_corby_orb_observer observer, AVAHI_GCC_UNUSED sw_corby_orb_observer_func func, AVAHI_GCC_UNUSED sw_opaque_t extra) argument
826 sw_corby_channel_send( AVAHI_GCC_UNUSED sw_corby_channel self, AVAHI_GCC_UNUSED struct _sw_corby_buffer * buffer, AVAHI_GCC_UNUSED sw_corby_buffer_observer observer, AVAHI_GCC_UNUSED sw_corby_buffer_written_func func, AVAHI_GCC_UNUSED sw_opaque_t extra) argument
930 sw_corby_object_send( AVAHI_GCC_UNUSED sw_corby_object self, AVAHI_GCC_UNUSED sw_corby_buffer buffer, AVAHI_GCC_UNUSED sw_corby_buffer_observer observer, AVAHI_GCC_UNUSED sw_corby_buffer_written_func func, AVAHI_GCC_UNUSED sw_opaque extra) argument
/external/blktrace/btt/
H A Doutput.c95 ai_dip_t (*func)(struct d_info *); member in struct:__oda
100 ai_dip_t ap = odap->func(dip);
109 void output_dip_avg(FILE *ofp, char *hdr, ai_dip_t (*func)(struct d_info *))
111 struct __oda oda = { .ofp = ofp, .func = func};
488 ai_pip_t (*func)(struct p_info *); member in struct:__opa
494 ai_pip_t ap = opap->func(pip);
505 void output_pip_avg(FILE *ofp, char *hdr, ai_pip_t (*func)(struct p_info *))
507 struct __opa opa = { .ofp = ofp, .func = func };
[all...]
/external/boringssl/src/crypto/bio/
H A Dbio_test.cc51 static void PrintSocketError(const char *func) { argument
52 perror(func);
55 static void PrintSocketError(const char *func) { argument
56 fprintf(stderr, "%s: %d\n", func, WSAGetLastError());
/external/boringssl/src/crypto/cipher/
H A Daead_test.cc197 const EVP_AEAD *(*func)(void); member in struct:AEADName
239 if (aead_name.func == NULL) {
244 aead = aead_name.func();
/external/boringssl/src/crypto/digest/
H A Ddigest_test.cc33 const EVP_MD *(*func)(void); member in struct:MD
164 if (!EVP_DigestInit_ex(ctx.get(), test->md.func(), NULL)) {
185 if (!EVP_DigestInit_ex(ctx.get(), test->md.func(), NULL)) {
205 if (digest_len != EVP_MD_size(test->md.func())) {
221 if (!CompareDigest(test, digest, EVP_MD_size(test->md.func()))) {
228 if (!CompareDigest(test, out, EVP_MD_size(test->md.func()))) {
/external/boringssl/src/crypto/modes/
H A Dctr.c166 unsigned int *num, ctr128_f func) {
190 /* As (*func) operates on 32-bit counter, caller
199 (*func)(in, out, blocks, key, ivec);
200 /* (*func) does not update ivec, caller does: */
213 (*func)(ecount_buf, ecount_buf, 1, key, ivec);
162 CRYPTO_ctr128_encrypt_ctr32(const uint8_t *in, uint8_t *out, size_t len, const void *key, uint8_t ivec[16], uint8_t ecount_buf[16], unsigned int *num, ctr128_f func) argument
/external/boringssl/src/crypto/
H A Dthread.c74 void CRYPTO_set_locking_callback(void (*func)(int mode, int lock_num,
77 void CRYPTO_set_add_lock_callback(int (*func)(int *num, int mount, int lock_num,
84 int CRYPTO_THREADID_set_callback(void (*func)(CRYPTO_THREADID *)) { return 1; }
92 void CRYPTO_set_id_callback(unsigned long (*func)(void)) {} argument
/external/boringssl/src/ssl/test/
H A Dbssl_shim.cc69 static void PrintSocketError(const char *func) { argument
70 perror(func);
73 static void PrintSocketError(const char *func) { argument
74 fprintf(stderr, "%s: %d\n", func, WSAGetLastError());

Completed in 1669 milliseconds

1234567891011>>