HomeSort by relevance Sort by last modified time
    Searched defs:get_data (Results 26 - 50 of 74) sorted by null

12 3

  /external/python/cpython3/Lib/
pkgutil.py 16 'walk_packages', 'iter_modules', 'get_data',
290 def get_data(self, pathname): member in class:ImpLoader
594 def get_data(package, resource): function
597 This is a wrapper round the PEP 302 loader get_data API. The package
613 which does not support get_data(), then None is returned.
620 if loader is None or not hasattr(loader, 'get_data'):
628 # Modify the resource name to be compatible with the loader.get_data
634 return loader.get_data(resource_name)
plistlib.py 358 def get_data(self): member in class:_PlistParser
380 self.current_key = self.get_data()
397 self.add_object(int(self.get_data()))
400 self.add_object(float(self.get_data()))
403 self.add_object(self.get_data())
407 self.add_object(_decode_base64(self.get_data()))
410 self.add_object(Data.fromBase64(self.get_data()))
413 self.add_object(_date_from_string(self.get_data()))
  /external/python/cpython3/Lib/test/
test_pkgutil.py 51 res1 = pkgutil.get_data(pkg, 'res.txt')
53 res2 = pkgutil.get_data(pkg, 'sub/res.txt')
78 res1 = pkgutil.get_data(pkg, 'res.txt')
80 res2 = pkgutil.get_data(pkg, 'sub/res.txt')
191 def get_data(self, path): member in class:PkgutilPEP302Tests.MyTestLoader
210 self.assertEqual(pkgutil.get_data('foo', 'dummy'), "Hello, world!")
214 # Ensure that get_data works without reloading - the "loads" module
219 self.assertEqual(pkgutil.get_data('foo', 'dummy'), "Hello, world!")
  /prebuilts/gdb/darwin-x86/lib/python2.7/
pkgutil.py 14 'walk_packages', 'iter_modules', 'get_data',
254 def get_data(self, pathname): member in class:ImpLoader
556 def get_data(package, resource): function
559 This is a wrapper round the PEP 302 loader get_data API. The package
575 which does not support get_data(), then None is returned.
579 if loader is None or not hasattr(loader, 'get_data'):
585 # Modify the resource name to be compatible with the loader.get_data
591 return loader.get_data(resource_name)
urllib2.py 245 def get_data(self): member in class:Request
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
pkgutil.py 14 'walk_packages', 'iter_modules', 'get_data',
254 def get_data(self, pathname): member in class:ImpLoader
556 def get_data(package, resource): function
559 This is a wrapper round the PEP 302 loader get_data API. The package
575 which does not support get_data(), then None is returned.
579 if loader is None or not hasattr(loader, 'get_data'):
585 # Modify the resource name to be compatible with the loader.get_data
591 return loader.get_data(resource_name)
urllib2.py 245 def get_data(self): member in class:Request
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
pkgutil.py 14 'walk_packages', 'iter_modules', 'get_data',
254 def get_data(self, pathname): member in class:ImpLoader
556 def get_data(package, resource): function
559 This is a wrapper round the PEP 302 loader get_data API. The package
575 which does not support get_data(), then None is returned.
579 if loader is None or not hasattr(loader, 'get_data'):
585 # Modify the resource name to be compatible with the loader.get_data
591 return loader.get_data(resource_name)
urllib2.py 245 def get_data(self): member in class:Request
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
pkgutil.py 14 'walk_packages', 'iter_modules', 'get_data',
254 def get_data(self, pathname): member in class:ImpLoader
556 def get_data(package, resource): function
559 This is a wrapper round the PEP 302 loader get_data API. The package
575 which does not support get_data(), then None is returned.
579 if loader is None or not hasattr(loader, 'get_data'):
585 # Modify the resource name to be compatible with the loader.get_data
591 return loader.get_data(resource_name)
urllib2.py 245 def get_data(self): member in class:Request
    [all...]
  /external/libcxx/test/support/
test_allocator.h 110 int get_data() const { return data_; } function in class:test_allocator
202 int get_data() const { return data_; } function in class:test_allocator
  /external/libpng/contrib/pngminus/
pnm2png.c 70 png_uint_32 get_data (FILE *pnm_file, int depth);
408 *pix_ptr++ = get_data (pnm_file, 8);
417 *pix_ptr++ = get_data (pnm_file, bit_depth);
434 *pix_ptr++ = get_data (alpha_file, alpha_depth);
574 * get_data() - takes first byte and converts into next pixel value,
579 png_uint_32 get_data (FILE *pnm_file, int depth) function
  /external/scapy/scapy/layers/
lltd.py 800 To get the result, use .get_data()
836 def get_data(self): member in class:LargeTlvBuilder
  /external/scapy/scapy/modules/krack/
automaton.py 663 def get_data(self, pkt): member in class:KrackAP
681 @ATMT.action(get_data)
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
test_allocator.h 110 int get_data() const { return data_; } function in class:test_allocator
202 int get_data() const { return data_; } function in class:test_allocator
  /hardware/broadcom/wlan/bcmdhd/wifi_hal/
cpp_bindings.h 63 return get_data(NL80211_ATTR_VENDOR_DATA);
100 void *get_data(int attribute) { function in class:WifiEvent
140 void* get_data() { function in class:nl_iterator
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
zipimport.c 48 static PyObject *get_data(char *archive, PyObject *toc_entry);
429 if (!PyArg_ParseTuple(args, "s:zipimporter.get_data", &path))
456 return get_data(PyString_AsString(self->archive), toc_entry);
506 return get_data(PyString_AsString(self->archive), toc_entry);
530 "get_data(pathname) -> string with file data.\n\
565 {"get_data", zipimporter_get_data, METH_VARARGS,
847 get_data(char *archive, PyObject *toc_entry) function
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
urllib2.py 235 def get_data(self): member in class:Request
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
zipimport.c 48 static PyObject *get_data(char *archive, PyObject *toc_entry);
429 if (!PyArg_ParseTuple(args, "s:zipimporter.get_data", &path))
456 return get_data(PyString_AsString(self->archive), toc_entry);
506 return get_data(PyString_AsString(self->archive), toc_entry);
530 "get_data(pathname) -> string with file data.\n\
565 {"get_data", zipimporter_get_data, METH_VARARGS,
834 get_data(char *archive, PyObject *toc_entry) function
    [all...]
  /external/python/cpython2/Modules/
zipimport.c 50 PyObject *get_data(const char *archive, PyObject *toc_entry);
431 if (!PyArg_ParseTuple(args, "s:zipimporter.get_data", &path))
458 return get_data(PyString_AsString(self->archive), toc_entry);
508 return get_data(PyString_AsString(self->archive), toc_entry);
532 "get_data(pathname) -> string with file data.\n\
567 {"get_data", zipimporter_get_data, METH_VARARGS,
918 get_data(const char *archive, PyObject *toc_entry) function
    [all...]
  /external/python/cpython3/Lib/importlib/
_bootstrap_external.py 729 source_bytes = self.get_data(path)
731 raise ImportError('source not available through get_data()',
764 data = self.get_data(bytecode_path)
780 source_bytes = self.get_data(source_path)
830 def get_data(self, path): member in class:FileLoader
    [all...]
  /hardware/qcom/wlan/qcwcn/wifi_hal/
cpp_bindings.h 63 return get_data(NL80211_ATTR_VENDOR_DATA);
100 void *get_data(int attribute) { function in class:WifiEvent
140 void* get_data() { function in class:nl_iterator
  /external/autotest/client/common_lib/cros/
dev_server.py 245 def get_data(self): member in class:MarkupStripper
262 return strip.get_data()
    [all...]
  /external/python/cpython2/Lib/
urllib2.py 270 def get_data(self): member in class:Request
    [all...]

Completed in 1750 milliseconds

12 3