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

1 2 3 4 5 6 7

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
linecache.py 56 size, mtime, lines, fullname = cache[filename]
60 stat = os.stat(fullname)
78 fullname = filename
80 stat = os.stat(fullname)
102 [line+'\n' for line in data.splitlines()], fullname
115 fullname = os.path.join(dirname, basename)
120 stat = os.stat(fullname)
127 with open(fullname, 'rU') as fp:
134 cache[filename] = size, mtime, lines, fullname
compileall.py 44 fullname = os.path.join(dir, name)
46 fullname = fullname.replace('\\','/')
51 if not os.path.isdir(fullname):
52 if not compile_file(fullname, ddir, force, rx, quiet):
56 os.path.isdir(fullname) and \
57 not os.path.islink(fullname):
58 if not compile_dir(fullname, maxlevels - 1, dfile, force, rx,
63 def compile_file(fullname, ddir=None, force=0, rx=None, quiet=0):
66 Arguments (only fullname is required)
    [all...]
pkgutil.py 176 def find_module(self, fullname, path=None):
178 subname = fullname.split(".")[-1]
179 if subname != fullname and self.path is None:
189 return ImpLoader(fullname, file, filename, etc)
237 def __init__(self, fullname, file, filename, etc):
240 self.fullname = fullname
243 def load_module(self, fullname):
246 mod = imp.load_module(fullname, self.file, self.filename, self.etc)
265 def _fix_name(self, fullname)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
linecache.py 56 size, mtime, lines, fullname = cache[filename]
60 stat = os.stat(fullname)
78 fullname = filename
80 stat = os.stat(fullname)
102 [line+'\n' for line in data.splitlines()], fullname
115 fullname = os.path.join(dirname, basename)
120 stat = os.stat(fullname)
127 with open(fullname, 'rU') as fp:
134 cache[filename] = size, mtime, lines, fullname
compileall.py 44 fullname = os.path.join(dir, name)
46 fullname = fullname.replace('\\','/')
51 if not os.path.isdir(fullname):
52 if not compile_file(fullname, ddir, force, rx, quiet):
56 os.path.isdir(fullname) and \
57 not os.path.islink(fullname):
58 if not compile_dir(fullname, maxlevels - 1, dfile, force, rx,
63 def compile_file(fullname, ddir=None, force=0, rx=None, quiet=0):
66 Arguments (only fullname is required)
    [all...]
pkgutil.py 176 def find_module(self, fullname, path=None):
178 subname = fullname.split(".")[-1]
179 if subname != fullname and self.path is None:
189 return ImpLoader(fullname, file, filename, etc)
237 def __init__(self, fullname, file, filename, etc):
240 self.fullname = fullname
243 def load_module(self, fullname):
246 mod = imp.load_module(fullname, self.file, self.filename, self.etc)
265 def _fix_name(self, fullname)
    [all...]
  /external/chromium_org/sdch/open-vcdiff/packages/
rpm.sh 29 fullname="${PACKAGE}-${VERSION}"
30 archive=../$fullname.tar.gz
53 RPM_SOURCE_DIR="/tmp/rpmsource-$fullname"
54 RPM_BUILD_DIR="/tmp/rpmbuild-$fullname"
  /external/cmockery/cmockery_0_1_2/packages/
rpm.sh 15 fullname="${PACKAGE}-${VERSION}"
16 archive=../$fullname.tar.gz
39 RPM_SOURCE_DIR="/tmp/rpmsource-$fullname"
40 RPM_BUILD_DIR="/tmp/rpmbuild-$fullname"
  /external/e2fsprogs/debugfs/
dump.c 201 const char *fullname)
243 if (symlink(buf, fullname) == -1) {
244 com_err("rdump", errno, "while creating symlink %s -> %s", buf, fullname);
257 char *fullname; local
261 fullname = malloc(strlen(dumproot) + strlen(name) + 2);
262 if (!fullname) {
266 sprintf(fullname, "%s/%s", dumproot, name);
269 rdump_symlink(ino, inode, fullname);
272 fd = open(fullname, O_WRONLY | O_CREAT | O_TRUNC | O_LARGEFILE, S_IRWXU);
274 com_err("rdump", errno, "while dumping %s", fullname);
    [all...]
  /external/chromium_org/third_party/tcmalloc/vendor/packages/
rpm.sh 15 fullname="${PACKAGE}-${VERSION}"
16 archive=../$fullname.tar.gz
39 RPM_SOURCE_DIR="/tmp/rpmsource-$fullname"
40 RPM_BUILD_DIR="/tmp/rpmbuild-$fullname"
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_importhooks.py 62 def find_module(self, fullname, path=None):
63 if fullname in self.modules:
68 def load_module(self, fullname):
69 ispkg, code = self.modules[fullname]
70 mod = sys.modules.setdefault(fullname,imp.new_module(fullname))
94 def find_module(self, fullname, path=None):
95 if fullname in self.namestoblock:
98 def load_module(self, fullname):
109 def find_module(self, fullname, path=None)
    [all...]
test_pkg.py 16 fullname = os.path.join(root, name)
17 if os.path.isdir(fullname) and not os.path.islink(fullname):
18 cleanout(fullname)
20 os.remove(fullname)
74 fullname = root
76 fullname = os.path.join(fullname, c)
78 os.mkdir(fullname)
80 f = open(fullname, "w"
    [all...]
test_importlib.py 94 def find_module(self, fullname, path=None):
95 if fullname not in self.modules:
100 def load_module(self, fullname):
101 if fullname not in self.modules:
104 sys.modules[fullname] = self.modules[fullname]
105 return self.modules[fullname]
test_pkgutil.py 95 def load_module(self, fullname):
97 mod = sys.modules.setdefault(fullname, imp.new_module(fullname))
110 def find_module(self, fullname, path=None):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_importhooks.py 62 def find_module(self, fullname, path=None):
63 if fullname in self.modules:
68 def load_module(self, fullname):
69 ispkg, code = self.modules[fullname]
70 mod = sys.modules.setdefault(fullname,imp.new_module(fullname))
94 def find_module(self, fullname, path=None):
95 if fullname in self.namestoblock:
98 def load_module(self, fullname):
109 def find_module(self, fullname, path=None)
    [all...]
test_pkg.py 16 fullname = os.path.join(root, name)
17 if os.path.isdir(fullname) and not os.path.islink(fullname):
18 cleanout(fullname)
20 os.remove(fullname)
74 fullname = root
76 fullname = os.path.join(fullname, c)
78 os.mkdir(fullname)
80 f = open(fullname, "w"
    [all...]
test_importlib.py 94 def find_module(self, fullname, path=None):
95 if fullname not in self.modules:
100 def load_module(self, fullname):
101 if fullname not in self.modules:
104 sys.modules[fullname] = self.modules[fullname]
105 return self.modules[fullname]
test_pkgutil.py 95 def load_module(self, fullname):
97 mod = sys.modules.setdefault(fullname, imp.new_module(fullname))
110 def find_module(self, fullname, path=None):
  /external/oprofile/opcontrol/
opcontrol.cpp 419 char fullname[512]; local
424 snprintf(fullname, 512, OP_DRIVER_BASE"/%d/%s", counter, file);
427 snprintf(fullname, 512, OP_DRIVER_BASE"/%s", file);
429 fd = open(fullname, O_WRONLY);
431 fprintf(stderr, "Cannot open %s: %s\n", fullname, strerror(errno));
440 verbose("Configure %s (%s)\n", fullname, content);
449 char fullname[512]; local
455 sprintf(fullname, OP_DRIVER_BASE"/%d/enabled", i);
456 num = read_num(fullname);
461 sprintf(fullname, OP_DRIVER_BASE"/%d/event", i)
    [all...]
  /cts/common/host-side/xml-plan-generator/src/com/android/compatibility/common/xmlgenerator/
XmlPlanGenerator.java 131 final String fullname = name + suiteName + "."; local
132 writeTestSuites(writer, suite.getTestSuites(), fullname);
133 writeTestCases(writer, suite.getTestCases(), fullname);
142 final String fullname = name + caseName; local
143 writeTests(writer, testCase.getTests(), fullname);
155 final String fullname = name + "#" + testName; local
156 if (isKnownFailure(mExpectations, fullname)) {
163 public static boolean isKnownFailure(ExpectationStore store, String fullname) {
164 return store != null && store.get(fullname) != Expectation.SUCCESS;
  /frameworks/base/tools/apilint/
apilint.py 124 self.fullname = raw[raw.index("class")+1]
126 self.fullname = raw[raw.index("interface")+1]
135 self.fullname = self.pkg.name + "." + self.fullname
136 self.name = self.fullname[self.fullname.rindex(".")+1:]
176 api[clazz.fullname] = clazz
193 sig = "%s-%s-%s" % (clazz.fullname, repr(detail), msg)
216 if re.match("android\.R\.[a-z]+", clazz.fullname): return
232 if clazz.fullname.startswith("android.opengl"): retur
    [all...]
  /external/valgrind/main/coregrind/
launcher-linux.c 84 char *fullname; local
92 /* Make the size of the FULLNAME buffer large enough. */
95 fullname = malloc(need);
96 if (fullname == NULL)
97 barf("malloc of fullname failed.");
103 strcpy(fullname, path);
108 strncpy(fullname, path, colon - path);
109 fullname[colon - path] = '\0';
113 strcat(fullname, "/");
114 strcat(fullname, clientname)
    [all...]
launcher-darwin.c 101 static char fullname[PATH_MAX]; local
109 strcpy(fullname, path);
114 memcpy(fullname, path, colon - path);
115 fullname[colon - path] = '\0';
119 strcat(fullname, "/");
120 strcat(fullname, clientname);
122 if (access(fullname, R_OK|X_OK) == 0)
123 return fullname;
  /external/fonttools/Lib/fontTools/ttLib/
macUtils.py 85 fullname = ttFont['name'].getName(4, 1, 0) # Full name, mac, default encoding
88 if fullname is None or fullname is None or psname is None:
91 self.fullname = fullname.string
115 res = Res.Get1NamedResource('sfnt', self.fullname)
123 res.AddResource('sfnt', self.res_id, self.fullname)
134 fond_res.AddResource('FOND', self.res_id, self.fullname)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/command/
bdist_wininst.py 185 fullname = self.distribution.get_fullname()
189 self.create_exe(arcname, fullname, self.bitmap)
195 self.get_installer_filename(fullname)))
254 def create_exe (self, arcname, fullname, bitmap=None):
261 installer_name = self.get_installer_filename(fullname)
309 def get_installer_filename(self, fullname):
316 (fullname, self.plat_name, self.target_version))
319 "%s.%s.exe" % (fullname, self.plat_name))

Completed in 295 milliseconds

1 2 3 4 5 6 7