Searched refs:func (Results 1 - 25 of 97) sorted by relevance

1234

/frameworks/rs/tests/lldb/tests/harness/
H A Ddecorators.py44 def __call__(self, func):
45 @functools.wraps(func)
53 print("skipping %r - %s" % (func, self._message))
55 return func(args[0])
75 def wimpy(func):
81 func.wimpy = True
83 return func
91 def __call__(self, func):
92 func.test_order = self._order
93 return func
[all...]
/frameworks/rs/rsov/compiler/spirit/
H A Dbuilder.cpp32 FunctionDefinition *func, const char *name) {
33 return new EntryPointDefinition(this, execModel, func, name);
43 FunctionInst *func = MakeFunction(retType, ctrl, funcType); local
45 return new FunctionDefinition(this, func, end);
31 MakeEntryPointDefinition(ExecutionModel execModel, FunctionDefinition *func, const char *name) argument
H A Dbuilder.h30 FunctionDefinition *func,
/frameworks/wilhelm/src/
H A Dassert.cpp30 void __assert2(const char *file, int line, const char *func, const char *failedexpr) argument
33 failedexpr, file, line, func);
/frameworks/native/include/binder/
H A DDebug.h35 debugPrintFunc func = 0, void* cookie = 0);
40 debugPrintFunc func = 0, void* cookie = 0);
H A DBpBinder.h55 object_cleanup_func func);
73 IBinder::object_cleanup_func func);
87 IBinder::object_cleanup_func func; member in struct:android::BpBinder::ObjectManager::entry_t
H A DTextOutput.h78 TextOutput& operator<<(TextOutput& to, TextOutputManipFunc func);
170 inline TextOutput& operator<<(TextOutput& to, TextOutputManipFunc func) argument
172 return (*func)(to);
/frameworks/native/libs/binder/include/binder/
H A DDebug.h35 debugPrintFunc func = 0, void* cookie = 0);
40 debugPrintFunc func = 0, void* cookie = 0);
H A DBpBinder.h55 object_cleanup_func func);
73 IBinder::object_cleanup_func func);
87 IBinder::object_cleanup_func func; member in struct:android::BpBinder::ObjectManager::entry_t
H A DTextOutput.h78 TextOutput& operator<<(TextOutput& to, TextOutputManipFunc func);
170 inline TextOutput& operator<<(TextOutput& to, TextOutputManipFunc func) argument
172 return (*func)(to);
/frameworks/base/tools/aapt2/
H A DFlags.cpp34 auto func = [value](const StringPiece& arg) -> bool { local
39 flags_.push_back(Flag{name.to_string(), description.to_string(), func, true, 1, false});
46 auto func = [value](const StringPiece& arg) -> bool { local
51 flags_.push_back(Flag{name.to_string(), description.to_string(), func, true, 1, false});
58 auto func = [value](const StringPiece& arg) -> bool { local
63 flags_.push_back(Flag{name.to_string(), description.to_string(), func, false, 1, false});
70 auto func = [value](const StringPiece& arg) -> bool { local
75 flags_.push_back(Flag{name.to_string(), description.to_string(), func, false, 1, false});
82 auto func = [value](const StringPiece& arg) -> bool { local
87 flags_.push_back(Flag{name.to_string(), description.to_string(), func, fals
93 auto func = [value](const StringPiece& arg) -> bool { local
[all...]
/frameworks/native/cmds/lshal/
H A DTimeout.h32 BackgroundTaskState(std::function<void(void)> &&func) argument
33 : mFunc(std::forward<decltype(func)>(func)) {}
64 bool timeout(std::chrono::duration<R, P> delay, std::function<void(void)> &&func) { argument
66 BackgroundTaskState state{std::forward<decltype(func)>(func)};
82 timeoutIPC(const sp<I> &interfaceObject, Function &&func, Args &&... args) { argument
85 auto boundFunc = std::bind(std::forward<Function>(func),
/frameworks/rs/tests/lldb/tests/testcases/
H A Dreduce_common.py82 for func, typename in funcname_types:
86 if not func.endswith(".combiner"):
92 expected_regex=[breakpoint_match % (script_soname, func)]
100 script_soname, func)
/frameworks/base/services/core/java/com/android/server/wm/
H A DWindowContainerController.java67 boolean checkCallingPermission(String permission, String func) { argument
68 return mService.checkCallingPermission(permission, func);
/frameworks/base/tests/backup/
H A Dbackup_helper_test.cpp32 test_func func; member in struct:Test
90 t->result = t->func();
/frameworks/rs/cpu_ref/
H A DrsCpuScriptGroup2.h24 CPUClosure(const Closure* closure, RsdCpuScriptImpl* si, ExpandFuncTy func) : argument
25 mClosure(closure), mSi(si), mFunc(func) {}
H A DrsCpuRuntimeMath.cpp30 #define EXPORT_F32_FN_F32(func) \
31 float __attribute__((overloadable)) SC_##func(float v) { \
32 return func(v); \
35 #define EXPORT_F32_FN_F32_F32(func) \
36 float __attribute__((overloadable)) SC_##func(float t, float v) { \
37 return func(t, v); \
/frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
H A Dtypedefs.h168 #define ADD_PREFIX(func) LINK0(PREFIX, _, func)
/frameworks/native/cmds/servicemanager/
H A Dbinder.h26 void (*func)(struct binder_state *bs, void *ptr); member in struct:binder_death
73 void binder_loop(struct binder_state *bs, binder_handler func);
/frameworks/base/native/android/
H A Dstorage_manager.cpp73 ObbCallback* registerObbCallback(AStorageManager_obbCallbackFunc func, void* data) { argument
74 ObbCallback* cb = new ObbCallback(getNextNonce(), func, data);
128 void mountObb(const char* rawPath, const char* key, AStorageManager_obbCallbackFunc func, argument
137 ObbCallback* cb = registerObbCallback(func, data);
144 void unmountObb(const char* filename, const bool force, AStorageManager_obbCallbackFunc func, void* data) { argument
145 ObbCallback* cb = registerObbCallback(func, data);
/frameworks/native/libs/binder/
H A DBpBinder.cpp46 IBinder::object_cleanup_func func)
51 e.func = func;
80 if (e.func != NULL) {
81 e.func(mObjects.keyAt(i), e.object, e.cleanupCookie);
288 object_cleanup_func func)
292 mObjects.attach(objectID, object, cleanupCookie, func);
44 attach( const void* objectID, void* object, void* cleanupCookie, IBinder::object_cleanup_func func) argument
286 attachObject( const void* objectID, void* object, void* cleanupCookie, object_cleanup_func func) argument
/frameworks/rs/cpp/
H A DRenderScript.cpp270 void RS::setErrorHandler(ErrorHandlerFunc_t func) { argument
271 mErrorFunc = func;
274 void RS::setMessageHandler(MessageHandlerFunc_t func) { argument
275 mMessageFunc = func;
/frameworks/native/opengl/libagl/
H A Dstate.cpp226 void glStencilFunc(GLenum func, GLint /*ref*/, GLuint /*mask*/) { argument
228 if (func < GL_NEVER || func > GL_ALWAYS) {
249 void glAlphaFunc(GLenum func, GLclampf ref) argument
251 glAlphaFuncx(func, gglFloatToFixed(ref));
544 void glDepthFunc(GLenum func) { argument
546 c->rasterizer.procs.depthFunc(c, func);
554 void glAlphaFuncx(GLenum func, GLclampx ref) { argument
556 c->rasterizer.procs.alphaFuncx(c, func, ref);
/frameworks/rs/rsov/compiler/
H A DGlobalAllocSPIRITPass.cpp142 FunctionInst *func = local
144 const char *name = getModule()->lookupNameByInstruction(func);
/frameworks/av/include/media/stagefright/
H A DMediaExtractor.h100 static void RegisterSniffer_l(SnifferFunc func);

Completed in 493 milliseconds

1234