Home
last modified time | relevance | path

Searched refs:NL (Results 1 – 25 of 29) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/dom/
Dminicompat.py79 NL = NodeList()
80 NL.extend(other)
81 return NL
84 NL = NodeList()
85 NL.extend(other)
86 return NL
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/
Dminicompat.py79 NL = NodeList()
80 NL.extend(other)
81 return NL
84 NL = NodeList()
85 NL.extend(other)
86 return NL
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/
Dbase64mime.py43 NL = '\n' variable
65 maxlinelen=76, eol=NL):
111 if line.endswith(NL):
122 def encode(s, binary=True, maxlinelen=76, eol=NL):
148 if enc.endswith(NL) and eol != NL:
Dquoprimime.py52 NL = '\n' variable
115 maxlinelen=76, eol=NL):
178 def encode(body, binary=False, maxlinelen=76, eol=NL):
268 def decode(encoded, eol=NL):
Dgenerator.py18 NL = '\n' variable
210 alltext = NL.join(msgtexts)
259 blocks.append(NL.join(lines[:-1]))
265 self._fp.write(NL.join(blocks))
Dheader.py22 NL = '\n' variable
371 joiner = NL + self._continuation_ws
Dfeedparser.py37 NL = '\n' variable
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dtokenize.py40 NL = N_TOKENS + 1 variable
41 tok_name[NL] = 'NL'
201 if tok_type in (NEWLINE, NL):
213 if toknum in (NEWLINE, NL):
236 elif toknum in (NEWLINE, NL):
337 yield (NL, line[nl_pos:],
340 yield ((NL, COMMENT)[line[pos] == '#'], line[pos:],
371 yield (NL if parenlev > 0 else NEWLINE,
Dtabnanny.py277 JUNK = tokenize.COMMENT, tokenize.NL
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dtokenize.py41 NL = N_TOKENS + 1 variable
42 tok_name[NL] = 'NL'
211 if tok_type in (NEWLINE, NL):
219 startline = token[0] in (NEWLINE, NL)
242 elif toknum in (NEWLINE, NL):
343 yield (NL, line[nl_pos:],
346 yield ((NL, COMMENT)[line[pos] == '#'], line[pos:],
379 yield (NL if parenlev > 0 else NEWLINE,
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlcorolib.c83 lua_State *NL; in luaB_cocreate() local
85 NL = lua_newthread(L); in luaB_cocreate()
87 lua_xmove(L, NL, 1); /* move function from L to NL */ in luaB_cocreate()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/
Dtokenize.py206 if tok_type in (NEWLINE, NL):
218 if toknum in (NEWLINE, NL):
232 elif toknum in (NEWLINE, NL):
413 yield (NL, line[nl_pos:],
416 yield ((NL, COMMENT)[line[pos] == '#'], line[pos:],
449 newline = NL
482 yield (NL, token, spos, (lnum, pos), line)
Dtoken.py62 NL = 53 variable
Ddriver.py59 if type in (tokenize.COMMENT, tokenize.NL):
Dpgen.py323 while tup[0] in (tokenize.COMMENT, tokenize.NL):
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
Dcleanfuture.py158 NL = tokenize.NL
169 while type in (COMMENT, NL, NEWLINE):
179 while type in (COMMENT, NL, NEWLINE):
Dreindent.py263 NL=tokenize.NL): argument
285 elif type == NL:
Dcheckappend.py114 JUNK=(tokenize.COMMENT, tokenize.NL), argument
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
Dtokens.h36 #define NL 28 macro
Dparser.dlg248 NLA = NL;
Ddlg_a.c282 NLA = NL;
Ddlg_p.c745 if ( (LA(1)==NL) ) { in anychar()
746 zzmatch(NL); in anychar()
Ddlg_p.g158 #token NL "\\n" << zzlextext[0] = '\n';>>
398 | NL <<$$.letter = $1.letter - MIN_CHAR;>>
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/i18n/
Dpygettext.py379 elif ttype not in (tokenize.COMMENT, tokenize.NL):
424 token.NEWLINE, tokenize.NL]:
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/email/test/
Dtest_email_renamed.py39 NL = '\n' variable
60 print >> fp, NL, NL.join(diff)
262 eq(text, NL.join(lines[1:]))
2522 msg = email.message_from_string(NL.join(lines))

12