Searched refs:NL (Results 1 - 25 of 80) sorted by relevance

1234

/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
H A Dminicompat.py79 NL = NodeList()
80 NL.extend(other)
81 return NL
84 NL = NodeList()
85 NL.extend(other)
86 return NL
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
H A Dminicompat.py79 NL = NodeList()
80 NL.extend(other)
81 return NL
84 NL = NodeList()
85 NL.extend(other)
86 return NL
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
H A Dbase64mime.py43 NL = '\n' variable
67 maxlinelen=76, eol=NL):
113 if line.endswith(NL):
125 def encode(s, binary=True, maxlinelen=76, eol=NL):
151 if enc.endswith(NL) and eol != NL:
H A Dquoprimime.py52 NL = '\n' variable
117 maxlinelen=76, eol=NL):
181 def encode(body, binary=False, maxlinelen=76, eol=NL):
272 def decode(encoded, eol=NL):
H A Dgenerator.py18 NL = '\n' variable
211 alltext = NL.join(msgtexts)
268 blocks.append(NL.join(lines[:-1]))
274 self._fp.write(NL.join(blocks))
H A Dheader.py22 NL = '\n' variable
375 joiner = NL + self._continuation_ws
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
H A Dbase64mime.py43 NL = '\n' variable
67 maxlinelen=76, eol=NL):
113 if line.endswith(NL):
125 def encode(s, binary=True, maxlinelen=76, eol=NL):
151 if enc.endswith(NL) and eol != NL:
H A Dquoprimime.py52 NL = '\n' variable
117 maxlinelen=76, eol=NL):
181 def encode(body, binary=False, maxlinelen=76, eol=NL):
272 def decode(encoded, eol=NL):
H A Dgenerator.py18 NL = '\n' variable
211 alltext = NL.join(msgtexts)
268 blocks.append(NL.join(lines[:-1]))
274 self._fp.write(NL.join(blocks))
H A Dheader.py22 NL = '\n' variable
375 joiner = NL + self._continuation_ws
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/config/
H A Dmakesetup82 NL='\
131 *=*) DEFS="$line$NL$DEFS"; continue;;
132 'include '*) DEFS="$line$NL$DEFS"; continue;;
248 *) DEFS="SHAREDMODS=$SHAREDMODS$NL$DEFS";;
256 DEFS="BASEMODLIBS=$BASELIBS$NL$DEFS"
257 DEFS="LOCALMODLIBS=$LOCALLIBS$NL$DEFS"
263 EXTDECLS="${EXTDECLS}extern void init$mod(void);$NL"
264 INITBITS="${INITBITS} {\"$mod\", init$mod},$NL"
271 1i$NL/* Generated automatically from $config by makesetup. */
272 /MARKER 1/i$NL
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/config/
H A Dmakesetup82 NL='\
131 *=*) DEFS="$line$NL$DEFS"; continue;;
132 'include '*) DEFS="$line$NL$DEFS"; continue;;
248 *) DEFS="SHAREDMODS=$SHAREDMODS$NL$DEFS";;
256 DEFS="BASEMODLIBS=$BASELIBS$NL$DEFS"
257 DEFS="LOCALMODLIBS=$LOCALLIBS$NL$DEFS"
263 EXTDECLS="${EXTDECLS}extern void init$mod(void);$NL"
264 INITBITS="${INITBITS} {\"$mod\", init$mod},$NL"
271 1i$NL/* Generated automatically from $config by makesetup. */
272 /MARKER 1/i$NL
[all...]
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setoolsgui/networkx/linalg/tests/
H A Dtest_laplacian.py35 NL=numpy.array([[ 3, -1, -1, -1, 0],
40 WL=0.5*NL
41 OL=0.3*NL
42 assert_equal(nx.laplacian_matrix(self.G),NL)
43 assert_equal(nx.laplacian_matrix(self.MG),NL)
47 assert_equal(nx.laplacian_matrix(self.WG,weight=None),NL)
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
H A Dtoken.py62 NL = 53 variable
H A 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)
H A Ddriver.py59 if type in (tokenize.COMMENT, tokenize.NL):
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
H A Dtoken.py62 NL = 53 variable
H A 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)
H A Ddriver.py59 if type in (tokenize.COMMENT, tokenize.NL):
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
H A Dtokenize.py34 __all__ += ["COMMENT", "tokenize", "generate_tokens", "NL", "untokenize"]
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:],
373 yield (NL i
[all...]
H A Dtabnanny.py27 if not hasattr(tokenize, 'NL'):
28 raise ValueError("tokenize.NL doesn't exist -- tokenize module too old")
277 JUNK = tokenize.COMMENT, tokenize.NL
285 # (NL | COMMENT)* (INDENT | DEDENT+)?
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
H A Dtokenize.py34 __all__ += ["COMMENT", "tokenize", "generate_tokens", "NL", "untokenize"]
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:],
373 yield (NL i
[all...]
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
H A Dascii.py15 NL = 0x0a # ^J variable
H A Dtextpad.py120 elif ch == curses.ascii.NL: # ^j
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
H A Dascii.py15 NL = 0x0a # ^J variable

Completed in 607 milliseconds

1234