Home
last modified time | relevance | path

Searched refs:firstline (Results 1 – 11 of 11) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlua.c235 static const char *get_prompt (lua_State *L, int firstline) { in get_prompt() argument
237 lua_getglobal(L, firstline ? "_PROMPT" : "_PROMPT2"); in get_prompt()
239 if (p == NULL) p = (firstline ? LUA_PROMPT : LUA_PROMPT2); in get_prompt()
260 static int pushline (lua_State *L, int firstline) { in pushline() argument
264 const char *prmt = get_prompt(L, firstline); in pushline()
272 if (firstline && b[0] == '=') /* first line starts with `=' ? */ in pushline()
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenPatchPcdTable/
DGenPatchPcdTable.py57 firstline = lines[0].strip()
58 if (firstline.startswith("Archive member included ") and
59 firstline.endswith(" file (symbol)")):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
Dfeedparser.py415 firstline = epilogue[0]
416 bolmo = NLCRE_bol.match(firstline)
418 epilogue[0] = firstline[len(bolmo.group(0)):]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dplatform.py264 def _parse_release_file(firstline): argument
273 m = _lsb_release_version.match(firstline)
279 m = _release_version.match(firstline)
284 l = string.split(string.strip(firstline))
333 firstline = f.readline()
335 _distname, _version, _id = _parse_release_file(firstline)
Dcodecs.py430 def read(self, size=-1, chars=-1, firstline=False): argument
482 if firstline:
533 data = self.read(readsize, firstline=True)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dplatform.py264 def _parse_release_file(firstline): argument
273 m = _lsb_release_version.match(firstline)
279 m = _release_version.match(firstline)
284 l = string.split(string.strip(firstline))
333 firstline = f.readline()
335 _distname, _version, _id = _parse_release_file(firstline)
Dcodecs.py424 def read(self, size=-1, chars=-1, firstline=False): argument
479 if firstline:
530 data = self.read(readsize, firstline=True)
Drfc822.py142 firstline = 1
160 if firstline and line.startswith('From '):
163 firstline = 0
Dhttplib.py267 firstline = 1
287 if firstline and line.startswith('From '):
290 firstline = 0
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/
Dpyassem.py542 self.filename, self.name, self.lnotab.firstline,
605 self.firstline = 0
616 if self.firstline == 0:
617 self.firstline = lineno
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
DMisc.py66 firstline = lines[0].strip()
67 if (firstline.startswith("Archive member included ") and
68 firstline.endswith(" file (symbol)")):