/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
tokenize.py | 206 if tok_type in (NEWLINE, NL): 218 if toknum in (NEWLINE, NL): 232 elif toknum in (NEWLINE, NL): 447 newline = NEWLINE 449 newline = NL 450 yield (newline, token, spos, epos, line)
|
pgen.py | 148 # MSTART: (NEWLINE | RULE)* ENDMARKER 150 while self.type == token.NEWLINE: 152 # RULE: NAME ':' RHS NEWLINE 156 self.expect(token.NEWLINE)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
token.py | 17 NEWLINE = 4
|
tokenize.py | 201 if tok_type in (NEWLINE, NL): 213 if toknum in (NEWLINE, NL): 236 elif toknum in (NEWLINE, NL): 373 yield (NL if parenlev > 0 else NEWLINE,
|
smtpd.py | 93 NEWLINE = '\n' 177 self.__data = NEWLINE.join(data) 355 data = NEWLINE.join(lines)
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
rhino-python.extensions | 44 ... 1 COLON NEWLINE INDENT PRINT a NEWLINE DEDENT b ASSIGN 3 ... 49 Upon NEWLINE token from the lexer, however, an INDENT or DEDENT token 50 may need to be sent to the parser. The NEWLINE is the trigger for 51 this class to do it's job. NEWLINE is saved and then the first token 133 // if not a NEWLINE, doesn't signal indent/dedent work; just enqueue 134 if ( t.getType()!=PythonLexer.NEWLINE ) { 144 // save NEWLINE in the queue
|
/external/chromium_org/tools/grit/grit/format/policy_templates/writers/ |
adm_writer.py | 10 NEWLINE = '\r\n' 60 return NEWLINE.join(self.lines)
|
/prebuilts/python/darwin-x86/2.7.5/bin/ |
smtpd.py | 93 NEWLINE = '\n' 177 self.__data = NEWLINE.join(data) 355 data = NEWLINE.join(lines)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
smtpd.py | 93 NEWLINE = '\n' 177 self.__data = NEWLINE.join(data) 355 data = NEWLINE.join(lines)
|
/prebuilts/python/linux-x86/2.7.5/bin/ |
smtpd.py | 93 NEWLINE = '\n' 177 self.__data = NEWLINE.join(data) 355 data = NEWLINE.join(lines)
|
/external/nist-sip/java/gov/nist/core/ |
GenericObjectList.java | 64 protected static final String NEWLINE = Separators.NEWLINE;
|
GenericObject.java | 57 protected static final String NEWLINE = Separators.NEWLINE;
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
SIPHeaderList.java | 156 buffer.append(headerName).append(':').append(Separators.NEWLINE); 178 buffer.append(Separators.NEWLINE);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/exportgradle/ |
BuildFileCreator.java | 65 private static final String NEWLINE = System.getProperty("line.separator"); //$NON-NLS-1$ 525 + status.getMessage() + NEWLINE); 529 message.append(statusChild.getMessage() + NEWLINE);
|
/external/chromium_org/third_party/icu/source/i18n/ |
cpdtrans.cpp | 25 static const UChar NEWLINE = 10; 432 _smartAppend(rulesSource, NEWLINE);
|
/external/icu4c/i18n/ |
cpdtrans.cpp | 25 static const UChar NEWLINE = 10; 430 _smartAppend(rulesSource, NEWLINE);
|
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/ |
streams.rb | 367 NEWLINE = ?\n.ord 482 if c == NEWLINE 535 @position.zero? or @data[ @position - 1 ] == NEWLINE 543 @data[ @position ] == NEWLINE #if @position < @data.length [all...] |
/external/chromium_org/third_party/libaddressinput/chromium/cpp/test/ |
rule_test.cc | 34 using i18n::addressinput::NEWLINE;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/ |
patcomp.py | 35 skip = set((token.NEWLINE, token.INDENT, token.DEDENT))
|
fixer_util.py | 68 def Newline(): 69 """A newline literal""" 70 return Leaf(token.NEWLINE, u"\n") 74 return Leaf(token.NEWLINE, u"") 335 children = [import_, Newline()]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/ |
patcomp.py | 35 skip = set((token.NEWLINE, token.INDENT, token.DEDENT))
|
fixer_util.py | 68 def Newline(): 69 """A newline literal""" 70 return Leaf(token.NEWLINE, u"\n") 74 return Leaf(token.NEWLINE, u"") 335 children = [import_, Newline()]
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/ |
pgen.py | 148 # MSTART: (NEWLINE | RULE)* ENDMARKER 150 while self.type == token.NEWLINE: 152 # RULE: NAME ':' RHS NEWLINE 156 self.expect(token.NEWLINE)
|
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/ |
glcpp-lex.c | 237 * each newline. 1004 { yylineno++; yycolumn = 0; return NEWLINE; } 1015 { yylineno++; yycolumn = 0; return NEWLINE; } [all...] |
/external/nist-sip/java/gov/nist/javax/sip/message/ |
SIPMessage.java | 247 return contentLengthHeader.encode(encoding).append(NEWLINE).toString(); 372 encoding.append(unrecognized).append(NEWLINE); 375 encoding.append(contentLengthHeader.encode()).append(NEWLINE); 433 encoding.append(NEWLINE); [all...] |