HomeSort by relevance Sort by last modified time
    Searched full:getline (Results 101 - 125 of 1146) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/zlib/src/contrib/iostream3/
test.cc 27 while (inf.getline(buf,80,'\n')) {
43 while (inf.getline(buf,80,'\n')) {
  /external/bison/build-aux/snippet/
warn-on-use.h 41 For an example, it is possible to poison 'getline' by:
43 [getline]) in configure.ac, which potentially defines
46 #undef getline
48 _GL_WARN_ON_USE (getline, "getline is required by POSIX 2008, but"
49 "not universally present; use the gnulib module getline");
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/impl/
logged_expectations.ipp 94 std::getline( m_log_file, line, LINE_SEP );
116 std::getline( m_log_file, line, LINE_SEP );
139 std::getline( m_log_file, line, LINE_SEP );
162 std::getline( m_log_file, line, LINE_SEP );
183 std::getline( m_log_file, line, LINE_SEP );
204 std::getline( m_log_file, line, LINE_SEP );
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/material/plugins/
J3MLoader.java 287 readParam(statement.getLine());
293 readValueParam(statement.getLine());
299 technique.addWorldParam(statement.getLine());
338 readRenderStateStatement(statement.getLine());
346 readRenderStateStatement(statement.getLine());
367 readDefine(statement.getLine());
373 String[] split = statement.getLine().split("[ \\{]");
376 readShaderStatement(statement.getLine());
378 readLightMode(statement.getLine());
380 readShadowMode(statement.getLine());
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
RecognitionException.java 107 this.line = token.getLine();
115 this.line = ((CharStream)input).getLine();
130 if ( payload.getLine()<= 0 ) {
136 if ( priorPayload!=null && priorPayload.getLine()>0 ) {
138 this.line = priorPayload.getLine();
148 this.line = payload.getLine();
153 this.line = ((Tree)this.node).getLine();
Lexer.java 78 state.tokenStartLine = input.getLine();
84 eof.setLine(getLine());
223 public int getLine() {
224 return input.getLine();
336 String inputSymbol = ((char)input.LT(1))+" line="+getLine()+":"+getCharPositionInLine();
341 String inputSymbol = ((char)input.LT(1))+" line="+getLine()+":"+getCharPositionInLine();
ClassicToken.java 54 line = oldToken.getLine();
86 public int getLine() {
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
RecognitionException.js 37 this.line = this.token.getLine();
47 this.line = input.getLine();
129 if ( payload.getLine()<= 0 ) {
135 if ( priorPayload && priorPayload.getLine()>0 ) {
137 this.line = priorPayload.getLine();
147 this.line = payload.getLine();
152 this.line = this.node.getLine();
  /development/perftests/panorama/feature_stab/src/dbregtest/
PgmImage.cpp 118 getline(in,format_header);
128 getline(in,m_comment);
130 getline(in,size_header);
133 getline(in,m_comment);
144 getline(in,colors_header);
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/matext/
MaterialExtensionLoader.java 69 if (statement.getLine().startsWith("set_texture_alias")){
70 String[] split = statement.getLine().split(" ", 3);
94 String[] split = statement.getLine().split(" ", 2);
122 if (statement.getLine().startsWith("import")){
125 }else if (statement.getLine().startsWith("material")){
  /packages/apps/Camera/jni/feature_stab/src/dbregtest/
PgmImage.cpp 118 getline(in,format_header);
128 getline(in,m_comment);
130 getline(in,size_header);
133 getline(in,m_comment);
144 getline(in,colors_header);
  /packages/apps/LegacyCamera/jni/feature_stab/src/dbregtest/
PgmImage.cpp 118 getline(in,format_header);
128 getline(in,m_comment);
130 getline(in,size_header);
133 getline(in,m_comment);
144 getline(in,colors_header);
  /external/selinux/libselinux/src/
init.c 74 num = getline(&buf, &len, fp);
80 num = getline(&buf, &len, fp);
122 while ((num = getline(&buf, &len, fp)) != -1) {
  /external/smali/smali/src/main/java/org/jf/smali/
SemanticException.java 56 this.line = token.getLine();
66 this.line = token.getLine();
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
MaterialLoader.java 158 String[] split = statement.getLine().split(" ", 2);
189 String[] split = statement.getLine().split(" ", 2);
211 String[] split = statement.getLine().split(" ", 2);
274 String[] split = statement.getLine().split(" ", 2);
290 String[] split = statement.getLine().split(" ", 2);
304 if (statement.getLine().startsWith("technique")){
306 }else if (statement.getLine().startsWith("receive_shadows")){
307 String isOn = statement.getLine().split("\\s")[1];
433 if (statement.getLine().startsWith("import")){
446 }else if (statement.getLine().startsWith("material"))
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
CommonTree.java 92 public int getLine() {
93 if ( token==null || token.getLine()==0 ) {
95 return getChild(0).getLine();
99 return token.getLine();
  /external/doclava/src/com/google/doclava/apicheck/
ApiFile.java 78 throw new ApiParseException("expected package got " + token, tokenizer.getLine());
100 throw new ApiParseException("expected '{' got " + token, tokenizer.getLine());
160 throw new ApiParseException("missing class or interface. got: " + token, tokenizer.getLine());
196 throw new ApiParseException("expected {", tokenizer.getLine());
215 throw new ApiParseException("expected ctor, enum_constant, field or method", tokenizer.getLine());
248 throw new ApiParseException("expected (", tokenizer.getLine());
268 throw new ApiParseException("expected ; found " + token, tokenizer.getLine());
332 throw new ApiParseException("expected (", tokenizer.getLine());
341 throw new ApiParseException("expected ; found " + token, tokenizer.getLine());
403 throw new ApiParseException("expected ; found " + token, tokenizer.getLine());
    [all...]
  /external/lldb/source/API/
SBDeclaration.cpp 94 SBDeclaration::GetLine () const
100 line = m_opaque_ap->GetLine();
103 log->Printf ("SBLineEntry(%p)::GetLine () => %u", m_opaque_ap.get(), line);
192 strm.Printf ("%s:%u", file_path, GetLine());
  /external/openfst/src/extensions/far/
strings.cc 34 while (getline(istrm, s))
  /external/toybox/lib/
portability.c 69 ssize_t getline(char **linep, size_t *np, FILE *stream) function
  /external/toybox/toys/other/
factor.c 84 if (-1 == getline(&s, &len, stdin)) break;
  /external/valgrind/drd/tests/
filter_stderr 42 awk 'BEGIN{begin=1} {if ($0 == "More than 100 errors detected. Subsequent errors") { getline; getline; } else { if (begin) begin = 0; else print last_line; }; last_line = $0; } END { if (! begin) print last_line; }' |
45 awk 'BEGIN{begin=1} { if ($0 == "WARNING: DRD support for Darwin is still considered as experimental.") { getline; getline; } else { if (begin) begin = 0; else print last_line; }; last_line = $0; } END { if (! begin) print last_line; }' |
  /system/extras/simpleperf/
utils.h 39 if (getline(&buf_, &bufsize_, fp_) != -1) {
  /external/llvm/lib/IR/
LLVMContextImpl.h 243 : Line(L->getLine()), Column(L->getColumn()), Scope(L->getRawScope()),
247 return Line == RHS->getLine() && Column == RHS->getColumn() &&
353 Line(N->getLine()), Scope(N->getRawScope()),
360 File == RHS->getRawFile() && Line == RHS->getLine() &&
403 Line(N->getLine()), Scope(N->getRawScope()),
413 File == RHS->getRawFile() && Line == RHS->getLine() &&
557 Line(N->getLine()), Type(N->getRawType()),
569 Line == RHS->getLine() && Type == RHS->getRawType() &&
599 : Scope(N->getRawScope()), File(N->getRawFile()), Line(N->getLine()),
604 Line == RHS->getLine() && Column == RHS->getColumn()
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
awkgram.y 80 %left GETLINE
241 | pattern '|' GETLINE var {
242 if (safe) SYNTAX("cmd | getline is unsafe");
243 else $$ = op3(GETLINE, $4, itonp($2), $1); }
244 | pattern '|' GETLINE {
245 if (safe) SYNTAX("cmd | getline is unsafe");
246 else $$ = op3(GETLINE, (Node*)0, itonp($2), $1); }
372 | GETLINE var LT term { $$ = op3(GETLINE, $2, itonp($3), $4); }
373 | GETLINE LT term { $$ = op3(GETLINE, NIL, itonp($2), $3);
    [all...]

Completed in 2358 milliseconds

1 2 3 45 6 7 8 91011>>