HomeSort by relevance Sort by last modified time
    Searched refs:ext_name (Results 1 - 14 of 14) sorted by null

  /external/markdown/markdown/
__init__.py 508 def load_extension(ext_name, configs = []):
518 pos = ext_name.find("(") # find the first "("
520 ext_args = ext_name[pos+1:-1]
521 ext_name = ext_name[:pos]
527 module_name_new_style = '.'.join([ext_module, ext_name])
528 module_name_old_style = '_'.join(['mdx', ext_name])
538 % (ext_name, module_name_new_style, module_name_old_style))
547 message(CRITICAL, "Failed to initiate extension '%s'" % ext_name)
553 for ext_name in ext_names
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/command/
build_ext.py 287 # (ext_name, build_info)
346 where the tuples are (ext_name, build_info), which are converted to
366 ext_name, build_info = ext
368 log.warn(("old-style (ext_name, build_info) tuple found in "
370 "-- please convert to Extension instance" % ext_name))
372 if not (isinstance(ext_name, str) and
373 extension_name_re.match(ext_name)):
383 # OK, the (ext_name, build_info) dict is type-safe: convert it
385 ext = Extension(ext_name, build_info['sources'])
625 def get_ext_fullpath(self, ext_name):
    [all...]
  /prebuilts/ndk/r13/sources/third_party/vulkan/src/
vk-layer-generate.py 64 def wsi_name(ext_name):
66 if 'Xcb' in ext_name:
68 elif 'Xlib' in ext_name:
70 elif 'Win32' in ext_name:
72 elif 'Mir' in ext_name:
74 elif 'Wayland' in ext_name:
76 elif 'Android' in ext_name:
82 def wsi_ifdef(ext_name):
83 wsi_prefix = wsi_name(ext_name)
89 def wsi_endif(ext_name)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/distutils/command/
build_ext.py 289 # (ext_name, build_info)
348 where the tuples are (ext_name, build_info), which are converted to
368 ext_name, build_info = ext
370 log.warn(("old-style (ext_name, build_info) tuple found in "
372 "-- please convert to Extension instance" % ext_name))
374 if not (isinstance(ext_name, str) and
375 extension_name_re.match(ext_name)):
385 # OK, the (ext_name, build_info) dict is type-safe: convert it
387 ext = Extension(ext_name, build_info['sources'])
627 def get_ext_fullpath(self, ext_name)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/distutils/command/
build_ext.py 289 # (ext_name, build_info)
348 where the tuples are (ext_name, build_info), which are converted to
368 ext_name, build_info = ext
370 log.warn(("old-style (ext_name, build_info) tuple found in "
372 "-- please convert to Extension instance" % ext_name))
374 if not (isinstance(ext_name, str) and
375 extension_name_re.match(ext_name)):
385 # OK, the (ext_name, build_info) dict is type-safe: convert it
387 ext = Extension(ext_name, build_info['sources'])
627 def get_ext_fullpath(self, ext_name)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
build_ext.py 289 # (ext_name, build_info)
348 where the tuples are (ext_name, build_info), which are converted to
368 ext_name, build_info = ext
370 log.warn(("old-style (ext_name, build_info) tuple found in "
372 "-- please convert to Extension instance" % ext_name))
374 if not (isinstance(ext_name, str) and
375 extension_name_re.match(ext_name)):
385 # OK, the (ext_name, build_info) dict is type-safe: convert it
387 ext = Extension(ext_name, build_info['sources'])
627 def get_ext_fullpath(self, ext_name)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/command/
build_ext.py 289 # (ext_name, build_info)
348 where the tuples are (ext_name, build_info), which are converted to
368 ext_name, build_info = ext
370 log.warn(("old-style (ext_name, build_info) tuple found in "
372 "-- please convert to Extension instance" % ext_name))
374 if not (isinstance(ext_name, str) and
375 extension_name_re.match(ext_name)):
385 # OK, the (ext_name, build_info) dict is type-safe: convert it
387 ext = Extension(ext_name, build_info['sources'])
627 def get_ext_fullpath(self, ext_name)
    [all...]
  /external/iptables/libxtables/
xtoptions.c 187 cb->ext_name, entry->name, lmin, lmax);
224 cb->ext_name, entry->name, entry->min, entry->max);
306 cb->ext_name, entry->name, maxiter);
316 cb->ext_name, entry->name, arg, lmax);
321 cb->ext_name, entry->name, end);
438 cb->ext_name, cb->entry->name);
444 cb->ext_name, cb->entry->name);
449 cb->ext_name, cb->entry->name);
642 cb->ext_name, entry->name, maxiter);
716 cb->ext_name, entry->name, 0, cb->val.hlen)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/tests/
test_build_ext.py 416 ext_name = os.path.join('UpdateManager', 'fdsend')
417 ext_path = cmd.get_ext_fullpath(ext_name)
429 ext_name = 'UpdateManager/fdsend'
430 ext_path = cmd.get_ext_fullpath(ext_name)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/tests/
test_build_ext.py 423 ext_name = os.path.join('UpdateManager', 'fdsend')
424 ext_path = cmd.get_ext_fullpath(ext_name)
436 ext_name = 'UpdateManager/fdsend'
437 ext_path = cmd.get_ext_fullpath(ext_name)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/tests/
test_build_ext.py 423 ext_name = os.path.join('UpdateManager', 'fdsend')
424 ext_path = cmd.get_ext_fullpath(ext_name)
436 ext_name = 'UpdateManager/fdsend'
437 ext_path = cmd.get_ext_fullpath(ext_name)
  /external/iproute2/include/
xtables.h 137 * @ext_name: name of extension currently being processed
148 const char *arg, *ext_name; member in struct:xt_option_call
182 * @ext_name: name of extension currently being processed
189 const char *ext_name; member in struct:xt_fcheck_call
  /external/iptables/include/
xtables.h 137 * @ext_name: name of extension currently being processed
148 const char *arg, *ext_name; member in struct:xt_option_call
182 * @ext_name: name of extension currently being processed
189 const char *ext_name; member in struct:xt_fcheck_call
  /external/openssh/
sftp-server.c 118 const char *ext_name; /* extended request name */ member in struct:sftp_handler
    [all...]

Completed in 641 milliseconds