Searched defs:NL (Results 1 - 25 of 65) sorted by relevance

123

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
H A DTestFixtureBase.cs42 public static readonly string NL = Environment.NewLine; field in class:Antlr.Runtime.Tests.TestFixtureBase
/external/python/cpython2/Lib/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 Dfeedparser.py37 NL = '\n' variable
126 # data after the final RE. In the case of a NL/CR terminated string,
H A Dgenerator.py18 NL = '\n' variable
211 alltext = NL.join(msgtexts)
235 self._fp.write('\n--' + boundary + '--' + NL)
267 blocks.append(NL.join(lines[:-1]))
273 self._fp.write(NL.join(blocks))
H A Dheader.py22 NL = '\n' variable
375 joiner = NL + self._continuation_ws
/external/swiftshader/third_party/LLVM/lib/Target/SystemZ/
H A DSystemZ.h40 NL = 10, enumerator in enum:llvm::SystemZCC::CondCodes
/external/openssh/openbsd-compat/
H A Dbsd-cygwin_util.c76 #define NL(x) x, (sizeof (x) - 1) macro
83 { NL("ALLUSERSPROFILE=") },
84 { NL("COMPUTERNAME=") },
85 { NL("COMSPEC=") },
86 { NL("CYGWIN=") },
87 { NL("OS=") },
88 { NL("PATH=") },
89 { NL("PATHEXT=") },
90 { NL("PROGRAMFILES=") },
91 { NL("SYSTEMDRIV
[all...]
/external/skia/third_party/lua/src/
H A Dlcorolib.c83 lua_State *NL; local
85 NL = lua_newthread(L);
87 lua_xmove(L, NL, 1); /* move function from L to NL */
/external/syslinux/com32/lua/src/
H A Dlcorolib.c83 lua_State *NL; local
85 NL = lua_newthread(L);
87 lua_xmove(L, NL, 1); /* move function from L to NL */
/external/clang/lib/StaticAnalyzer/Core/
H A DEnvironment.cpp188 void Environment::print(raw_ostream &Out, const char *NL, argument
196 Out << NL << NL
198 << NL; local
201 Out << NL; local
H A DCheckerManager.cpp642 const char *NL, const char *Sep) {
645 I->second->printState(Out, State, NL, Sep);
640 runCheckersForPrintState(raw_ostream &Out, ProgramStateRef State, const char *NL, const char *Sep) argument
H A DProgramState.cpp423 const char *NL, const char *Sep) const {
426 Mgr.getStoreManager().print(getStore(), Out, NL, Sep); local
429 Env.print(Out, NL, Sep);
432 Mgr.getConstraintManager().print(this, Out, NL, Sep);
435 Mgr.getOwningEngine()->printState(Out, this, NL, Sep);
447 const char *NL, const char *Sep) const {
451 Out <<"Tainted Symbols:" << NL; local
454 Out << I->first << " : " << I->second << NL;
422 print(raw_ostream &Out, const char *NL, const char *Sep) const argument
446 printTaint(raw_ostream &Out, const char *NL, const char *Sep) const argument
/external/clang/lib/StaticAnalyzer/Checkers/
H A DObjCSelfInitChecker.cpp83 const char *NL, const char *Sep) const override;
339 const char *NL, const char *Sep) const {
347 Out << Sep << NL << *this << " :" << NL;
350 Out << " An init method has been called." << NL; local
355 << NL; local
359 << NL; local
363 Out << NL; local
380 Out << NL; local
338 printState(raw_ostream &Out, ProgramStateRef State, const char *NL, const char *Sep) const argument
H A DNullabilityChecker.cpp120 void printState(raw_ostream &Out, ProgramStateRef State, const char *NL,
1195 const char *NL, const char *Sep) const {
1202 Out << Sep << NL;
1207 Out << NL; local
1194 printState(raw_ostream &Out, ProgramStateRef State, const char *NL, const char *Sep) const argument
/external/guava/guava/src/com/google/common/base/
H A DAscii.java149 * meaning "New Line" (NL), a format effector which controls the
163 public static final byte NL = 10; field in class:Ascii
/external/llvm/tools/obj2yaml/
H A Dmacho2yaml.cpp431 MachOYAML::NListEntry NL; local
432 NL.n_strx = nlist.n_strx;
433 NL.n_type = nlist.n_type;
434 NL.n_sect = nlist.n_sect;
435 NL.n_desc = nlist.n_desc;
436 NL.n_value = nlist.n_value;
437 return NL;
/external/python/cpython2/Lib/curses/
H A Dascii.py15 NL = 0x0a # ^J variable
/external/python/cpython2/Lib/lib2to3/pgen2/
H A Dtoken.py63 NL = 54 variable
/external/python/cpython2/Lib/
H A Dtokenize.py35 __all__ += ["COMMENT", "tokenize", "generate_tokens", "NL", "untokenize"]
41 NL = N_TOKENS + 1 variable
42 tok_name[NL] = 'NL'
217 elif tok_type in (NEWLINE, NL):
228 if tok_type in (NEWLINE, NL):
236 startline = token[0] in (NEWLINE, NL)
259 elif toknum in (NEWLINE, NL):
360 yield (NL, line[nl_pos:],
363 yield ((NL, COMMEN
[all...]
/external/llvm/tools/llvm-diff/
H A DDifferenceEngine.cpp492 unsigned NL = std::distance(LStart, LE); local
494 SmallVector<DiffEntry, 20> Paths1(NL+1);
495 SmallVector<DiffEntry, 20> Paths2(NL+1);
507 for (unsigned I = 0; I != NL+1; ++I) {
544 SmallVectorImpl<char> &Path = Cur[NL].Path;
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DLoopInfo.cpp438 Loop *NL = getNearestLoop(*POI, L); local
440 if (NL != L) {
441 // For reducible loops, NL is now an ancestor of Unloop.
442 assert((NL != Unloop && (!NL || NL->contains(Unloop))) &&
444 LI->changeLoopFor(*POI, NL);
466 Loop *NL = getNearestLoop(*POI, L); local
467 if (NL != L) {
468 assert(NL !
[all...]
/external/swiftshader/third_party/LLVM/tools/llvm-diff/
H A DDifferenceEngine.cpp492 unsigned NL = std::distance(LStart, LE); local
494 SmallVector<DiffEntry, 20> Paths1(NL+1);
495 SmallVector<DiffEntry, 20> Paths2(NL+1);
507 for (unsigned I = 0; I != NL+1; ++I) {
544 SmallVectorImpl<char> &Path = Cur[NL].Path;
/external/clang/include/clang/StaticAnalyzer/Core/
H A DChecker.h490 const char *NL, const char *Sep) const { }
489 printState(raw_ostream &Out, ProgramStateRef State, const char *NL, const char *Sep) const argument
/external/clang/lib/CodeGen/
H A DCGDeclCXX.cpp527 auto NL = ApplyDebugLocation::CreateEmpty(*this); local
578 auto NL = ApplyDebugLocation::CreateEmpty(*this); local

Completed in 3135 milliseconds

123