Searched refs:firstLine (Results 1 - 25 of 52) sorted by relevance

123

/external/nist-sip/java/gov/nist/javax/sip/stack/
H A DDefaultMessageLogFactory.java17 String firstLine, String tid, String callId, long tsHeaderValue) {
19 isSender, firstLine, tid, callId, tsHeaderValue);
24 String firstLine, String tid, String callId, long timestampVal) {
26 isSender, firstLine, tid, callId, timestampVal);
15 createLogRecord(String message, String source, String destination, String timeStamp, boolean isSender, String firstLine, String tid, String callId, long tsHeaderValue) argument
22 createLogRecord(String message, String source, String destination, long timeStamp, boolean isSender, String firstLine, String tid, String callId, long timestampVal) argument
H A DMessageLog.java57 private String firstLine; field in class:MessageLog
88 String firstLine,
107 this.firstLine = firstLine;
121 String firstLine,
134 this.firstLine = firstLine;
165 + firstLine.trim() + "\"" +
82 MessageLog( String message, String source, String destination, String timeStamp, boolean isSender, String firstLine, String tid, String callId, long timeStampHeaderValue) argument
115 MessageLog( String message, String source, String destination, long timeStamp, boolean isSender, String firstLine, String tid, String callId, long timestampVal) argument
H A DServerLog.java323 String callId, String firstLine, String status, String tid, long time,
327 sender, firstLine, tid, callId, timestampVal);
349 String firstLine = message.getFirstLine().trim();
354 logMessage(inputText, from, to, sender, callId, firstLine, null, tid, time, tsval);
374 String firstLine = message.getFirstLine().trim();
379 logMessage(encoded, from, to, sender, callId, firstLine, status, tid, time, tsval);
322 logMessage(String message, String from, String to, boolean sender, String callId, String firstLine, String status, String tid, long time, long timestampVal) argument
/external/nist-sip/java/gov/nist/javax/sip/
H A DLogRecordFactory.java24 * @param firstLine -- the first line of the message to be logged.
35 String firstLine, String tid, String callId, long timestampVal);
33 createLogRecord(String message, String source, String destination, long timeStamp, boolean isSender, String firstLine, String tid, String callId, long timestampVal) argument
/external/icu/icu4c/source/samples/layout/
H A Dpflow.h29 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine);
H A Dparagraph.h44 void draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine);
H A Dclayout.c233 le_int32 firstLine, lastLine; local
242 firstLine = si.nPos;
254 pf_draw(context->paragraph, surface, firstLine, lastLine);
H A Dlayout.cpp231 le_int32 firstLine, lastLine; local
240 firstLine = si.nPos;
252 context->paragraph->draw(surface, firstLine, lastLine);
H A Dgnomelayout.cpp221 gint firstLine = 0, lastLine = context->height / context->paragraph->getLineHeight(); local
224 context->paragraph->draw(&surface, firstLine, (maxLines < lastLine)? maxLines : lastLine);
H A Dparagraph.cpp221 void Paragraph::draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine) argument
228 for (li = firstLine; li <= lastLine; li += 1) {
/external/emma/core/java12/com/vladium/emma/report/
H A DClassItem.java54 int firstLine = Integer.MAX_VALUE;
58 if ((mFirstLine > 0) && (mFirstLine < firstLine))
59 firstLine = mFirstLine;
62 m_firstLine = firstLine;
63 return firstLine;
H A DSrcFileItem.java203 int firstLine = Integer.MAX_VALUE;
242 if (cline < firstLine) firstLine = cline;
246 m_firstLine = firstLine; // side effect
H A DMethodItem.java26 public MethodItem (final IItem parent, final int ID, final String name, final String descriptor, final int firstLine) argument
33 m_firstLine = firstLine;
/external/emma/core/java12/com/vladium/emma/data/
H A DMethodDescriptor.java35 final int [] blockSizes, final int [][] blockMap, final int firstLine)
55 if ($assert.ENABLED) $assert.ASSERT (firstLine > 0, "firstLine must be positive: " + firstLine);
72 m_firstLine = firstLine;
250 int firstLine = 0;
260 // blockMap, lineMap, firstLine must be set:
270 firstLine = in.readInt ();
276 return new MethodDescriptor (name, descriptor, status, blockSizes, blockMap, firstLine);
296 // blockMap, lineMap, firstLine mus
34 MethodDescriptor(final String name, final String descriptor, final int status, final int [] blockSizes, final int [][] blockMap, final int firstLine) argument
[all...]
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
H A DSourceNodeImpl.java90 final int firstLine = child.getFirstLine();
91 if (firstLine != UNKNOWN_LINE) {
93 ensureCapacity(firstLine, lastLine);
94 for (int i = firstLine; i <= lastLine; i++) {
H A DMethodAnalyzer.java39 private int firstLine = ISourceNode.UNKNOWN_LINE; field in class:MethodAnalyzer
100 if (firstLine > line || lastLine == ISourceNode.UNKNOWN_LINE) {
101 firstLine = line;
273 coverage.ensureCapacity(firstLine, lastLine);
/external/guice/core/src/com/google/inject/internal/util/
H A DLineNumbers.java50 private int firstLine = Integer.MAX_VALUE; field in class:LineNumbers
95 return firstLine == Integer.MAX_VALUE ? 1 : firstLine;
155 if (line < firstLine) {
156 firstLine = line;
/external/oauth/core/src/main/java/net/oauth/client/
H A DURLConnectionResponse.java114 String firstLine = "HTTP " + getStatusCode();
117 firstLine += (" " + message);
119 response.append(firstLine).append(EOL);
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DStringMsgParser.java357 private SIPMessage processFirstLine(String firstLine) throws ParseException { argument
359 if (!firstLine.startsWith(SIPConstants.SIP_VERSION_STRING)) {
362 RequestLine requestLine = new RequestLineParser(firstLine + "\n")
368 RequestLine.class, firstLine, rawStringMessage);
376 StatusLine sl = new StatusLineParser(firstLine + "\n").parse();
381 StatusLine.class, firstLine, rawStringMessage);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/db/
H A DComponentResults.java108 List firstLine = new ArrayList();
112 firstLine.add(scenarioResults.getName());
122 firstLine.add(0, new Integer(buildsLength));
123 differences.add(firstLine);
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/stringprep/
H A DIDNAConformanceTest.java256 boolean firstLine = true;
261 if (firstLine) {
264 firstLine = false;
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/stringprep/
H A DIDNAConformanceTest.java252 boolean firstLine = true;
257 if (firstLine) {
260 firstLine = false;
/external/deqp/android/scripts/
H A Ddebug.py41 firstLine = True
43 if firstLine:
44 firstLine = False
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/internal/performance/results/ui/
H A DConfigTab.java85 List firstLine; field in class:ConfigTab
153 String text = (String) this.firstLine.get(i);
170 componentsView.select(ConfigTab.this.results, ConfigTab.this.configName, (String) ConfigTab.this.firstLine.get(cellPosition.x), tabTable.getItem(cellPosition.y).getText());
304 this.firstLine = null;
324 this.firstLine = (List) lines.next();
/external/gptfdisk/
H A Dgptcurses.cc597 uint i, j = 0, firstLine, numPerLine; local
611 firstLine = LINES - 4;
614 move(firstLine, 0);
624 move(firstLine + i / numPerLine, (i % numPerLine) * 12 + 4);

Completed in 4120 milliseconds

123