Searched refs:getLine (Results 1 - 25 of 266) sorted by relevance

1234567891011

/external/chromium_org/third_party/angle/src/compiler/translator/timing/
H A DRestrictVertexShaderTiming.cpp14 node->getLine(),
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DBufferedLineReaderTest.cpp49 ASSERT_FALSE(reader.getLine(line));
56 ASSERT_FALSE(reader.getLine(line));
59 ASSERT_FALSE(reader.getLine(line));
68 ASSERT_TRUE(reader.getLine(line));
78 ASSERT_TRUE(reader.getLine(line));
81 ASSERT_FALSE(reader.getLine(line));
82 ASSERT_FALSE(reader.getLine(line));
91 ASSERT_TRUE(reader.getLine(line));
94 ASSERT_FALSE(reader.getLine(line));
95 ASSERT_FALSE(reader.getLine(lin
[all...]
H A DBufferedLineReader.cpp38 bool BufferedLineReader::getLine(String& line) function in class:blink::BufferedLineReader
H A DBufferedLineReader.h60 // potentially "unterminated" line to be returned from getLine.
66 bool getLine(String& line);
/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 DRecognitionException.java107 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();
H A DToken.java70 public int getLine(); method in interface:Token
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRCharStreamState.h42 @property (getter=getLine,setter=setLine:) NSInteger line;
52 - (NSInteger) getLine;
H A DANTLRCharStream.h44 - (NSInteger) getLine;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRCharStreamState.h42 @property (getter=getLine,setter=setLine:) NSInteger line;
52 - (NSInteger) getLine;
H A DANTLRCharStream.h44 - (NSInteger) getLine;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRCharStreamState.h42 @property (getter=getLine,setter=setLine:) NSInteger line;
52 - (NSInteger) getLine;
H A DANTLRCharStream.h44 - (NSInteger) getLine;
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DValidateLimitations.cpp230 error(node->getLine(),
260 error(node->getLine(), "Missing init declaration", "for");
271 error(init->getLine(), "Invalid init declaration", "for");
278 error(decl->getLine(), "Invalid init declaration", "for");
284 error(decl->getLine(), "Invalid init declaration", "for");
290 error(declInit->getLine(), "Invalid init declaration", "for");
296 error(symbol->getLine(),
303 error(declInit->getLine(),
318 error(node->getLine(), "Missing condition", "for");
328 error(node->getLine(), "Invali
[all...]
H A DValidateOutputs.cpp37 error(symbol->getLine(), "must explicitly specify all locations when using multiple fragment outputs", name.c_str());
51 error(symbol->getLine(), "output location must be < MAX_DRAW_BUFFERS", name.c_str());
66 error(symbol->getLine(), strstr.str().c_str(), name.c_str());
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
H A DRecognitionException.js37 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();
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/tree/
H A DCommonTree.js61 getLine: function() {
62 if ( !this.token || this.token.getLine()===0 ) {
64 return this.getChild(0).getLine();
68 return this.token.getLine();
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DEOF.java25 return new EOF(getLine(), getPos());
H A DTAlt.java25 return new TAlt(getLine(), getPos());
H A DTAnd.java25 return new TAnd(getLine(), getPos());
H A DTArgWhitespace.java25 return new TArgWhitespace(getText(), getLine(), getPos());
H A DTAssignment.java25 return new TAssignment(getLine(), getPos());
/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...]
/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();
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRStringStreamState.h47 - (NSUInteger) getLine;

Completed in 2214 milliseconds

1234567891011