HomeSort by relevance Sort by last modified time
    Searched full:getline (Results 251 - 275 of 619) sorted by null

<<11121314151617181920>>

  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/
istream 394 getline(char_type* __s, streamsize __n, char_type __delim);
402 * Returns @c getline(s,n,widen('\n')).
405 getline(char_type* __s, streamsize __n)
406 { return this->getline(__s, __n, this->widen('\n')); }
594 getline(char_type* __s, streamsize __n, char_type __delim);
610 getline(char_type* __s, streamsize __n, char_type __delim);
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.6/include/
istream 397 getline(char_type* __s, streamsize __n, char_type __delim);
405 * Returns @c getline(s,n,widen(&apos;\\n&apos;)).
408 getline(char_type* __s, streamsize __n)
409 { return this->getline(__s, __n, this->widen('\n')); }
600 getline(char_type* __s, streamsize __n, char_type __delim);
616 getline(char_type* __s, streamsize __n, char_type __delim);
  /external/antlr/antlr-3.4/tool/src/main/antlr3/org/antlr/grammar/v3/
CodeGenTreeWalker.g 636 $s.getLine(),
704 $e.start.getLine(),
910 $el.start.getLine(),
922 $act.start.getLine(),
931 $el.start.getLine(),
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-jmf.jar 
  /external/smali/smali/src/main/jflex/
smaliLexer.flex 60 public int getLine() {
99 token.setLine(getLine());
121 token.setLine(getLine());
134 stringStartLine = getLine();
173 return getSourceName()+"["+ token.getLine()+","+token.getCharPositionInLine()+"]";
  /external/chromium/chrome/browser/
process_info_snapshot_mac.cc 173 std::getline(in, proc_info.command); // Get the rest of the line.
225 while (std::getline(top_in, line)) {
309 while (std::getline(top_in, line)) {
  /external/clang/lib/Frontend/
DiagnosticRenderer.cpp 479 << PLoc.getLine() << ":";
491 << PLoc.getFilename() << ':' << PLoc.getLine() << ":";
504 << PLoc.getFilename() << ':' << PLoc.getLine() << ":";
  /external/clang/tools/arcmt-test/
arcmt-test.cpp 316 OS << ":" << PL.getLine() << ":"
328 OS << " [" << PL.getLine() << ":"
338 OS << PL.getLine() << ":" << endCol << "]";
  /ndk/sources/host-tools/nawk-20071023/
lex.c 64 { "getline", GETLINE, GETLINE },
  /ndk/sources/host-tools/sed-4.2.1/m4/
gnulib-comp.m4 63 gl_STDIO_MODULE_INDICATOR([getline])
288 lib/getline.c
369 m4/getline.m4
  /packages/apps/Exchange/exchange2/tests/src/com/android/exchange/adapter/
FolderSyncParserTests.java 258 private String getLine() throws IOException {
279 String line = getLine();
301 String line = getLine();
  /packages/apps/Exchange/tests/src/com/android/exchange/adapter/
FolderSyncParserTests.java 258 private String getLine() throws IOException {
279 String line = getLine();
301 String line = getLine();
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.7/include/
istream 414 getline(char_type* __s, streamsize __n, char_type __delim);
422 * Returns @c getline(__s,__n,widen(&apos;\\n&apos;)).
425 getline(char_type* __s, streamsize __n)
426 { return this->getline(__s, __n, this->widen('\n')); }
617 getline(char_type* __s, streamsize __n, char_type __delim);
633 getline(char_type* __s, streamsize __n, char_type __delim);
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugEventSocketProxy.java 250 line = token.getLine();
330 buf.append(t.getLine()); buf.append('\t');
  /external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
rhino-python.extensions 177 indent.setLine(t.getLine());
187 dedent.setLine(t.getLine());
  /external/chromium/base/
file_util.cc 124 getline(file1, line1);
125 getline(file2, line2);
  /external/clang/utils/analyzer/
CmpRuns.py 57 def getLine(self):
83 return '%s:%d:%d, %s: %s' % (self.getFileName(), self.getLine(),
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 78 Result.LineNumber = Loc.getLine();
89 Result.LineNumber = Line.getLine();
  /external/llvm/tools/llvm-symbolizer/
LLVMSymbolize.cpp 44 LineInfo.getLine(), LineInfo.getColumn());
262 Result << Filename << ":" << LineInfo.getLine() << ":" << LineInfo.getColumn()
  /external/oprofile/libregex/
stl.pat.in 92 "\<istream & (operator>>|getline)<char, string_char_traits<char>, __default_alloc_template<true, 0>>\(istream &, string &\)" = "istream & \1(istream &, string &)"
96 "\<istream& (operator>>|getline) <char, char_traits<char>, allocator<char>>\(istream&, string&\)" = "istream & \1(istream &, string &)"
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
intermOut.cpp 63 sink.location(node->getLine());
335 out.message(EPrefixInternalError, "Unknown constant", node->getLine());
  /frameworks/opt/vcard/java/com/android/vcard/
VCardParserImpl_V30.java 63 protected String getLine() throws IOException {
326 final String line = getLine();
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
SourcePosition.java 165 public int getLine() {
  /dalvik/dx/src/com/android/dx/rop/code/
SourcePosition.java 165 public int getLine() {
  /external/antlr/antlr-3.4/runtime/C/doxygen/
interop.dox 114 /// \subsection getline GETLINE()
116 /// The <code>GETLINE</code> macro returns the line number of current character (<code>LA(1)</code> in the input
137 /// from the start of the current input line. See the macro <code>GETLINE</code> for details on what the

Completed in 2119 milliseconds

<<11121314151617181920>>