HomeSort by relevance Sort by last modified time
    Searched defs:firstLine (Results 1 - 25 of 41) sorted by null

1 2

  /external/nist-sip/java/gov/nist/javax/sip/stack/
MessageLog.java 57 private String firstLine;
88 String firstLine,
107 this.firstLine = firstLine;
121 String firstLine,
134 this.firstLine = firstLine;
165 + firstLine.trim() + "\"" +
ServerLog.java 323 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);
  /dalvik/dexlist/
DexList.cpp 101 int firstLine;
127 firstLine = -1;
129 pDexMethod->accessFlags, positionsCallback, NULL, &firstLine);
145 fileName, firstLine);
  /external/icu4c/samples/layout/
clayout.c 233 le_int32 firstLine, lastLine;
242 firstLine = si.nPos;
254 pf_draw(context->paragraph, surface, firstLine, lastLine);
layout.cpp 231 le_int32 firstLine, lastLine;
240 firstLine = si.nPos;
252 context->paragraph->draw(surface, firstLine, lastLine);
cgnomelayout.c 213 gint firstLine = 0, lastLine = context->height / pf_getLineHeight(context->paragraph);
216 pf_draw(context->paragraph, surface, firstLine, (maxLines < lastLine)? maxLines : lastLine);
gnomelayout.cpp 221 gint firstLine = 0, lastLine = context->height / context->paragraph->getLineHeight();
224 context->paragraph->draw(&surface, firstLine, (maxLines < lastLine)? maxLines : lastLine);
  /external/oauth/core/src/main/java/net/oauth/client/
URLConnectionResponse.java 114 String firstLine = "HTTP " + getStatusCode();
117 firstLine += (" " + message);
119 response.append(firstLine).append(EOL);
  /cts/tools/cfassembler/src/dxconvext/
ClassFileAssembler.java 83 String firstLine = br.readLine();
93 if (!firstLine.startsWith(hdr)) throw new RuntimeException("wrong format:"+firstLine +" isDex=" + isDex);
98 String classO = firstLine.substring(hdr.length()).trim();
  /external/emma/core/java12/com/vladium/emma/data/
MethodDescriptor.java 35 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 must be set
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/
ClassItem.java 54 int firstLine = Integer.MAX_VALUE;
58 if ((mFirstLine > 0) && (mFirstLine < firstLine))
59 firstLine = mFirstLine;
62 m_firstLine = firstLine;
63 return firstLine;
SrcFileItem.java 203 int firstLine = Integer.MAX_VALUE;
242 if (cline < firstLine) firstLine = cline;
246 m_firstLine = firstLine; // side effect
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
CombinedInputOutput.java 69 String firstLine = reader.readLine();
70 while (firstLine.startsWith(COMMENT_LINE_STARTER)) {
71 firstLine = reader.readLine();
73 return firstLine.matches("^" + DICTIONARY_TAG + "=[^:]+(:[^=]+=[^:]+)*");
XmlDictInputOutput.java 277 final String firstLine = reader.readLine();
278 return firstLine.matches("^\\s*<wordlist .*>\\s*$");
  /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/
ComponentResults.java 108 List firstLine = new ArrayList();
112 firstLine.add(scenarioResults.getName());
122 firstLine.add(0, new Integer(buildsLength));
123 differences.add(firstLine);
  /external/guava/guava-tests/test/com/google/common/base/
ThrowablesTest.java 498 String firstLine = quote(e.getClass().getName() + ": " + e.getMessage());
501 String expected = firstLine + "\n" + secondLine + "\n" + moreLines;
  /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/
ConfigTab.java 85 List firstLine;
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/chromium_org/third_party/WebKit/Source/core/rendering/
RenderText.cpp 833 bool firstLine = true;
843 if (firstLine) {
844 firstLine = false;
849 } else if (firstLine) {
851 firstLine = false;
    [all...]
RenderBlockLineLayout.cpp 617 static void updateLogicalInlinePositions(RenderBlockFlow* block, float& lineLogicalLeft, float& lineLogicalRight, float& availableLogicalWidth, bool firstLine, IndentTextOrNot shouldIndentText, LayoutUnit boxLogicalHeight)
619 LayoutUnit lineLogicalHeight = block->minLineHeightForReplacedRenderer(firstLine, boxLogicalHeight);
    [all...]
RenderBox.cpp     [all...]
  /frameworks/base/core/java/android/text/
Layout.java 199 int firstLine = TextUtils.unpackRangeStartFromLong(lineRange);
204 firstLine, lastLine);
205 drawText(canvas, firstLine, lastLine);
211 public void drawText(Canvas canvas, int firstLine, int lastLine) {
212 int previousLineBottom = getLineTop(firstLine);
213 int previousLineEnd = getLineStart(firstLine);
227 for (int i = firstLine; i <= lastLine; i++) {
256 if (start >= spanEnd && (i == firstLine || isFirstParaLine)) {
359 int cursorOffsetVertical, int firstLine, int lastLine) {
374 int previousLineBottom = getLineTop(firstLine);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
externs.js 462 firstLine: function() { },
  /frameworks/base/core/java/android/widget/
Editor.java     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.contenttype_3.4.100.v20100505-1235.jar 
  /external/emma/lib/
emma.jar 

Completed in 713 milliseconds

1 2