/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/ |
D | minicompat.py | 79 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/xml/dom/ |
D | minicompat.py | 79 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/ |
D | base64mime.py | 43 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:
|
D | quoprimime.py | 52 NL = '\n' variable 115 maxlinelen=76, eol=NL): 178 def encode(body, binary=False, maxlinelen=76, eol=NL): 268 def decode(encoded, eol=NL):
|
D | generator.py | 18 NL = '\n' variable 210 alltext = NL.join(msgtexts) 259 blocks.append(NL.join(lines[:-1])) 265 self._fp.write(NL.join(blocks))
|
D | header.py | 22 NL = '\n' variable 371 joiner = NL + self._continuation_ws
|
D | feedparser.py | 37 NL = '\n' variable
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | tokenize.py | 40 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,
|
D | tabnanny.py | 277 JUNK = tokenize.COMMENT, tokenize.NL
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | lcorolib.c | 83 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.10/Lib/ |
D | tokenize.py | 41 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/Python/Python-2.7.2/Lib/lib2to3/pgen2/ |
D | tokenize.py | 206 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)
|
D | token.py | 62 NL = 53 variable
|
D | driver.py | 59 if type in (tokenize.COMMENT, tokenize.NL):
|
D | pgen.py | 323 while tup[0] in (tokenize.COMMENT, tokenize.NL):
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/ |
D | cleanfuture.py | 158 NL = tokenize.NL 169 while type in (COMMENT, NL, NEWLINE): 179 while type in (COMMENT, NL, NEWLINE):
|
D | reindent.py | 263 NL=tokenize.NL): argument 285 elif type == NL:
|
D | checkappend.py | 114 JUNK=(tokenize.COMMENT, tokenize.NL), argument
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/ |
D | tokens.h | 36 #define NL 28 macro
|
D | parser.dlg | 248 NLA = NL;
|
D | dlg_a.c | 282 NLA = NL;
|
D | dlg_p.c | 745 if ( (LA(1)==NL) ) { in anychar() 746 zzmatch(NL); in anychar()
|
D | dlg_p.g | 158 #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/ |
D | pygettext.py | 379 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/ |
D | test_email_renamed.py | 39 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))
|