/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
peerconnectionendtoend_unittest.cc | 57 // Add |newlines| to the |message| after |line|. 59 const std::string& newlines, 61 const std::string tmp = line + newlines; 67 const std::string& newlines, 70 newlines.c_str(), newlines.length(), message);
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_univnewlines.py | 16 if not hasattr(sys.stdin, 'newlines'): 42 # and a class variable NEWLINE to set the expected newlines value 63 self.assertEqual(set(fp.newlines), set(self.NEWLINE)) 69 self.assertEqual(set(fp.newlines), set(self.NEWLINE)) 79 self.assertEqual(set(fp.newlines), set(self.NEWLINE)) 106 self.assertEqual(repr(fp.newlines), repr(None)) 109 self.assertEqual(repr(fp.newlines), repr(self.NEWLINE))
|
test_univnewlines2k.py | 7 if not hasattr(sys.stdin, 'newlines'): 35 # and a class variable NEWLINE to set the expected newlines value 53 self.assertEqual(repr(fp.newlines), repr(self.NEWLINE)) 59 self.assertEqual(repr(fp.newlines), repr(self.NEWLINE)) 69 self.assertEqual(repr(fp.newlines), repr(self.NEWLINE)) 110 self.assertEqual(repr(fp.newlines), repr(None)) 113 self.assertEqual(repr(fp.newlines), repr(self.NEWLINE))
|
test_bz2.py | 142 # "Test BZ2File.read() with universal newlines (\\n)" 146 self.assertEqual(bz2f.newlines, "\n") 150 # "Test BZ2File.read() with universal newlines (\\r\\n)" 154 self.assertEqual(bz2f.newlines, "\r\n")
|
test_memoryio.py | 489 # The C StringIO decodes newlines in write() calls, but the Python 495 self.assertEqual(memio.newlines, None) 498 self.assertEqual(memio.newlines, "\n") 501 self.assertEqual(memio.newlines, ("\n", "\r\n")) 504 self.assertEqual(memio.newlines, ("\r", "\n", "\r\n")) 579 # StringIO can duplicate newlines in universal newlines mode
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_univnewlines.py | 16 if not hasattr(sys.stdin, 'newlines'): 42 # and a class variable NEWLINE to set the expected newlines value 63 self.assertEqual(set(fp.newlines), set(self.NEWLINE)) 69 self.assertEqual(set(fp.newlines), set(self.NEWLINE)) 79 self.assertEqual(set(fp.newlines), set(self.NEWLINE)) 106 self.assertEqual(repr(fp.newlines), repr(None)) 109 self.assertEqual(repr(fp.newlines), repr(self.NEWLINE))
|
test_univnewlines2k.py | 7 if not hasattr(sys.stdin, 'newlines'): 35 # and a class variable NEWLINE to set the expected newlines value 53 self.assertEqual(repr(fp.newlines), repr(self.NEWLINE)) 59 self.assertEqual(repr(fp.newlines), repr(self.NEWLINE)) 69 self.assertEqual(repr(fp.newlines), repr(self.NEWLINE)) 110 self.assertEqual(repr(fp.newlines), repr(None)) 113 self.assertEqual(repr(fp.newlines), repr(self.NEWLINE))
|
test_bz2.py | 142 # "Test BZ2File.read() with universal newlines (\\n)" 146 self.assertEqual(bz2f.newlines, "\n") 150 # "Test BZ2File.read() with universal newlines (\\r\\n)" 154 self.assertEqual(bz2f.newlines, "\r\n")
|
test_memoryio.py | 489 # The C StringIO decodes newlines in write() calls, but the Python 495 self.assertEqual(memio.newlines, None) 498 self.assertEqual(memio.newlines, "\n") 501 self.assertEqual(memio.newlines, ("\n", "\r\n")) 504 self.assertEqual(memio.newlines, ("\r", "\n", "\r\n")) 579 # StringIO can duplicate newlines in universal newlines mode
|
/external/chromium_org/third_party/mozilla/ |
NSURL+Utils.m | 117 NSCharacterSet *newlines = [NSCharacterSet characterSetWithCharactersInString:@"\r\n"]; 128 // Scan each non-empty line in this section. We don't need to explicitly scan the newlines or 132 while ([scanner scanUpToCharactersFromSet:newlines intoString:&line]) {
|
/external/valgrind/main/VEX/switchback/ |
binary_switchback.pl | 222 my @newlines; 245 push(@newlines, $line); 260 print OUTFILE join("\n",@newlines); 274 my $line = $newlines[$i++];
|
/external/chromium_org/tools/grit/grit/ |
util_unittest.py | 89 newlines = ['\n', '\r\n', '\r'] 93 for newline in newlines:
|
/external/llvm/lib/TableGen/ |
TGLexer.cpp | 219 return ReturnError(CurPtr, "escaped newlines not supported in tblgen");
|
/external/open-vcdiff/gflags/src/ |
gflags_completions.cc | 737 // Eliminate any doubled newlines that crept in. Specifically, if 742 for (string::size_type newlines = output.find(kDoubledNewlines); 743 newlines != string::npos; 744 newlines = output.find(kDoubledNewlines)) 746 output.replace(newlines, sizeof(kDoubledNewlines) - 1, string("\n"));
|
/external/chromium_org/ppapi/generators/ |
idl_gen_pnacl.py | 226 newlines = new.split(';') 228 diff = d.compare(oldlines, newlines)
|
/external/mksh/src/ |
eval.c | 218 /* For trailing newlines in COMSUB */ 219 int newlines = 0; local 305 newlines = 0; 853 if (newlines) { 856 --newlines; 860 /* Save newlines */ 861 newlines++; 862 if (newlines && c != EOF) { 865 --newlines; 869 newlines = 0 [all...] |
/external/linux-tools-perf/config/ |
utilities.mak | 14 # newlines; the default is a bizarre string. 46 # Use this to escape newlines from within a shell call; 62 # Use this to unescape newlines from within a shell call;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/json/ |
__init__.py | 152 level of 0 will only insert newlines. ``None`` is the most compact 216 level of 0 will only insert newlines. ``None`` is the most compact
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/json/ |
__init__.py | 152 level of 0 will only insert newlines. ``None`` is the most compact 216 level of 0 will only insert newlines. ``None`` is the most compact
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
zipfile.py | 512 # Search for universal newlines or line chunks. 539 self.newlines = None 579 # Search for universal newlines or line chunks. 584 # separate newlines - '\r', '\n' due to coincidental readaheads. 589 if self.newlines is None: 590 self.newlines = [] 591 if newline not in self.newlines: 592 self.newlines.append(newline) [all...] |
_pyio.py | 118 newline controls how universal newlines works (it only applies to text 122 * On input, if newline is None, universal newlines mode is 459 files, the newlines argument to open can be used to select the line 1343 def newlines(self): member in class:TextIOBase 1435 def newlines(self): member in class:IncrementalNewlineDecoder 1972 def newlines(self): member in class:TextIOWrapper [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
zipfile.py | 512 # Search for universal newlines or line chunks. 539 self.newlines = None 579 # Search for universal newlines or line chunks. 584 # separate newlines - '\r', '\n' due to coincidental readaheads. 589 if self.newlines is None: 590 self.newlines = [] 591 if newline not in self.newlines: 592 self.newlines.append(newline) [all...] |
_pyio.py | 118 newline controls how universal newlines works (it only applies to text 122 * On input, if newline is None, universal newlines mode is 459 files, the newlines argument to open can be used to select the line 1343 def newlines(self): member in class:TextIOBase 1435 def newlines(self): member in class:IncrementalNewlineDecoder 1972 def newlines(self): member in class:TextIOWrapper [all...] |
/external/chromium/net/tools/flip_server/ |
balsa_frame.cc | 191 // Exactly zero or one newlines -may- exist between [begin, end) 1012 __v16qi newlines = { '\\n', '\\n', '\\n', '\\n', '\\n', '\\n', '\\n', '\\n', local [all...] |
/external/chromium_org/net/tools/balsa/ |
balsa_frame.cc | 191 // Exactly zero or one newlines -may- exist between [begin, end) 979 __v16qi newlines = { '\\n', '\\n', '\\n', '\\n', '\\n', '\\n', '\\n', '\\n', local [all...] |