Home
last modified time | relevance | path

Searched refs:stuff (Results 1 – 25 of 38) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dfnmatch.py107 stuff = pat[i:j].replace('\\','\\\\')
109 if stuff[0] == '!':
110 stuff = '^' + stuff[1:]
111 elif stuff[0] == '^':
112 stuff = '\\' + stuff
113 res = '%s[%s]' % (res, stuff)
Dihooks.py118 stuff = self.find_module_in_dir(name, dir)
119 if stuff: return stuff
142 def load_module(self, name, stuff): argument
143 file, filename, info = stuff
246 stuff = self.find_module_in_dir("__init__", fullname, 0)
247 if stuff:
248 file = stuff[0]
261 def load_module(self, name, stuff): argument
262 file, filename, info = stuff
290 def load_module(self, name, stuff): argument
[all …]
Dmodulefinder.py113 stuff = ("", "r", imp.PY_SOURCE)
114 self.load_module('__main__', fp, pathname, stuff)
120 stuff = (ext, "r", imp.PY_SOURCE)
121 self.load_module(name, fp, pathname, stuff)
268 fp, pathname, stuff = self.find_module(partname,
274 m = self.load_module(fqname, fp, pathname, stuff)
461 fp, buf, stuff = self.find_module("__init__", m.__path__)
462 self.load_module(fqname, fp, buf, stuff)
D_strptime.py236 regex = '|'.join(re_escape(stuff) for stuff in to_convert)
Drfc822.py867 stuff = data[0].split('-')
868 if len(stuff) == 3:
869 data = stuff + data[1:]
Dpickle.py721 stuff = obj.__dict__
723 stuff = getstate()
724 _keep_alive(stuff, memo)
725 save(stuff)
Durllib.py682 stuff = headers['www-authenticate']
684 match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff)
704 stuff = headers['proxy-authenticate']
706 match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dfnmatch.py111 stuff = pat[i:j].replace('\\','\\\\')
113 if stuff[0] == '!':
114 stuff = '^' + stuff[1:]
115 elif stuff[0] == '^':
116 stuff = '\\' + stuff
117 res = '%s[%s]' % (res, stuff)
Dmodulefinder.py113 stuff = ("", "r", imp.PY_SOURCE)
114 self.load_module('__main__', fp, pathname, stuff)
120 stuff = (ext, "r", imp.PY_SOURCE)
121 self.load_module(name, fp, pathname, stuff)
268 fp, pathname, stuff = self.find_module(partname,
274 m = self.load_module(fqname, fp, pathname, stuff)
461 fp, buf, stuff = self.find_module("__init__", m.__path__)
462 self.load_module(fqname, fp, buf, stuff)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_pyexpat.py286 self.stuff = []
292 self.assertEqual(self.stuff, expected,
294 % (label, self.stuff, map(unicode, expected)))
297 self.stuff.append(text)
300 self.stuff.append("<%s>" % name)
308 self.stuff.append("</%s>" % name)
311 self.stuff.append("<!--%s-->" % data)
325 self.assertEqual(self.stuff, ['123'],
333 self.assertEqual(self.stuff,
339 self.assertEqual(self.stuff, ["1<2> \n 3"],
[all …]
Dtest_importhooks.py118 file, filename, stuff = imp.find_module(subname, path)
121 return ImpLoader(file, filename, stuff)
126 def __init__(self, file, filename, stuff): argument
129 self.stuff = stuff
132 mod = imp.load_module(fullname, self.file, self.filename, self.stuff)
Dtest_zipimport.py78 stuff = kw.get("stuff", None)
79 if stuff is not None:
86 f.write(stuff)
316 stuff="Some Stuff"*31)
Dtest_mmap.py210 stuff = f.read()
212 self.assertEqual(stuff, 'c'*mapsize,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
Dgetpath.c178 joinpath(char *buffer, char *stuff) in joinpath() argument
183 if (is_absolute(stuff) == 1) { in joinpath()
199 if(is_sep(stuff[0])) ++stuff; in joinpath()
204 k = strlen(stuff); in joinpath()
207 strncpy(buffer+n, stuff, k); in joinpath()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/
Dgetpath.c247 joinpath(char *buffer, char *stuff) in joinpath() argument
252 if (is_absolute(stuff) == 1) { in joinpath()
268 if(is_sep(stuff[0])) ++stuff; in joinpath()
273 k = strlen(stuff); in joinpath()
276 strncpy(buffer+n, stuff, k); in joinpath()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dgprof2html.py44 stuff, fname = m.group(1, 2)
47 (stuff, fname, fname, fname))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
DREADME9 CVS stuff
18 RCS stuff
32 FSProxy stuff
39 Generic client/server stuff
47 Other generic stuff
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dgetpath.c208 joinpath(char *buffer, char *stuff) in joinpath() argument
211 if (stuff[0] == SEP) in joinpath()
220 k = strlen(stuff); in joinpath()
223 strncpy(buffer+n, stuff, k); in joinpath()
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/
DCHANGES_FROM_131.txt109 Removed SORCERER_TRANSFORM from the ast.h stuff.
133 Made the AST routines correspond to the book and SORCERER stuff.
135 New token stuff: See testcpp/14/test.g
312 genmk now correctly uses config file for CPP_FILE_SUFFIX stuff.
403 debugging stuff for reference counting if you suspect something.
457 I've noticed some weird stuff with the exception handling. I intend
473 o Cleaned up the dup() stuff in AST hierarchy to use shallowCopy() to
506 o Added warning when #-stuff is used w/o -gt option.
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/stringlib/
DREADME.txt4 the stuff in here is included into relevant places; see the individual
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/stringlib/
DREADME.txt4 the stuff in here is included into relevant places; see the individual
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
D_parseaddr.py61 stuff = data[0].split('-')
62 if len(stuff) == 3:
63 data = stuff + data[1:]
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
DDlgDDK.mak16 # Compiler stuff
DDlgMS.mak16 # Compiler stuff
/device/linaro/bootloader/edk2/QuarkPlatformPkg/Platform/Pei/PlatformInit/
DPlatformEarlyInit.inf36 # memory specific stuff like build memory map, build

12