HomeSort by relevance Sort by last modified time
    Searched defs:func (Results 451 - 475 of 1347) sorted by null

<<11121314151617181920>>

  /external/python/cpython2/Modules/
cgen.py 189 def generate(type, func, database):
206 err('Function', func, 'too complicated:',
211 functions.append(func)
217 print 'gl_' + func + '(self, args)'
332 print '\tretval =', func + '(',
334 print '\t' + func + '(',
467 func = words[0][1:] variable
468 if (not func) and words[1:]:
469 func = words[1] variable
470 if func
    [all...]
  /external/python/cpython2/Python/
thread_solaris.h 20 void (*func)(void *); member in struct:func_arg
27 void (*func)(void *);
30 func = ((struct func_arg *) funcarg)->func;
33 (*func)(arg);
39 PyThread_start_new_thread(void (*func)(void *), void *arg)
48 funcarg->func = func;
  /external/python/cpython3/Lib/ctypes/test/
test_prototypes.py 8 # func.restype = c_char_p
9 # func(c_char_p("123"))
16 # func is called, but NOT before the result is actually built.
48 func = testdll._testfunc_p_p
49 func.restype = c_long
50 func.argtypes = None
56 func = prototype(("_testfunc_p_p", testdll),
60 func()
66 self.assertEqual(func(None), None)
67 self.assertEqual(func(input=None), None
216 def func(): pass function in function:ArrayTest.test
    [all...]
  /external/swiftshader/third_party/llvm-subzero/lib/Support/
Threading.cpp 82 void (*func)(void*); member in struct:ThreadInfo
88 info->func(info->param);
  /external/syslinux/com32/hdt/
hdt-dump-pci.c 43 int bus = 0, slot = 0, func = 0; local
76 func = __pci_func;
123 add_i("pci_device.func", func);
  /external/tensorflow/tensorflow/python/kernel_tests/random/
random_ops_test.py 37 def func(): function in function:RandomNormalTest._Sampler
46 return func
98 def func(): function in function:TruncatedNormalTest._Sampler
107 return func
194 def func(): function in function:RandomUniformTest._Sampler
203 return func
  /external/v8/src/inspector/
java-script-call-frame.cc 54 v8::Local<v8::Function> func = v8::Local<v8::Function>::Cast( local
58 if (!func->Call(context, callFrame, 0, nullptr).ToLocal(&result) ||
89 v8::Local<v8::Function> func = v8::Local<v8::Function>::Cast( local
94 if (func->Call(context, callFrame, 0, nullptr).ToLocal(&details)) {
  /frameworks/base/tools/aapt2/
Flags.cpp 34 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, false, 1, false})
93 auto func = [value](const StringPiece& arg) -> bool { local
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/func/
CipherAesWrapTest.java 16 package org.apache.harmony.crypto.tests.javax.crypto.func;
CipherRSATest.java 16 package org.apache.harmony.crypto.tests.javax.crypto.func;
KeyAgreementFunctionalTest.java 16 package org.apache.harmony.crypto.tests.javax.crypto.func;
KeyGeneratorFunctionalTest.java 16 package org.apache.harmony.crypto.tests.javax.crypto.func;
MacFunctionalTest.java 16 package org.apache.harmony.crypto.tests.javax.crypto.func;
MacThread.java 16 package org.apache.harmony.crypto.tests.javax.crypto.func;
SecretKeyFactoryFunctionalTest.java 16 package org.apache.harmony.crypto.tests.javax.crypto.func;
  /prebuilts/gdb/darwin-x86/lib/python2.7/ctypes/test/
test_pointers.py 24 func = dll._testfunc_p_p
25 func.restype = c_long
28 ## func.argtypes = (POINTER(c_int),)
29 address = func(byref(i))
32 func.restype = POINTER(c_int)
33 res = func(pointer(i))
39 func = dll._testfunc_p_p
42 func.restype = POINTER(c_int)
43 func.argtypes = (POINTER(c_int),)
45 res = func(pointer(i)
65 def func(arg): function in function:PointersTestCase.test_callbacks_with_pointers
    [all...]
test_prototypes.py 7 # func.restype = c_char_p
8 # func(c_char_p("123"))
15 # func is called, but NOT before the result is actually built.
47 func = testdll._testfunc_p_p
48 func.restype = c_long
49 func.argtypes = None
55 func = prototype(("_testfunc_p_p", testdll),
59 func()
65 self.assertEqual(func(None), None)
66 self.assertEqual(func(input=None), None
215 def func(): pass function in function:ArrayTest.test
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/ctypes/test/
test_pointers.py 24 func = dll._testfunc_p_p
25 func.restype = c_long
28 ## func.argtypes = (POINTER(c_int),)
29 address = func(byref(i))
32 func.restype = POINTER(c_int)
33 res = func(pointer(i))
39 func = dll._testfunc_p_p
42 func.restype = POINTER(c_int)
43 func.argtypes = (POINTER(c_int),)
45 res = func(pointer(i)
65 def func(arg): function in function:PointersTestCase.test_callbacks_with_pointers
    [all...]
test_prototypes.py 7 # func.restype = c_char_p
8 # func(c_char_p("123"))
15 # func is called, but NOT before the result is actually built.
47 func = testdll._testfunc_p_p
48 func.restype = c_long
49 func.argtypes = None
55 func = prototype(("_testfunc_p_p", testdll),
59 func()
65 self.assertEqual(func(None), None)
66 self.assertEqual(func(input=None), None
215 def func(): pass function in function:ArrayTest.test
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
assert_checkpoint.h 10 const char* func; member in struct:Checkpoint
14 Checkpoint() : file(nullptr), func(nullptr), line(-1), msg(nullptr) {}
16 : file(xfile), func(xfunc), line(xline), msg(xmsg)
25 s << file << ":" << line << " " << func << ": Checkpoint"; local
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ctypes/test/
test_pointers.py 24 func = dll._testfunc_p_p
25 func.restype = c_long
28 ## func.argtypes = (POINTER(c_int),)
29 address = func(byref(i))
32 func.restype = POINTER(c_int)
33 res = func(pointer(i))
39 func = dll._testfunc_p_p
42 func.restype = POINTER(c_int)
43 func.argtypes = (POINTER(c_int),)
45 res = func(pointer(i)
65 def func(arg): function in function:PointersTestCase.test_callbacks_with_pointers
    [all...]
test_prototypes.py 7 # func.restype = c_char_p
8 # func(c_char_p("123"))
15 # func is called, but NOT before the result is actually built.
47 func = testdll._testfunc_p_p
48 func.restype = c_long
49 func.argtypes = None
55 func = prototype(("_testfunc_p_p", testdll),
59 func()
65 self.assertEqual(func(None), None)
66 self.assertEqual(func(input=None), None
215 def func(): pass function in function:ArrayTest.test
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/ctypes/test/
test_pointers.py 24 func = dll._testfunc_p_p
25 func.restype = c_long
28 ## func.argtypes = (POINTER(c_int),)
29 address = func(byref(i))
32 func.restype = POINTER(c_int)
33 res = func(pointer(i))
39 func = dll._testfunc_p_p
42 func.restype = POINTER(c_int)
43 func.argtypes = (POINTER(c_int),)
45 res = func(pointer(i)
65 def func(arg): function in function:PointersTestCase.test_callbacks_with_pointers
    [all...]
test_prototypes.py 7 # func.restype = c_char_p
8 # func(c_char_p("123"))
15 # func is called, but NOT before the result is actually built.
47 func = testdll._testfunc_p_p
48 func.restype = c_long
49 func.argtypes = None
55 func = prototype(("_testfunc_p_p", testdll),
59 func()
65 self.assertEqual(func(None), None)
66 self.assertEqual(func(input=None), None
215 def func(): pass function in function:ArrayTest.test
    [all...]
  /toolchain/binutils/binutils-2.27/include/opcode/
pj.h 47 void (*func) (struct pj_opc_info_t *, char *); member in union:pj_opc_info_t::__anon4881

Completed in 707 milliseconds

<<11121314151617181920>>