Searched refs:doit (Results 76 - 100 of 144) sorted by relevance

123456

/external/libunwind/tests/
H A DGperf-trace.c99 doit (const char *label) function
239 doit ("no cache ");
242 doit ("global cache ");
245 doit ("per-thread cache");
H A DLrs-race.c1474 int doit (void) function
1499 doit ();
1504 doit ();
1509 doit ();
/external/ppp/pppd/plugins/rp-pppoe/
H A Dplugin.c72 static int PPPoEDevnameHook(char *cmd, char **argv, int doit);
90 int (*OldDevnameHook)(char *cmd, char **argv, int doit) = NULL;
298 * doit -- if non-zero, set device name. Otherwise, just check if possible
306 PPPoEDevnameHook(char *cmd, char **argv, int doit) argument
337 if (doit)
347 if (r && doit) {
/external/libyuv/files/
H A Dsetup_links.py136 doit stage.
140 def doit(self, links_db): member in class:Action
162 def doit(self, _): member in class:Remove
178 def doit(self, _): member in class:Rmtree
193 def doit(self, _): member in class:Makedirs
217 def doit(self, links_db): member in class:Symlink
324 action.doit(self._links_db)
/external/python/cpython2/Lib/idlelib/
H A DMultiCall.py215 doit = lambda: self.bindedfuncs[triplet[2]][triplet[0]].append(func)
217 doit()
219 self.doafterhandler.append(doit)
222 doit = lambda: self.bindedfuncs[triplet[2]][triplet[0]].remove(func)
224 doit()
226 self.doafterhandler.append(doit)
/external/python/cpython3/Lib/idlelib/
H A Dmulticall.py225 doit = lambda: self.bindedfuncs[triplet[2]][triplet[0]].append(func)
227 doit()
229 self.doafterhandler.append(doit)
232 doit = lambda: self.bindedfuncs[triplet[2]][triplet[0]].remove(func)
234 doit()
236 self.doafterhandler.append(doit)
/external/webrtc/
H A Dsetup_links.py157 doit stage.
161 def doit(self, links_db): member in class:Action
183 def doit(self, _): member in class:Remove
199 def doit(self, _): member in class:Rmtree
214 def doit(self, _): member in class:Makedirs
238 def doit(self, links_db): member in class:Symlink
345 action.doit(self._links_db)
/external/clang/include/clang/AST/
H A DDeclBase.h1830 static const ToTy *doit(const DeclContext *Val) { function in struct:clang::cast_convert_decl_context
1834 static ToTy *doit(DeclContext *Val) { function in struct:clang::cast_convert_decl_context
1842 static const ToTy *doit(const DeclContext *Val) { function in struct:clang::cast_convert_decl_context
1846 static ToTy *doit(DeclContext *Val) { function in struct:clang::cast_convert_decl_context
1859 static bool doit(const ::clang::DeclContext &Val) { function in struct:llvm::isa_impl
1868 static const ToTy &doit(const ::clang::DeclContext &Val) { function in struct:llvm::cast_convert_val
1869 return *::clang::cast_convert_decl_context<ToTy>::doit(&Val);
1874 static ToTy &doit(::clang::DeclContext &Val) { function in struct:llvm::cast_convert_val
1875 return *::clang::cast_convert_decl_context<ToTy>::doit(&Val);
1881 static const ToTy *doit(cons function in struct:llvm::cast_convert_val
1887 static ToTy *doit(::clang::DeclContext *Val) { function in struct:llvm::cast_convert_val
1895 static ::clang::DeclContext &doit(const FromTy &Val) { function in struct:llvm::cast_convert_val
1902 static ::clang::DeclContext *doit(const FromTy *Val) { function in struct:llvm::cast_convert_val
1909 static const ::clang::DeclContext &doit(const FromTy &Val) { function in struct:llvm::cast_convert_val
1916 static const ::clang::DeclContext *doit(const FromTy *Val) { function in struct:llvm::cast_convert_val
[all...]
/external/python/cpython2/Lib/lib-tk/
H A DSimpleDialog.py94 def doit(root=root): function in function:.test
106 t = Button(root, text='Test', command=doit)
/external/clang/test/Analysis/
H A Dcasts.c57 void doit(char *data, int len) { function
/external/ltp/testcases/kernel/sched/pthreads/
H A Dpth_str01.c56 int doit(c_info *);
317 * doit
321 int doit(c_info * parent) function
364 printf("thread %d getting to heart of doit.\n", my_index);
392 (void *)doit, (void *)info_p))) {
393 tst_resm(TINFO, "pthread_create (doit): %s\n",
665 if ((rc = pthread_create(&root_thread, &attr, (void *)doit, NULL))) {
H A Dpth_str03.c75 void *doit(void *);
318 * doit
322 void *doit(void *param) function
360 printf("thread %d getting to heart of doit.\n", my_index);
377 doit, (void *)info_p))) {
378 tst_resm(TINFO, "pthread_create (doit): %s",
636 if ((rc = pthread_create(&root_thread, &attr, doit, NULL))) {
/external/python/cpython2/Lib/ctypes/test/
H A Dtest_pointers.py81 doit = dll._testfunc_callback_with_pointer
87 doit(callback)
89 doit(callback)
/external/python/cpython3/Lib/ctypes/test/
H A Dtest_pointers.py84 doit = dll._testfunc_callback_with_pointer
90 doit(callback)
92 doit(callback)
/external/javassist/src/main/javassist/bytecode/
H A DStackMapTable.java69 new Copier(this.constPool, info, newCp).doit());
364 public byte[] doit() throws BadBytecode { method in class:StackMapTable.SimpleCopy
445 byte[] data = new InsertLocal(this.get(), index, tag, classInfo).doit();
791 new Shifter(this, where, gapSize, exclusive).doit();
811 public void doit() throws BadBytecode { method in class:StackMapTable.Shifter
900 byte[] data = new NewRemover(this.get(), where).doit();
H A DStackMap.java290 byte[] data = new InsertLocal(this, index, tag, classInfo).doit();
302 byte[] doit() { method in class:StackMap.SimpleCopy
410 byte[] data = new NewRemover(this, where).doit();
/external/javassist/src/main/javassist/expr/
H A DCast.java144 public void doit(JvstCodeGen gen, Bytecode bytecode, ASTList args) method in class:Cast.ProceedForCast
H A DInstanceof.java148 public void doit(JvstCodeGen gen, Bytecode bytecode, ASTList args) method in class:Instanceof.ProceedForInstanceof
H A DExprEditor.java78 public boolean doit(CtClass clazz, MethodInfo minfo) method in class:ExprEditor
125 boolean doit(CtClass clazz, MethodInfo minfo, LoopContext context, method in class:ExprEditor
H A DFieldAccess.java236 public void doit(JvstCodeGen gen, Bytecode bytecode, ASTList args) method in class:FieldAccess.ProceedForRead
284 public void doit(JvstCodeGen gen, Bytecode bytecode, ASTList args) method in class:FieldAccess.ProceedForWrite
H A DNewExpr.java229 public void doit(JvstCodeGen gen, Bytecode bytecode, ASTList args) method in class:NewExpr.ProceedForNew
/external/ppp/pppd/
H A Dtty.c265 * If doit is 0, the call is to check whether this option is
269 setspeed(arg, argv, doit)
272 int doit;
280 if (doit) {
290 * If doit is 0, the call is to check whether this option is
294 setdevname(cp, argv, doit)
297 int doit;
315 if (!doit)
321 if (doit)
326 if (doit) {
[all...]
/external/javassist/src/main/javassist/compiler/
H A DJavac.java439 public void doit(JvstCodeGen gen, Bytecode b, ASTList args)
483 public void doit(JvstCodeGen gen, Bytecode b, ASTList args)
529 public void doit(JvstCodeGen gen, Bytecode b, ASTList args)
/external/clang/test/SemaCXX/
H A Doverloaded-builtin-operators.cpp219 bool doit() { function in namespace:PR8477
H A Dvararg-non-pod.cpp175 virtual void doit() = 0; // expected-note{{unimplemented pure virtual method}}

Completed in 961 milliseconds

123456