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

  /external/chromium_org/third_party/markdown/
__init__.py 206 def build_extension(self, ext_name, configs = []):
216 pos = ext_name.find("(") # find the first "("
218 ext_args = ext_name[pos+1:-1]
219 ext_name = ext_name[:pos]
224 module_name = ext_name
225 if '.' not in ext_name:
226 module_name = '.'.join(['third_party.markdown.extensions', ext_name])
232 module_name_old_style = '_'.join(['mdx', ext_name])
237 % (ext_name, module_name, module_name_old_style
    [all...]
  /external/chromium_org/chrome/browser/history/
download_row.cc 38 const std::string& ext_name)
57 by_ext_name(ext_name) {
download_row.h 44 const std::string& ext_name);
  /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...]
  /external/chromium_org/tools/telemetry/telemetry/core/
discover.py 129 root_name, ext_name = os.path.splitext(file_path)
132 if ext_name != '.py':
  /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...]
  /external/chromium_org/tools/telemetry/telemetry/page/
page_set.py 83 _, ext_name = os.path.splitext(file_path)
84 if ext_name == '.py':
  /external/chromium_org/third_party/libxslt/libxslt/
extensions.c 325 xmlChar *ext_name; local
355 ext_name = xmlStrdup(URI);
357 ext_name = xmlStrdup(protocol + 3);
359 if (ext_name == NULL) {
363 i = ext_name;
390 ext_directory, ext_name, LIBXML_MODULE_EXTENSION);
405 xmlFree(ext_name);
418 xmlFree(ext_name);
423 regfunc_name = xmlStrdup(ext_name);
453 xmlFree(ext_name);
    [all...]
  /external/chromium_org/ui/shell_dialogs/
select_file_dialog_win.cc 160 std::wstring ext_name = first_extension; local
161 size_t ext_index = ext_name.find_first_not_of(L'.');
163 ext_name = ext_name.substr(ext_index);
172 base::i18n::ToUpper(base::WideToUTF16(ext_name)),
173 ext_name);
176 desc = L"*." + ext_name;
    [all...]
  /external/chromium_org/chrome/browser/profile_resetter/
resettable_settings_snapshot.cc 189 std::string ext_name; local
190 base::ReplaceChars(i->second, "\"", "\'", &ext_name);
191 list->AppendString(i->first + ";" + 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/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

Completed in 466 milliseconds