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

  /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);
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/X11/extensions/
Xext.h 37 _Xconst char* /* ext_name */,
47 _Xconst char* /* ext_name */
extutil.h 128 char* /* ext_name */,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/X11/extensions/
Xext.h 37 _Xconst char* /* ext_name */,
47 _Xconst char* /* ext_name */
extutil.h 128 char* /* ext_name */,
  /external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
Xext.h 42 _Xconst char* /* ext_name */
extutil.h 157 char* /* ext_name */,
  /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/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/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/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/chrome/browser/profile_resetter/
resettable_settings_snapshot.cc 193 std::string ext_name; local
194 base::ReplaceChars(i->second, "\"", "\'", &ext_name);
195 list->AppendString(i->first + ";" + 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
  /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 127 std::wstring ext_name = first_extension; local
128 size_t ext_index = ext_name.find_first_not_of(L'.');
130 ext_name = ext_name.substr(ext_index);
139 base::i18n::ToUpper(base::WideToUTF16(ext_name)),
140 ext_name);
143 desc = L"*." + 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/chromium_org/third_party/angle/src/compiler/preprocessor/
DirectiveParser.cpp 640 EXT_NAME,
647 int state = EXT_NAME;
654 case EXT_NAME:
  /external/chromium_org/chrome/browser/safe_browsing/incident_reporting/
last_download_finder_unittest.cc 230 std::string()); // ext_name
  /external/chromium_org/third_party/cython/src/
runtests.py 806 def get_ext_fullpath(ext_name, self=build_extension):
808 fullname = self.get_ext_fullname(ext_name)
    [all...]

Completed in 1177 milliseconds