Searched defs:getLine (Results 1 - 25 of 58) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DBufferedLineReader.cpp38 bool BufferedLineReader::getLine(String& line) function in class:blink::BufferedLineReader
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DCharStream.java48 int getLine(); method in interface:CharStream
H A DClassicToken.java54 line = oldToken.getLine();
86 public int getLine() { method in class:ClassicToken
H A DANTLRStringStream.java209 public int getLine() { method in class:ANTLRStringStream
H A DCommonToken.java75 line = oldToken.getLine();
119 public int getLine() { method in class:CommonToken
H A DLexer.java78 state.tokenStartLine = input.getLine();
84 eof.setLine(getLine());
223 public int getLine() { method in class:Lexer
224 return input.getLine();
336 String inputSymbol = ((char)input.LT(1))+" line="+getLine()+":"+getCharPositionInLine();
341 String inputSymbol = ((char)input.LT(1))+" line="+getLine()+":"+getCharPositionInLine();
H A DToken.java70 public int getLine(); method in interface:Token
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DSourcePosition.java165 public int getLine() { method in class:SourcePosition
/external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
H A DJSilverBadSyntaxException.java84 public int getLine() { method in class:JSilverBadSyntaxException
/external/llvm/include/llvm/IR/
H A DDebugLoc.h73 unsigned getLine() const { function in class:llvm::DebugLoc
/external/llvm/include/llvm/Support/
H A DFormattedStream.h130 /// getLine - Return the line number
131 unsigned getLine() { return Position.second; } function in class:llvm::formatted_raw_ostream
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3lexer.h173 ANTLR3_UINT32 (*getLine) (struct ANTLR3_LEXER_struct * lexer); member in struct:ANTLR3_LEXER_struct
H A Dantlr3basetree.h115 ANTLR3_UINT32 (*getLine) (struct ANTLR3_BASE_TREE_struct * tree); member in struct:ANTLR3_BASE_TREE_struct
H A Dantlr3input.h174 ANTLR3_UINT32 (*getLine) (struct ANTLR3_INPUT_STREAM_struct * input); member in struct:ANTLR3_INPUT_STREAM_struct
H A Dantlr3commontoken.h254 ANTLR3_UINT32 (*getLine)(struct ANTLR3_COMMON_TOKEN_struct * token); member in struct:ANTLR3_COMMON_TOKEN_struct
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DToken.java22 public int getLine() method in class:Token
/external/nist-sip/java/gov/nist/core/
H A DStringTokenizer.java112 public String getLine() { method in class:StringTokenizer
125 String retval = this.getLine();
166 String line = getLine();
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3commontree.c46 static ANTLR3_UINT32 getLine (pANTLR3_BASE_TREE tree);
306 tree->baseTree.getLine = getLine;
445 static ANTLR3_UINT32 getLine (pANTLR3_BASE_TREE tree) function
454 if (token == NULL || token->getLine(token) == 0)
461 return child->getLine(child);
465 return token->getLine(token);
H A Dantlr3basetree.c40 static ANTLR3_UINT32 getLine (pANTLR3_BASE_TREE tree);
70 tree->getLine = getLine;
90 getLine (pANTLR3_BASE_TREE tree) function
H A Dantlr3commontoken.c45 static ANTLR3_UINT32 getLine (pANTLR3_COMMON_TOKEN token);
333 token->getLine = getLine;
474 static ANTLR3_UINT32 getLine (pANTLR3_COMMON_TOKEN token) function
579 outtext->addi (outtext, (ANTLR3_INT32)token->getLine(token));
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DCommonTree.java92 public int getLine() { method in class:CommonTree
93 if ( token==null || token.getLine()==0 ) {
95 return getChild(0).getLine();
99 return token.getLine();
H A DTree.java120 int getLine(); method in interface:Tree
/external/antlr/antlr-3.4/runtime/Python/antlr3/
H A Dtokens.py74 def getLine(self): member in class:Token
252 def getLine(self): member in class:CommonToken
357 def getLine(self): member in class:ClassicToken
/external/clang/utils/analyzer/
H A DCmpRuns.py57 def getLine(self): member in class:AnalysisDiagnostic
83 return '%s:%d:%d, %s: %s' % (self.getFileName(), self.getLine(),
/external/llvm/unittests/ExecutionEngine/JIT/
H A DJITEventListenerTestCommon.h40 inline unsigned int getLine() { function
96 DebugLoc DebugLocation = DebugLoc::get(getLine(), getCol(),
136 getLine()));
144 EXPECT_EQ(ReportedDebugFuncs.begin()->second.begin()->second, getLine());
156 DebugLocations.push_back(make_pair(string(getFilename()), getLine() + i));
172 EXPECT_EQ(i->second, getLine() + VerifyCount);
186 getLine()));
187 DebugLocations.push_back(std::make_pair(secondFilename, getLine()));
199 EXPECT_EQ(FunctionInfo.at(0).second, getLine());
200 EXPECT_EQ(FunctionInfo.at(1).second, getLine());
[all...]

Completed in 1190 milliseconds

123