HomeSort by relevance Sort by last modified time
    Searched refs:NL (Results 51 - 75 of 253) sorted by null

1 23 4 5 6 7 8 91011

  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
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/autotest/utils/
reindent.py 262 NL=tokenize.NL):
267 # (NL | COMMENT)* (INDENT | DEDENT+)?
284 elif type == NL:
  /toolchain/binutils/binutils-2.25/binutils/
mcparse.y 53 %token NL
311 lang: MCLANGUAGE lex_want_nl '=' MCTOKEN NL
315 | MCLANGUAGE lex_want_nl '=' MCIDENT NL
  /external/chromium-trace/catapult/catapult_base/catapult_base/refactor/
offset_token.py 89 # Strip leading NL tokens.
90 while offset_tokens[0].type == tokenize.NL:
snippet.py 228 tokens[0].type == tokenize.COMMENT or tokens[0].type == tokenize.NL):
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SubEngine.h 151 const char *NL, const char *Sep) = 0;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
feedTools.jar 
  /external/clang/lib/StaticAnalyzer/Core/
ProgramState.cpp 423 const char *NL, const char *Sep) const {
426 Mgr.getStoreManager().print(getStore(), Out, NL, Sep);
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;
454 Out << I->first << " : " << I->second << NL;
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 492 unsigned NL = std::distance(LStart, LE);
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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime.Tests/
ANTLRxxxxStreamFixture.cs 55 + "parser grammar p;" + NL
56 + "prog : WHILE ID LCURLY (assign)* RCURLY EOF;" + NL
57 + "assign : ID ASSIGN expr SEMI ;" + NL
58 + "expr : INT | FLOAT | ID ;" + NL;
  /external/guava/guava/src/com/google/common/base/
Ascii.java 149 * meaning "New Line" (NL), a format effector which controls the
163 public static final byte NL = 10;
  /prebuilts/gdb/darwin-x86/lib/python2.7/curses/
ascii.py 15 NL = 0x0a # ^J
  /prebuilts/gdb/linux-x86/lib/python2.7/curses/
ascii.py 15 NL = 0x0a # ^J
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/
ascii.py 15 NL = 0x0a # ^J
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/
ascii.py 15 NL = 0x0a # ^J
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/
header.py 22 NL = '\n'
375 joiner = NL + self._continuation_ws
  /prebuilts/gdb/linux-x86/lib/python2.7/email/
header.py 22 NL = '\n'
375 joiner = NL + self._continuation_ws
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
header.py 22 NL = '\n'
375 joiner = NL + self._continuation_ws
  /external/chromium-trace/catapult/third_party/coverage/coverage/
phystokens.py 91 ws_tokens = set([token.INDENT, token.DEDENT, token.NEWLINE, tokenize.NL])
  /external/clang/lib/StaticAnalyzer/Checkers/
NullabilityChecker.cpp 121 void printState(raw_ostream &Out, ProgramStateRef State, const char *NL,
    [all...]
  /external/icu/icu4c/source/common/
uprops.h 315 NL =0x0085,
  /external/libopus/silk/
structs.h 69 opus_int32 NL[ VAD_N_BANDS ]; /* Noise energy level in each band */
  /prebuilts/gdb/darwin-x86/lib/python2.7/lib2to3/pgen2/
driver.py 59 if type in (tokenize.COMMENT, tokenize.NL):
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_tokenize.py 16 ... " # NL\\n"
22 COMMENT '# NL' (2, 4) (2, 8)
23 NL '\\n' (2, 8) (2, 9)

Completed in 2765 milliseconds

1 23 4 5 6 7 8 91011