HomeSort by relevance Sort by last modified time
    Searched defs:NL (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
TestFixtureBase.cs 42 public static readonly string NL = Environment.NewLine;
  /external/e2fsprogs/lib/ss/
list_rqs.c 22 static char const NL[2] = "\n";
69 strcat(buffer, NL);
76 strcat(buffer, NL);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
base64mime.py 43 NL = '\n'
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:
quoprimime.py 52 NL = '\n'
117 maxlinelen=76, eol=NL):
181 def encode(body, binary=False, maxlinelen=76, eol=NL):
272 def decode(encoded, eol=NL):
feedparser.py 37 NL = '\n'
105 # data after the final RE. In the case of a NL/CR terminated string,
generator.py 18 NL = '\n'
211 alltext = NL.join(msgtexts)
268 blocks.append(NL.join(lines[:-1]))
274 self._fp.write(NL.join(blocks))
header.py 22 NL = '\n'
375 joiner = NL + self._continuation_ws
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
base64mime.py 43 NL = '\n'
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:
quoprimime.py 52 NL = '\n'
117 maxlinelen=76, eol=NL):
181 def encode(body, binary=False, maxlinelen=76, eol=NL):
272 def decode(encoded, eol=NL):
feedparser.py 37 NL = '\n'
105 # data after the final RE. In the case of a NL/CR terminated string,
generator.py 18 NL = '\n'
211 alltext = NL.join(msgtexts)
268 blocks.append(NL.join(lines[:-1]))
274 self._fp.write(NL.join(blocks))
header.py 22 NL = '\n'
375 joiner = NL + self._continuation_ws
  /external/openssh/openbsd-compat/
bsd-cygwin_util.c 65 #define NL(x) x, (sizeof (x) - 1)
72 { NL("ALLUSERSPROFILE=") },
73 { NL("COMPUTERNAME=") },
74 { NL("COMSPEC=") },
75 { NL("CYGWIN=") },
76 { NL("OS=") },
77 { NL("PATH=") },
78 { NL("PATHEXT=") },
79 { NL("SYSTEMDRIVE=") },
80 { NL("SYSTEMROOT=") }
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
vertexconversion.h 69 typedef std::numeric_limits<T> NL;
72 if (NL::is_signed)
76 const float divisor = 1.0f/(2*static_cast<float>(NL::max())+1);
81 return f/NL::max();
VertexBuffer11.cpp 284 typedef std::numeric_limits<T> NL;
295 if (NL::is_signed)
297 const float divisor = 1.0f / (2 * static_cast<float>(NL::max()) + 1);
302 offsetOutput[j] = static_cast<float>(offsetInput[j]) / NL::max();
  /external/clang/lib/StaticAnalyzer/Core/
Environment.cpp 190 void Environment::print(raw_ostream &Out, const char *NL,
198 Out << NL << NL
200 << NL;
203 Out << NL;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
RSSFeedCreateFeedTask.java 44 private static final String NL="\n"; //$NON-NLS-1$
89 sb.append("<?xml-stylesheet href=\"http://www.blogger.com/styles/atom.css\" type=\"text/css\"?>" + NL); //$NON-NLS-1$
90 sb.append("<feed xmlns=\"http://www.w3.org/2005/Atom\">" + NL); //$NON-NLS-1$
91 sb.append(" <title>" + project + SP + Messages.getString("RSSFeedCreateFeedTask.Builds") + "</title>" + NL); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
92 sb.append(" <link rel=\"self\" type=\"application/atom+xml\" href=\"" + (!isNullString(feedURL)?feedURL:NS) + "\"/>" + NL); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$
93 sb.append(" <updated>" + getTimestamp() + "</updated>" + NL); //$NON-NLS-1$ //$NON-NLS-2$
94 sb.append(" <author>" + NL); //$NON-NLS-1$
95 sb.append(" <name>" + (!isNullString(project)?project + SP : NS) + Messages.getString("RSSFeedCreateFeedTask.BuildTeam") + "</name>" + NL); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$
96 sb.append(" </author>" + NL); //$NON-NLS-1$
97 sb.append(" <id>" + (!isNullString(feedURL)?feedURL:NS) + "</id>" + NL); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3
    [all...]
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/
getonescriptspan.cc 62 #define NL 17 // non-letter: ASCII whitespace, digit, punctuation
68 NL,NL,NL,NL, NL,NL,NL,NL, NL,NL,CR,NL, NL,CR,NL,NL
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
ObjCSelfInitChecker.cpp 77 const char *NL, const char *Sep) const;
342 const char *NL, const char *Sep) const {
350 Out << Sep << NL << "ObjCSelfInitChecker:" << NL;
353 Out << " An init method has been called." << NL;
358 << NL;
362 << NL;
366 Out << NL;
383 Out << NL;
  /external/guava/guava/src/com/google/common/base/
Ascii.java 144 * meaning "New Line" (NL), a format effector which controls the
158 public static final byte NL = 10;
  /external/llvm/lib/Analysis/
LoopInfo.cpp 477 Loop *NL = getNearestLoop(*POI, L);
479 if (NL != L) {
480 // For reducible loops, NL is now an ancestor of Unloop.
481 assert((NL != Unloop && (!NL || NL->contains(Unloop))) &&
483 LI->changeLoopFor(*POI, NL);
505 Loop *NL = getNearestLoop(*POI, L);
506 if (NL != L) {
507 assert(NL != Unloop && (!NL || NL->contains(Unloop)) &
    [all...]
  /external/srec/srec/Semproc/include/
SR_SemprocDefinitions.h 159 #define NL L('\n')
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
ascii.py 15 NL = 0x0a # ^J
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
token.py 62 NL = 53
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tokenize.py 34 __all__ += ["COMMENT", "tokenize", "generate_tokens", "NL", "untokenize"]
40 NL = N_TOKENS + 1
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 if parenlev > 0 else NEWLINE
    [all...]

Completed in 1130 milliseconds

1 2 3 4