HomeSort by relevance Sort by last modified time
    Searched refs:subname (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /external/e2fsprogs/lib/support/
profile.h 68 (profile_t profile, const char *name, const char *subname,
72 (profile_t profile, const char *name, const char *subname,
77 (profile_t profile, const char *name, const char *subname,
82 (profile_t profile, const char *name, const char *subname,
87 (profile_t profile, const char *name, const char *subname,
profile.c 214 const char *subname, const char *subsubname,
1466 const char *subname, const char *subsubname
1770 const char *subname = 0; local
    [all...]
  /external/valgrind/coregrind/m_syswrap/
priv_syswrap-solaris.h 39 #define SC2(name, subname) \
40 name "_" subname
43 #define SC3(name, subname, subsubname) \
44 name "_" subname "_" subsubname
  /prebuilts/go/darwin-x86/src/testing/
match.go 50 func (m *matcher) fullName(c *common, subname string) (name string, ok, partial bool) {
51 name = subname
57 name = m.unique(c.name, rewrite(subname))
112 // unique creates a unique name for the given parent and subname by affixing it
114 func (m *matcher) unique(parent, subname string) string {
115 name := fmt.Sprintf("%s/%s", parent, subname)
116 empty := subname == ""
133 // rewrite rewrites a subname to having only printable characters and no white
  /prebuilts/go/linux-x86/src/testing/
match.go 50 func (m *matcher) fullName(c *common, subname string) (name string, ok, partial bool) {
51 name = subname
57 name = m.unique(c.name, rewrite(subname))
112 // unique creates a unique name for the given parent and subname by affixing it
114 func (m *matcher) unique(parent, subname string) string {
115 name := fmt.Sprintf("%s/%s", parent, subname)
116 empty := subname == ""
133 // rewrite rewrites a subname to having only printable characters and no white
  /external/selinux/libsemanage/src/
boolean_record.c 88 char *subname = selinux_boolean_sub(name); local
89 rc = sepol_bool_set_name(handle->sepolh, boolean, subname);
90 free(subname);
  /external/python/cpython3/Lib/test/test_importlib/import_/
test_packages.py 91 subname = name + '.b'
93 sys.modules[subname] = 'total bunk'
99 submodule = self.__import__(subname)
101 support.unload(subname)
  /hardware/libhardware/
hardware.c 145 * Check if a HAL with given name and subname exists, if so return 0, otherwise
149 const char *subname)
152 HAL_LIBRARY_PATH3, name, subname);
157 HAL_LIBRARY_PATH2, name, subname);
163 HAL_LIBRARY_PATH1, name, subname);
  /external/emma/ant/ant14/com/vladium/emma/
emmaTask.java 104 protected String getNestedTaskName (final String subname)
106 return getTaskName ().concat (".").concat (subname);
  /external/python/cpython3/Modules/
zipimport.c 293 PyObject *subname; local
297 subname = get_subname(fullname);
298 if (subname == NULL)
301 path = make_filename(self->prefix, subname);
302 Py_DECREF(subname);
350 PyObject *subname; local
355 subname = get_subname(fullname);
356 if (subname == NULL) {
360 is_dir = check_is_directory(self, self->prefix, subname);
369 self->prefix, subname);
488 PyObject *pkgpath, *fullpath, *subname; local
635 PyObject *fullname, *subname, *path, *fullpath; local
1457 PyObject *code = NULL, *toc_entry, *subname; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
zipimport.c 213 char *subname = strrchr(fullname, '.'); local
214 if (subname == NULL)
215 subname = fullname;
217 subname++;
218 return subname;
260 char *subname, path[MAXPATHLEN + 1]; local
264 subname = get_subname(fullname);
266 len = make_filename(PyString_AsString(self->prefix), subname, path);
340 char *subname = get_subname(fullname); local
347 subname);
476 char *fullname, *subname, path[MAXPATHLEN+1]; local
1143 char *subname, path[MAXPATHLEN + 1]; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
zipimport.c 213 char *subname = strrchr(fullname, '.'); local
214 if (subname == NULL)
215 subname = fullname;
217 subname++;
218 return subname;
260 char *subname, path[MAXPATHLEN + 1]; local
264 subname = get_subname(fullname);
266 len = make_filename(PyString_AsString(self->prefix), subname, path);
340 char *subname = get_subname(fullname); local
347 subname);
476 char *fullname, *subname, path[MAXPATHLEN+1]; local
1115 char *subname, path[MAXPATHLEN + 1]; local
    [all...]
  /external/python/cpython2/Modules/
zipimport.c 215 char *subname = strrchr(fullname, '.'); local
216 if (subname == NULL)
217 subname = fullname;
219 subname++;
220 return subname;
262 char *subname, path[MAXPATHLEN + 1]; local
266 subname = get_subname(fullname);
268 len = make_filename(PyString_AsString(self->prefix), subname, path);
342 char *subname = get_subname(fullname); local
349 subname);
478 char *fullname, *subname, path[MAXPATHLEN+1]; local
1237 char *subname, path[MAXPATHLEN + 1]; local
    [all...]
  /external/v8/tools/clang/rewrite_to_chrome_style/tests/
methods-expected.cc 91 namespace subname { namespace in namespace:blink
97 } // namespace subname
99 class SubnameChild : public subname::SubnameParent {
100 // This subclasses from blink::subname::SubnameParent and should be renamed.
methods-original.cc 95 namespace subname { namespace in namespace:blink
101 } // namespace subname
103 class SubnameChild : public subname::SubnameParent {
104 // This subclasses from blink::subname::SubnameParent and should be renamed.
  /external/python/cpython3/Lib/
pkgutil.py 170 subname = inspect.getmodulename(fn)
171 if subname=='__init__':
211 subname = fullname.split(".")[-1]
212 if subname != fullname and self.path is None:
219 file, filename, etc = imp.find_module(subname, path)
253 subname = inspect.getmodulename(fn)
254 if subname=='__init__':
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
mhlib.py 166 for subname in subnames:
167 fullsubname = os.path.join(fullname, subname)
169 name_subname = os.path.join(name, subname)
193 for subname in subnames:
194 if subname[0] == ',' or isnumeric(subname): continue
195 fullsubname = os.path.join(fullname, subname)
197 name_subname = os.path.join(name, subname)
228 for subname in os.listdir(fullname):
229 fullsubname = os.path.join(fullname, subname)
    [all...]
  /external/python/cpython2/Lib/
mhlib.py 166 for subname in subnames:
167 fullsubname = os.path.join(fullname, subname)
169 name_subname = os.path.join(name, subname)
193 for subname in subnames:
194 if subname[0] == ',' or isnumeric(subname): continue
195 fullsubname = os.path.join(fullname, subname)
197 name_subname = os.path.join(name, subname)
228 for subname in os.listdir(fullname):
229 fullsubname = os.path.join(fullname, subname)
    [all...]
  /external/python/cpython3/Lib/test/test_importlib/
test_util.py 474 subname = 'ham'
476 fullname, _ = util.submodule(name, subname, pkg_dir)
487 subname = 'ham'
490 fullname, _ = util.submodule(name, subname, pkg_dir)
501 subname = 'ham'
503 fullname, _ = util.submodule(name, subname, pkg_dir)
504 relname = '.' + subname
515 subname = 'ham'
517 fullname, _ = util.submodule(name, subname, pkg_dir)
518 relname = '.' + subname
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
mhlib.py 166 for subname in subnames:
167 fullsubname = os.path.join(fullname, subname)
169 name_subname = os.path.join(name, subname)
193 for subname in subnames:
194 if subname[0] == ',' or isnumeric(subname): continue
195 fullsubname = os.path.join(fullname, subname)
197 name_subname = os.path.join(name, subname)
228 for subname in os.listdir(fullname):
229 fullsubname = os.path.join(fullname, subname)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
mhlib.py 166 for subname in subnames:
167 fullsubname = os.path.join(fullname, subname)
169 name_subname = os.path.join(name, subname)
193 for subname in subnames:
194 if subname[0] == ',' or isnumeric(subname): continue
195 fullsubname = os.path.join(fullname, subname)
197 name_subname = os.path.join(name, subname)
228 for subname in os.listdir(fullname):
229 fullsubname = os.path.join(fullname, subname)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mhlib.py 166 for subname in subnames:
167 fullsubname = os.path.join(fullname, subname)
169 name_subname = os.path.join(name, subname)
193 for subname in subnames:
194 if subname[0] == ',' or isnumeric(subname): continue
195 fullsubname = os.path.join(fullname, subname)
197 name_subname = os.path.join(name, subname)
228 for subname in os.listdir(fullname):
229 fullsubname = os.path.join(fullname, subname)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mhlib.py 166 for subname in subnames:
167 fullsubname = os.path.join(fullname, subname)
169 name_subname = os.path.join(name, subname)
193 for subname in subnames:
194 if subname[0] == ',' or isnumeric(subname): continue
195 fullsubname = os.path.join(fullname, subname)
197 name_subname = os.path.join(name, subname)
228 for subname in os.listdir(fullname):
229 fullsubname = os.path.join(fullname, subname)
    [all...]
  /external/tensorflow/tensorflow/tools/docs/
generate_lib.py 120 subname = str(full_name)
122 subname = subname[:subname.rindex('.')]
123 if tf_inspect.ismodule(parser_config.index[subname]):
124 module_children.setdefault(subname, []).append(full_name)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_importhooks.py 110 subname = fullname.split(".")[-1]
111 if subname != fullname and self.path is None:
118 file, filename, stuff = imp.find_module(subname, path)

Completed in 1424 milliseconds

1 2 3 4