HomeSort by relevance Sort by last modified time
    Searched refs:func (Results 126 - 150 of 1580) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/bison/darwin-lib/
signal.h 139 /* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);
146 #define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \
147 _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)
151 /* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);
152 declares the system function, named func, with the given prototype,
158 #define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \
159 _GL_EXTERN_C rettype func parameters_and_attributes
161 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
162 declares a C++ alias called GNULIB_NAMESPACE::func
167 #define _GL_CXXALIAS_RPL(func,rettype,parameters)
    [all...]
wctype.h 134 /* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);
141 #define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \
142 _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)
146 /* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);
147 declares the system function, named func, with the given prototype,
153 #define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \
154 _GL_EXTERN_C rettype func parameters_and_attributes
156 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
157 declares a C++ alias called GNULIB_NAMESPACE::func
162 #define _GL_CXXALIAS_RPL(func,rettype,parameters)
    [all...]
  /external/bison/linux-lib/
signal.h 139 /* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);
146 #define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \
147 _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)
151 /* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);
152 declares the system function, named func, with the given prototype,
158 #define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \
159 _GL_EXTERN_C rettype func parameters_and_attributes
161 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
162 declares a C++ alias called GNULIB_NAMESPACE::func
167 #define _GL_CXXALIAS_RPL(func,rettype,parameters)
    [all...]
wctype.h 134 /* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);
141 #define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \
142 _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)
146 /* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);
147 declares the system function, named func, with the given prototype,
153 #define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \
154 _GL_EXTERN_C rettype func parameters_and_attributes
156 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
157 declares a C++ alias called GNULIB_NAMESPACE::func
162 #define _GL_CXXALIAS_RPL(func,rettype,parameters)
    [all...]
  /external/clang/test/SemaCXX/
namespace-alias.cpp 58 namespace B { void func (); }
66 func();
71 namespace KA { void func(); }
75 KB::func();
80 KC::func();
86 KB::func(); // expected-error {{undeclared identifier 'KB'}}
87 KC::func(); // expected-error {{undeclared identifier 'KC'}}
ambig-user-defined-conversions.cpp 16 void func(const int ci, const char cc); // expected-note {{candidate function}}
17 void func(const char ci, const B b); // expected-note {{candidate function}}
18 void func(const B b, const int ci); // expected-note {{candidate function}}
22 func(b1, f()); // expected-error {{call to 'func' is ambiguous}}
blocks.cpp 48 void func(bool& outHasProperty);
55 func(hasProperty);
62 func(hasProperty);
63 func(has);
  /external/bison/src/
scan-skel.l 193 void (*func)(char const *, ...);
196 case 'w': func = warn; break;
197 case 'c': func = complain; break;
198 case 'f': func = fatal; break;
204 func (_(at_directive_argv[1]));
207 func (_(at_directive_argv[1]), at_directive_argv[2]);
210 func (_(at_directive_argv[1]), at_directive_argv[2],
214 func (_(at_directive_argv[1]), at_directive_argv[2],
218 func (_(at_directive_argv[1]), at_directive_argv[2],
231 void (*func)(location, char const *, ...)
    [all...]
  /external/chromium/base/
at_exit.h 42 // the callback function is void func().
43 static void RegisterCallback(AtExitCallbackType func, void* param);
58 CallbackAndParam(AtExitCallbackType func, void* param)
59 : func_(func), param_(param) { }
  /external/chromium/testing/
multiprocess_func_list.cc 9 // Helper functions to maintain mapping of "test name"->test func.
17 // Retrieve a reference to the global 'func name' -> func ptr map.
34 ChildFunctionPtr func = it->second; local
35 if (func) {
36 return (*func)();
  /external/clang/test/CodeGenCXX/
inline-functions.cpp 37 friend void T::func();
45 void func() { function in class:test1::C
53 c.func();
  /external/chromium/chrome/common/extensions/docs/examples/extensions/irc/servlet/
util.js 9 function bind(obj, func) {
11 return func.apply(obj, arguments);
  /external/chromium/net/base/
net_module.h 26 static void SetResourceProvider(ResourceProvider func);
  /external/clang/test/CXX/stmt.stmt/stmt.ambig/
p1-0x.cpp 16 void func(A, B, C, D, E);
18 void func(int a, int c) { function
27 func(a, d, e, f, g);
39 func(a, d, e, f, g);
  /external/clang/test/CXX/temp/temp.names/
p2.cpp 8 template <typename R, typename P> void h(R (*func)(P)) {}
  /external/clang/test/CodeGen/
2003-09-30-StructLayout.c 16 void func(struct St* A) { function
  /external/clang/test/Modules/Inputs/
templates-top.h 16 static void func() {} function in class:A::WhereAmI
  /external/clang/test/Sema/
2007-10-01-BuildArrayRef.c 3 void func() function
incomplete-call.c 9 void func(void *p) { function
  /external/icu4c/io/
ucln_io.h 36 cleanupFunc *func);
  /external/llvm/test/MC/COFF/
seh.s 24 .globl func
25 .def func; .scl 2; .type 32; .endef
26 .seh_proc func
27 func: label
  /external/qemu/
balloon.h 21 void qemu_add_balloon_handler(QEMUBalloonEvent *func, void *opaque);
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
bitops-bits-in-byte.js 15 function TimeFunc(func) {
18 for(var y=0; y<256; y++) func(y);
  /external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
bitops-bits-in-byte.js 15 function TimeFunc(func) {
18 for(var y=0; y<256; y++) func(y);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
pg.h 46 char func; /* PG_RESET or PG_COMMAND */ member in struct:pg_write_hdr

Completed in 2077 milliseconds

1 2 3 4 56 7 8 91011>>