HomeSort by relevance Sort by last modified time
    Searched refs:firstLine (Results 26 - 50 of 83) sorted by null

12 3 4

  /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);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderMenuList.h 106 virtual int baselinePosition(FontBaseline baseline, bool firstLine, LineDirectionMode direction, LinePositionMode position) const OVERRIDE
108 return RenderBlock::baselinePosition(baseline, firstLine, direction, position);
RootInlineBox.cpp 720 bool firstLine = isFirstLineStyle();
721 if (firstLine && !renderer->document().styleEngine()->usesFirstLineRules())
722 firstLine = false;
726 if (isRenderInline && !firstLine) {
742 const Font& font = parent->style(firstLine)->font()
    [all...]
RenderBoxModelObject.h 161 virtual LayoutUnit lineHeight(bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const = 0;
162 virtual int baselinePosition(FontBaseline, bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const = 0;
RenderInline.h 166 virtual LayoutUnit lineHeight(bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const OVERRIDE FINAL;
167 virtual int baselinePosition(FontBaseline, bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const OVERRIDE FINAL;
RenderText.cpp 826 bool firstLine = true;
836 if (firstLine) {
837 firstLine = false;
    [all...]
  /dalvik/dexlist/
DexList.cpp 101 int firstLine;
127 firstLine = -1;
129 pDexMethod->accessFlags, positionsCallback, NULL, &firstLine);
145 fileName, firstLine);
  /external/chromium_org/third_party/icu/source/samples/layout/
paragraph.h 44 void draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine);
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);
gnomelayout.cpp 221 gint firstLine = 0, lastLine = context->height / context->paragraph->getLineHeight();
224 context->paragraph->draw(&surface, firstLine, (maxLines < lastLine)? maxLines : lastLine);
paragraph.cpp 216 void Paragraph::draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine)
223 for (li = firstLine; li <= lastLine; li += 1) {
  /external/emma/core/java12/com/vladium/emma/report/
SrcFileItem.java 203 int firstLine = Integer.MAX_VALUE;
242 if (cline < firstLine) firstLine = cline;
246 m_firstLine = firstLine; // side effect
MethodItem.java 26 public MethodItem (final IItem parent, final int ID, final String name, final String descriptor, final int firstLine)
33 m_firstLine = firstLine;
  /external/icu/icu4c/source/samples/layout/
paragraph.h 44 void draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine);
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);
gnomelayout.cpp 221 gint firstLine = 0, lastLine = context->height / context->paragraph->getLineHeight();
224 context->paragraph->draw(&surface, firstLine, (maxLines < lastLine)? maxLines : lastLine);
paragraph.cpp 216 void Paragraph::draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine)
223 for (li = firstLine; li <= lastLine; li += 1) {
  /external/nist-sip/java/gov/nist/javax/sip/parser/
StringMsgParser.java 357 private SIPMessage processFirstLine(String firstLine) throws ParseException {
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/
ComponentResults.java 108 List firstLine = new ArrayList();
112 firstLine.add(scenarioResults.getName());
122 firstLine.add(0, new Integer(buildsLength));
123 differences.add(firstLine);
  /external/deqp/android/scripts/
debug.py 20 firstLine = True
22 if firstLine:
23 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/
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();
  /art/test/122-npe/src/
Main.java 552 static void check(NullPointerException npe, int firstLine) {
556 System.out.print(firstLine);
560 checkElement(trace[0], "Main", "methodTwo", "Main.java", firstLine);
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
NetworkRequest.js 605 var firstLine = headersText.split(/\r\n/)[0];
606 var match = firstLine.match(/(HTTP\/\d+\.\d+)$/);
739 var firstLine = headersText.split(/\r\n/)[0];
740 var match = firstLine.match(/^(HTTP\/\d+\.\d+)/);

Completed in 1461 milliseconds

12 3 4