Searched refs:func (Results 101 - 125 of 1961) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A DAPIspecutil.py59 for func in api.functions:
60 alias, need_conv = impl.match(func, conversions)
63 if not func.is_external:
64 print >>sys.stderr, "Error: unable to dispatch %s" % func.name
65 alias = func
68 __functions[func.name] = func
69 __aliases[func.name] = (alias, need_conv)
77 for func in api.functions:
78 if func
[all...]
/external/mesa3d/src/mesa/main/
H A DAPIspecutil.py59 for func in api.functions:
60 alias, need_conv = impl.match(func, conversions)
63 if not func.is_external:
64 print >>sys.stderr, "Error: unable to dispatch %s" % func.name
65 alias = func
68 __functions[func.name] = func
69 __aliases[func.name] = (alias, need_conv)
77 for func in api.functions:
78 if func
[all...]
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.argdep/
H A Dp4.cpp5 friend void func(A);
12 static void func(B);
23 void func(C); // expected-note {{'C::func' declared here}} \
35 func(A::A());
41 func(B::B()); // expected-error {{use of undeclared identifier 'func'; did you mean 'C::func'?}} \
43 func(C::C());
/external/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.isbind/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.isbind/Android.mk
19 test_name := utilities/function.objects/bind/func.bind/func.bind.isbind/is_bind_expression
23 test_name := utilities/function.objects/bind/func.bind/func.bind.isbind/is_placeholder
/external/libvpx/libvpx/vpx_ports/
H A Dvpx_once.h19 static void once(void (*func)(void)) argument
58 func();
78 static void once(void (*func)(void)) argument
81 pthread_once(&lock, func);
91 static void once(void (*func)(void)) argument
97 func();
/external/chromium_org/v8/test/cctest/
H A Dtest-code-stubs.h44 typedef int32_t ConvertDToICallWrapperType(ConvertDToIFunc func, double from);
49 void RunAllTruncationTests(ConvertDToIFunc func);
51 ConvertDToIFunc func);
/external/chromium_org/v8/test/mjsunit/
H A Dcomparison-ops-and-undefined.js30 function test_helper_for_ics(func, b1, b2, b3, b4) {
31 assertEquals(b1, func(.5, .5));
32 assertEquals(b2, func(.5, undefined));
33 assertEquals(b3, func(undefined, .5));
34 assertEquals(b4, func(undefined, undefined));
37 function test_helper_for_crankshaft(func, b1, b2, b3, b4) {
38 assertEquals(b1, func(.5, .5));
39 %OptimizeFunctionOnNextCall(func);
40 assertEquals(b1, func(.5, .5));
41 assertEquals(b2, func(
[all...]
/external/clang/test/Misc/
H A Dast-dump-templates.cpp43 void func(int);
44 void func(float);
47 func(T());
50 // DUMP: UnresolvedLookupExpr {{.*}} <col:3> '<overloaded function type>' lvalue (ADL) = 'func'
/external/chromium_org/third_party/mesa/src/src/egl/main/
H A Deglglobals.h58 _eglAddAtExitCall(void (*func)(void));
/external/clang/test/CXX/expr/expr.post/expr.type.conv/
H A Dp1-0x.cpp9 int func(foo& f) { function
/external/clang/test/CXX/temp/temp.names/
H A Dp2.cpp8 template <typename R, typename P> void h(R (*func)(P)) {} argument
/external/clang/test/CodeGen/
H A Dtypedef-func.c11 void addfilter2(filter_func_t *func){} argument
/external/clang/test/FixIt/
H A Dfixit-vexing-parse-cxx0x.cpp8 void func() { function
/external/clang/test/Index/
H A Dcodecompletion-chained.cpp24 void func() {
/external/clang/test/SemaCXX/
H A Dwarn-overloaded-virtual.cpp86 virtual void func();
90 virtual void func();
97 void func(int);
98 void func();
104 virtual void func();
108 virtual void func();
115 virtual void func();
119 void func(int);
120 void func();
/external/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.place/
H A DAndroid.mk17 test_makefile := external/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.place/Android.mk
19 test_name := utilities/function.objects/bind/func.bind/func.bind.place/placeholders
/external/llvm/test/DebugInfo/Inputs/
H A Ddwarfdump-test-loc-list-32bit.elf.cpp8 foo func(bool b, foo f, foo g) { function in namespace:pr14763
/external/mesa3d/src/egl/main/
H A Deglglobals.h58 _eglAddAtExitCall(void (*func)(void));
/external/tcpdump/
H A Dsetsignal.c74 (*setsignal (int sig, RETSIGTYPE (*func)(int)))(int) argument
80 new.sa_handler = func;
89 return (sigset(sig, func));
91 return (signal(sig, func));
/external/valgrind/main/gdbserver_tests/
H A Dmcmain_pic.stdout.exp2 another func called msg called from gdb
4 another func called msg called from main
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/translate/
H A Dtranslate_sse.c97 struct x86_function *func; member in struct:translate_sse
160 sse_movaps(p->func, reg,
178 x86_movzx8(p->func, tmp, src);
179 sse2_movd(p->func, data, tmp);
182 x86_movzx16(p->func, tmp, src);
183 sse2_movd(p->func, data, tmp);
186 x86_movzx8(p->func, tmp, x86_make_disp(src, 2));
187 x86_shl_imm(p->func, tmp, 16);
188 x86_mov16(p->func, tmp, src);
189 sse2_movd(p->func, dat
1270 build_vertex_emit( struct translate_sse *p, struct x86_function *func, unsigned index_size ) argument
[all...]
/external/mesa3d/src/gallium/auxiliary/translate/
H A Dtranslate_sse.c97 struct x86_function *func; member in struct:translate_sse
160 sse_movaps(p->func, reg,
178 x86_movzx8(p->func, tmp, src);
179 sse2_movd(p->func, data, tmp);
182 x86_movzx16(p->func, tmp, src);
183 sse2_movd(p->func, data, tmp);
186 x86_movzx8(p->func, tmp, x86_make_disp(src, 2));
187 x86_shl_imm(p->func, tmp, 16);
188 x86_mov16(p->func, tmp, src);
189 sse2_movd(p->func, dat
1270 build_vertex_emit( struct translate_sse *p, struct x86_function *func, unsigned index_size ) argument
[all...]
/external/chromium_org/third_party/icu/source/test/perf/DateFmtPerf/
H A DDateFmtPerf.cpp55 DateFmtFunction* func= new DateFmtFunction(1, locale); local
56 return func;
60 DateFmtFunction* func= new DateFmtFunction(40, locale); local
61 return func;
65 DateFmtFunction* func= new DateFmtFunction(400, locale); local
66 return func;
70 BreakItFunction* func= new BreakItFunction(250, true); local
71 return func;
75 BreakItFunction* func= new BreakItFunction(10000, true); local
76 return func;
80 BreakItFunction* func= new BreakItFunction(250, false); local
85 BreakItFunction* func= new BreakItFunction(10000, false); local
90 NumFmtFunction* func= new NumFmtFunction(10000, locale); local
95 NumFmtFunction* func= new NumFmtFunction(100000, locale); local
100 CollationFunction* func= new CollationFunction(40, locale); local
105 CollationFunction* func= new CollationFunction(400, locale); local
[all...]
/external/icu/icu4c/source/test/perf/DateFmtPerf/
H A DDateFmtPerf.cpp55 DateFmtFunction* func= new DateFmtFunction(1, locale); local
56 return func;
60 DateFmtFunction* func= new DateFmtFunction(40, locale); local
61 return func;
65 DateFmtFunction* func= new DateFmtFunction(400, locale); local
66 return func;
70 BreakItFunction* func= new BreakItFunction(250, true); local
71 return func;
75 BreakItFunction* func= new BreakItFunction(10000, true); local
76 return func;
80 BreakItFunction* func= new BreakItFunction(250, false); local
85 BreakItFunction* func= new BreakItFunction(10000, false); local
90 NumFmtFunction* func= new NumFmtFunction(10000, locale); local
95 NumFmtFunction* func= new NumFmtFunction(100000, locale); local
100 CollationFunction* func= new CollationFunction(40, locale); local
105 CollationFunction* func= new CollationFunction(400, locale); local
[all...]
/external/chromium_org/ppapi/cpp/
H A Dcompletion_callback.h39 /// @param[in] func The function to be called on completion.
43 CompletionCallback(PP_CompletionCallback_Func func, void* user_data) { argument
44 cc_ = PP_MakeCompletionCallback(func, user_data);
50 /// @param[in] func The function to be called on completion.
57 CompletionCallback(PP_CompletionCallback_Func func, void* user_data, argument
59 cc_ = PP_MakeCompletionCallback(func, user_data);
83 PP_DCHECK(cc_.func);
96 PP_DCHECK(cc_.func);
114 return (cc_.func == NULL ||
217 /// @param[in] func Th
223 CompletionCallbackWithOutput(PP_CompletionCallback_Func func, void* user_data, OutputStorageType* output) argument
245 CompletionCallbackWithOutput(PP_CompletionCallback_Func func, void* user_data, int32_t flags, OutputStorageType* output) argument
[all...]

Completed in 5099 milliseconds

1234567891011>>