Searched defs:line (Results 126 - 150 of 882) sorted by relevance

1234567891011>>

/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DTMinus.java15 public TMinus(int line, int pos) argument
18 setLine(line);
H A DTName.java15 public TName(int line, int pos) argument
18 setLine(line);
H A DTNe.java15 public TNe(int line, int pos) argument
18 setLine(line);
H A DTOr.java15 public TOr(int line, int pos) argument
18 setLine(line);
H A DTParenClose.java15 public TParenClose(int line, int pos) argument
18 setLine(line);
H A DTParenOpen.java15 public TParenOpen(int line, int pos) argument
18 setLine(line);
H A DTPercent.java15 public TPercent(int line, int pos) argument
18 setLine(line);
H A DTPlus.java15 public TPlus(int line, int pos) argument
18 setLine(line);
H A DTQuestion.java15 public TQuestion(int line, int pos) argument
18 setLine(line);
H A DTSet.java15 public TSet(int line, int pos) argument
18 setLine(line);
H A DTSlash.java15 public TSlash(int line, int pos) argument
18 setLine(line);
H A DTStar.java15 public TStar(int line, int pos) argument
18 setLine(line);
H A DTString.java15 public TString(String text, int line, int pos) argument
18 setLine(line);
H A DTUvar.java15 public TUvar(int line, int pos) argument
18 setLine(line);
H A DTVar.java15 public TVar(int line, int pos) argument
18 setLine(line);
H A DTWith.java15 public TWith(int line, int pos) argument
18 setLine(line);
H A DTWord.java15 public TWord(String text, int line, int pos) argument
18 setLine(line);
/external/libvpx/libvpx/third_party/googletest/src/src/
H A Dgtest-typed-test.cc52 const char* file, int line, const char* registered_tests) {
98 fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(),
51 VerifyRegisteredTestNames( const char* file, int line, const char* registered_tests) argument
/external/llvm/lib/Support/
H A DErrorHandling.cpp88 unsigned line) {
96 dbgs() << " at " << file << ":" << line; local
87 llvm_unreachable_internal(const char *msg, const char *file, unsigned line) argument
H A DValgrind.cpp60 void AnnotateHappensBefore(const char *file, int line, argument
62 void AnnotateHappensAfter(const char *file, int line, argument
64 void AnnotateIgnoreWritesBegin(const char *file, int line) {} argument
65 void AnnotateIgnoreWritesEnd(const char *file, int line) {} argument
/external/llvm/utils/unittest/googletest/
H A Dgtest-typed-test.cc52 const char* file, int line, const char* registered_tests) {
98 fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(),
51 VerifyRegisteredTestNames( const char* file, int line, const char* registered_tests) argument
/external/mockito/src/org/mockito/internal/debugging/
H A DMockitoDebuggerImpl.java24 out += line("********************************");
25 out += line("*** Mockito interactions log ***");
26 out += line("********************************");
28 out += line(i.toString());
29 out += line(" invoked: " + i.getLocation());
31 out += line(" stubbed: " + i.stubInfo().stubbedAt().toString());
39 out += line("********************************");
40 out += line("*** Unused stubs ***");
41 out += line("********************************");
44 out += line(
50 private String line(String text) { method in class:MockitoDebuggerImpl
[all...]
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DLexer.java48 * get the header name of the line
53 public static String getHeaderName(String line) { argument
54 if (line == null)
58 int begin = line.indexOf(":");
61 headerName = line.substring(0, begin).trim();
74 * get the header value of the line
78 public static String getHeaderValue(String line) { argument
79 if (line == null)
83 int begin = line.indexOf(":");
84 headerValue = line
[all...]
H A DParserFactory.java284 public static HeaderParser createParser(String line) argument
286 String headerName = Lexer.getHeaderName(line);
287 String headerValue = Lexer.getHeaderValue(line);
300 args[0] = line;
312 return new HeaderParser(line);
351 * CVS: then name the system in this line, otherwise delete it.
355 * CVS: address here. If this is your work then delete this line.
359 * CVS: If you have not had it reviewed then delete this line.
381 * CVS: then name the system in this line, otherwise delete it.
385 * CVS: address here. If this is your work then delete this line
[all...]
/external/open-vcdiff/gtest/src/
H A Dgtest-typed-test.cc44 const char* file, int line, const char* registered_tests) {
86 fprintf(stderr, "%s %s", FormatFileLocation(file, line).c_str(),
43 VerifyRegisteredTestNames( const char* file, int line, const char* registered_tests) argument

Completed in 446 milliseconds

1234567891011>>