Searched refs:fname (Results 1 - 25 of 71) sorted by relevance

123

/device/generic/goldfish-opengl/system/egl/
H A DClientAPIExts.cpp29 #define FUNC_TYPE(fname) __egl_ ## fname ## _t
31 #define API_ENTRY(fname,params,args) \
32 typedef void (GL_APIENTRY *FUNC_TYPE(fname)) params; // NOLINT
34 #define API_ENTRY_RET(rtype,fname,params,args) \
35 typedef rtype (GL_APIENTRY *FUNC_TYPE(fname)) params; // NOLINT
47 #define API_ENTRY(fname,params,args) \
48 FUNC_TYPE(fname) (fname);
50 #define API_ENTRY_RET(rtype,fname,param
135 const char *fname; member in struct:ClientAPIExts::_client_ext_funcs
149 getProcAddress(const char *fname) argument
[all...]
H A DClientAPIExts.h25 void* getProcAddress(const char *fname);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
H A Dgprof2html.py44 stuff, fname = m.group(1, 2)
45 labels[fname] = fname
47 (stuff, fname, fname, fname))
59 prefix, fname, suffix = m.group(1, 2, 3)
60 if fname not in labels:
65 (prefix, fname, fname, fnam
[all...]
H A Dndiff.py61 def fopen(fname):
63 return open(fname, 'U')
65 return fail("couldn't open " + fname + ": " + str(detail))
H A Dcombinerefs.py88 def combine(fname):
89 f = file(fname)
H A Dcheckappend.py98 def __init__(self, fname, file):
99 self.fname = fname
108 errprint("%r: Token Error: %s" % (self.fname, msg))
152 print "%s(%d):\n%s" % (self.fname, self.lineno,
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_dircache.py17 for fname in os.listdir(self.tempdir):
18 self.delTemp(fname)
21 def writeTemp(self, fname):
22 f = open(os.path.join(self.tempdir, fname), 'w')
25 def mkdirTemp(self, fname):
26 os.mkdir(os.path.join(self.tempdir, fname))
28 def delTemp(self, fname):
29 fname = os.path.join(self.tempdir, fname)
30 if os.path.isdir(fname)
[all...]
H A Dtest_mhlib.py34 def writeFile(fname, contents):
35 dir = os.path.split(fname)[0]
38 f = open(fname, 'w')
42 def readFile(fname):
43 f = open(fname)
79 def mkdirs(fname):
80 if os.path.exists(fname) or fname == '':
82 base, file = os.path.split(fname)
84 os.mkdir(fname)
[all...]
H A Dtest_zipfile64.py93 for fname in TESTFN, TESTFN2:
94 if os.path.exists(fname):
95 os.remove(fname)
H A Dtest_compile.py455 fname = __file__
456 if fname.lower().endswith(('pyc', 'pyo')):
457 fname = fname[:-1]
458 with open(fname, 'r') as f:
469 [fname, fcontents],
472 for fname, code in sample_code:
473 co1 = compile(code, '%s1' % fname, 'exec')
474 ast = compile(code, '%s2' % fname, 'exec', _ast.PyCF_ONLY_AST)
476 co2 = compile(ast, '%s3' % fname, 'exe
[all...]
H A Dtest_bsddb.py21 self.f = self.openmethod[0](self.fname, self.openflag, cachesize=32768)
29 if self.fname is None:
32 os.remove(self.fname)
50 if self.fname is None:
55 self.f = self.openmethod[0](self.fname, 'w')
323 fname = test_support.TESTFN variable in class:TestBTree
327 fname = None variable in class:TestBTree_InMemory
331 fname = None variable in class:TestBTree_InMemory_Truncate
336 fname = test_support.TESTFN variable in class:TestHashTable
340 fname variable in class:TestHashTable_InMemory
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A Dtoaiff.py81 (fd, fname) = tempfile.mkstemp()
83 temps.append(fname)
84 sts = uncompress.copy(filename, fname)
88 fname = filename
90 ftype = sndhdr.whathdr(fname)
101 return fname
107 sts = table[ftype].copy(fname, temp)
H A Drunpy.py151 mod_name, loader, code, fname = _get_module_details(mod_name)
153 mod_name, loader, code, fname = _get_main_module_details()
160 sys.argv[0] = fname
162 "__main__", fname, loader, pkg_name)
170 mod_name, loader, code, fname = _get_module_details(mod_name)
176 fname, loader, pkg_name)
180 fname, loader, pkg_name)
213 def _get_code_from_file(fname):
215 with open(fname, "rb") as f:
219 with open(fname, "r
[all...]
H A Dcodeop.py61 _features = [getattr(__future__, fname)
62 for fname in __future__.all_feature_names]
H A Dpyclbr.py136 f, fname, (_s, _m, ty) = imp.find_module(module, path)
138 f, fname, (_s, _m, ty) = imp.find_module(module, path + sys.path)
140 dict['__path__'] = [fname]
141 path = [fname] + path
142 f, fname, (_s, _m, ty) = imp.find_module('__init__', [fname])
176 fname, lineno)
229 fname, lineno)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
H A Drunpy.py151 mod_name, loader, code, fname = _get_module_details(mod_name)
153 mod_name, loader, code, fname = _get_main_module_details()
160 sys.argv[0] = fname
162 "__main__", fname, loader, pkg_name)
170 mod_name, loader, code, fname = _get_module_details(mod_name)
176 fname, loader, pkg_name)
180 fname, loader, pkg_name)
213 def _get_code_from_file(fname):
215 with open(fname, "rb") as f:
219 with open(fname, "r
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/json/tests/
H A Dtest_encode_basestring_ascii.py26 fname = self.json.encoder.encode_basestring_ascii.__name__
31 result, expect, fname, input_string))
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/tests/
H A Dtest_encode_basestring_ascii.py26 fname = self.json.encoder.encode_basestring_ascii.__name__
31 result, expect, fname, input_string))
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
H A DPBlackBox.h72 ParserBlackBox(char *fname) argument
74 FILE *f = fopen(fname, "r");
77 cerr << "cannot open " << fname << "\n"; return; local
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
H A DPBlackBox.h95 ParserBlackBox(char *fname) argument
104 FILE *f = fopen(fname, "r");
107 cerr << "cannot open " << fname << "\n"; return; local
/device/linaro/hikey/l-loader/
H A Dgen_loader_hikey.py59 def add(self, lba, fname):
61 fsize = os.path.getsize(fname)
91 print 'lba: ', lba, 'blocks: ', blocks, 'bootp: ', bootp, 'fname: ', fname
93 fimg = open(fname, "rb")
H A Dgen_loader.py60 def parse(self, fname):
62 fptable = open(fname, "rb")
101 def add(self, lba, fname):
103 fsize = os.path.getsize(fname)
141 print 'lba: ', lba, 'blocks: ', blocks, 'bootp: ', bootp, 'fname: ', fname
143 fimg = open(fname, "rb")
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/pdist/
H A Dcmdfw.py54 fname = 'flags_' + cmd
60 flags = getattr(self, fname)
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
H A Dtokens.h153 void enum_file(char * fname);
159 void defines(char * fname);
165 void enum_def(char * fname);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Dgetargs.c217 const char *fname = NULL; local
253 fname = format;
288 fname==NULL ? "function" : fname,
289 fname==NULL ? "" : "()");
297 fname==NULL ? "function" : fname,
298 fname==NULL ? "" : "()");
306 seterror(levels[0], msg, levels+1, fname, message);
329 fname
368 seterror(int iarg, const char *msg, int *levels, const char *fname, const char *message) argument
1544 const char *fname, *msg, *custom_msg, *keyword; local
[all...]

Completed in 311 milliseconds

123