HomeSort by relevance Sort by last modified time
    Searched refs:imp (Results 26 - 50 of 203) sorted by null

12 3 4 5 6 7 8 9

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_fork1.py 4 import imp namespace
37 imp.acquire_lock()
42 imp.release_lock()
test_threaded_import.py 57 import imp namespace
58 if imp.lock_held():
test_compileall.py 2 import imp namespace
31 compare = struct.pack('<4sl', imp.get_magic(), mtime)
52 self.recreation_check(struct.pack('<4sl', imp.get_magic(), 1))
  /external/pixman/test/
combiner-test.c 94 lookup_combiner (pixman_implementation_t *imp, pixman_op_t op,
102 f = imp->combine_float_ca[op];
104 f = imp->combine_float[op];
106 imp = imp->fallback;
  /external/pixman/pixman/
pixman-noop.c 34 noop_composite (pixman_implementation_t *imp,
63 noop_src_iter_init (pixman_implementation_t *imp, pixman_iter_t *iter)
135 noop_dest_iter_init (pixman_implementation_t *imp, pixman_iter_t *iter)
169 pixman_implementation_t *imp = local
172 imp->src_iter_init = noop_src_iter_init;
173 imp->dest_iter_init = noop_dest_iter_init;
175 return imp;
pixman-vmx.c 267 vmx_combine_over_u (pixman_implementation_t *imp,
360 vmx_combine_over_reverse_u (pixman_implementation_t *imp,
449 vmx_combine_in_u (pixman_implementation_t *imp,
540 vmx_combine_in_reverse_u (pixman_implementation_t *imp,
630 vmx_combine_out_u (pixman_implementation_t *imp,
722 vmx_combine_out_reverse_u (pixman_implementation_t *imp,
821 vmx_combine_atop_u (pixman_implementation_t *imp,
920 vmx_combine_atop_reverse_u (pixman_implementation_t *imp,
1019 vmx_combine_xor_u (pixman_implementation_t *imp,
1108 vmx_combine_add_u (pixman_implementation_t *imp,
1618 pixman_implementation_t *imp = _pixman_implementation_create (fallback, vmx_fast_paths); local
    [all...]
pixman-mmx.c 724 mmx_combine_over_u (pixman_implementation_t *imp,
756 mmx_combine_over_reverse_u (pixman_implementation_t *imp,
783 mmx_combine_in_u (pixman_implementation_t *imp,
812 mmx_combine_in_reverse_u (pixman_implementation_t *imp,
840 mmx_combine_out_u (pixman_implementation_t *imp,
869 mmx_combine_out_reverse_u (pixman_implementation_t *imp,
899 mmx_combine_atop_u (pixman_implementation_t *imp,
929 mmx_combine_atop_reverse_u (pixman_implementation_t *imp,
961 mmx_combine_xor_u (pixman_implementation_t *imp,
992 mmx_combine_add_u (pixman_implementation_t *imp,
4048 pixman_implementation_t *imp = _pixman_implementation_create (fallback, mmx_fast_paths); local
    [all...]
pixman-fast-path.c 110 fast_composite_over_x888_8_8888 (pixman_implementation_t *imp,
160 fast_composite_in_n_8_8 (pixman_implementation_t *imp,
171 src = _pixman_image_get_solid (imp, src_image, dest_image->bits.format);
228 fast_composite_in_8_8 (pixman_implementation_t *imp,
265 fast_composite_over_n_8_8888 (pixman_implementation_t *imp,
275 src = _pixman_image_get_solid (imp, src_image, dest_image->bits.format);
313 fast_composite_add_n_8888_8888_ca (pixman_implementation_t *imp,
323 src = _pixman_image_get_solid (imp, src_image, dest_image->bits.format);
359 fast_composite_over_n_8888_8888_ca (pixman_implementation_t *imp,
369 src = _pixman_image_get_solid (imp, src_image, dest_image->bits.format)
2351 pixman_implementation_t *imp = _pixman_implementation_create (fallback, c_fast_paths); local
    [all...]
  /external/iproute2/lib/
ll_map.c 52 struct ll_cache *im, **imp; local
67 for (imp = &idx_head[h]; (im=*imp)!=NULL; imp = &im->idx_next)
75 im->idx_next = *imp;
77 *imp = im;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/
execfile.py 3 import imp, os, sys namespace
43 searchpath = None # "top-level search" in imp.find_module()
44 openfile, pathname, _ = imp.find_module(name, searchpath)
59 openfile, pathname, _ = imp.find_module(name, searchpath)
82 main_mod = imp.new_module('__main__')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_threaded_import.py 57 import imp namespace
58 if imp.lock_held():
test_compileall.py 2 import imp namespace
31 compare = struct.pack('<4sl', imp.get_magic(), mtime)
52 self.recreation_check(struct.pack('<4sl', imp.get_magic(), 1))
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
ihooks.py 6 While the built-in module imp exports interfaces to the built-in
29 the imp module's find_module interface, while HookableModuleLoader
31 use the imp module's load_* interfaces to actually load the module.
57 import imp namespace
67 from imp import C_EXTENSION, PY_SOURCE, PY_COMPILED
68 from imp import C_BUILTIN, PY_FROZEN, PKG_DIRECTORY
108 The interface is a little more convenient than imp's:
130 return imp.find_module(name, [dir])
136 if imp.is_builtin(name):
138 if imp.is_frozen(name)
    [all...]
pkgutil.py 8 import imp namespace
24 if magic != imp.get_magic():
186 file, filename, etc = imp.find_module(subname, path)
246 mod = imp.load_module(fullname, self.file, self.filename, self.etc)
260 if mod_type==imp.PY_SOURCE:
262 elif mod_type in (imp.PY_COMPILED, imp.C_EXTENSION):
275 return self.etc[2]==imp.PKG_DIRECTORY
281 if mod_type==imp.PY_SOURCE:
284 elif mod_type==imp.PY_COMPILED
    [all...]
imputil.py 17 import imp ### not available in Jython? namespace
80 for desc in imp.get_suffixes():
81 if desc[2] == imp.C_EXTENSION:
293 module = imp.new_module(fqname)
441 f.write(imp.get_magic())
511 if imp.is_builtin(modname):
512 type = imp.C_BUILTIN
513 elif imp.is_frozen(modname):
514 type = imp.PY_FROZEN
520 module = imp.load_module(modname, None, modname, ('', '', type)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
ihooks.py 6 While the built-in module imp exports interfaces to the built-in
29 the imp module's find_module interface, while HookableModuleLoader
31 use the imp module's load_* interfaces to actually load the module.
57 import imp namespace
67 from imp import C_EXTENSION, PY_SOURCE, PY_COMPILED
68 from imp import C_BUILTIN, PY_FROZEN, PKG_DIRECTORY
108 The interface is a little more convenient than imp's:
130 return imp.find_module(name, [dir])
136 if imp.is_builtin(name):
138 if imp.is_frozen(name)
    [all...]
pkgutil.py 8 import imp namespace
24 if magic != imp.get_magic():
186 file, filename, etc = imp.find_module(subname, path)
246 mod = imp.load_module(fullname, self.file, self.filename, self.etc)
260 if mod_type==imp.PY_SOURCE:
262 elif mod_type in (imp.PY_COMPILED, imp.C_EXTENSION):
275 return self.etc[2]==imp.PKG_DIRECTORY
281 if mod_type==imp.PY_SOURCE:
284 elif mod_type==imp.PY_COMPILED
    [all...]
imputil.py 17 import imp ### not available in Jython? namespace
80 for desc in imp.get_suffixes():
81 if desc[2] == imp.C_EXTENSION:
293 module = imp.new_module(fqname)
441 f.write(imp.get_magic())
511 if imp.is_builtin(modname):
512 type = imp.C_BUILTIN
513 elif imp.is_frozen(modname):
514 type = imp.PY_FROZEN
520 module = imp.load_module(modname, None, modname, ('', '', type)
    [all...]
  /external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
p3-0x.cpp 47 auto imp = m.getImplementation<int, int, int>(); local
  /external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
template_expander.py 8 import imp namespace
27 imp.find_module("jinja2")
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
__init__.py 99 from org.python.core import imp namespace
100 drv_module = imp.importName(parser_name, 0, globals())
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
__init__.py 99 from org.python.core import imp namespace
100 drv_module = imp.importName(parser_name, 0, globals())
  /external/lldb/include/lldb/Utility/
SharingPtr.h 25 namespace imp { namespace in namespace:lldb_private
137 imp::shared_count* cntrl_;
143 template<class Y> explicit SharingPtr(Y* p, imp::shared_count *ctrl_block);
202 typedef imp::shared_ptr_pointer<Y*> _CntrlBlk;
209 SharingPtr<T>::SharingPtr(Y* p, imp::shared_count *cntrl_block)
302 typedef imp::shared_ptr_emplace<T> CntrlBlk;
314 typedef imp::shared_ptr_emplace<T> CntrlBlk;
326 typedef imp::shared_ptr_emplace<T> CntrlBlk;
338 typedef imp::shared_ptr_emplace<T> CntrlBlk;
350 typedef imp::shared_ptr_emplace<T> CntrlBlk
    [all...]
  /external/antlr/antlr-3.4/runtime/Python/
setup.py 91 import imp namespace
110 = imp.find_module(testID, [testDir])
112 testMod = imp.load_module(
179 import imp namespace
244 = imp.find_module(testID, [testDir])
246 testMod = imp.load_module(
  /external/openssl/crypto/threads/
netware.bat 38 echo IMPORT @%IMPORTS%\clib.imp >> mttest.def
39 echo IMPORT @%IMPORTS%\threads.imp >> mttest.def
40 echo IMPORT @%IMPORTS%\ws2nlm.imp >> mttest.def

Completed in 668 milliseconds

12 3 4 5 6 7 8 9