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

12 3 4

  /external/webkit/Source/WebCore/rendering/
RenderTextControlMultiLine.h 46 virtual int baselinePosition(FontBaseline, bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const;
RenderRubyRun.cpp 271 void RenderRubyRun::getOverhang(bool firstLine, RenderObject* startRenderer, RenderObject* endRenderer, int& startOverhang, int& endOverhang) const
290 int logicalLeftOverhang = rubyText->style(firstLine)->fontSize() / 2;
301 if (!startRenderer || !startRenderer->isText() || startRenderer->style(firstLine)->fontSize() > rubyBase->style(firstLine)->fontSize())
304 if (!endRenderer || !endRenderer->isText() || endRenderer->style(firstLine)->fontSize() > rubyBase->style(firstLine)->fontSize())
RenderTextControlMultiLine.cpp 101 int RenderTextControlMultiLine::baselinePosition(FontBaseline baselineType, bool firstLine, LineDirectionMode direction, LinePositionMode linePositionMode) const
103 return RenderBox::baselinePosition(baselineType, firstLine, direction, linePositionMode);
RenderBlock.h 66 virtual int lineHeight(bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const;
67 virtual int baselinePosition(FontBaseline, bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const;
105 int availableLogicalWidthForLine(int position, bool firstLine) const;
106 int logicalRightOffsetForLine(int position, bool firstLine) const { return logicalRightOffsetForLine(position, logicalRightOffsetForContent(), firstLine); }
107 int logicalLeftOffsetForLine(int position, bool firstLine) const { return logicalLeftOffsetForLine(position, logicalLeftOffsetForContent(), firstLine); }
108 int startOffsetForLine(int position, bool firstLine) const { return style()->isLeftToRightDirection() ? logicalLeftOffsetForLine(position, firstLine) : logicalRightOffsetForLine(position, firstLine); }
    [all...]
RootInlineBox.cpp 676 bool firstLine = m_firstLine;
677 if (firstLine && !renderer->document()->usesFirstLineRules())
678 firstLine = false;
682 if (isRenderInline && !firstLine) {
698 const Font& font = parent->style(firstLine)->font();
709 verticalPosition += renderer->baselinePosition(baselineType(), firstLine, lineDirection) - fontMetrics.ascent(baselineType());
711 verticalPosition += -static_cast<int>(fontMetrics.xHeight() / 2) - renderer->lineHeight(firstLine, lineDirection) / 2 + renderer->baselinePosition(baselineType(), firstLine, lineDirection);
716 verticalPosition -= (renderer->lineHeight(firstLine, lineDirection) - renderer->baselinePosition(baselineType(), firstLine, lineDirection))
    [all...]
RenderInline.h 148 virtual int lineHeight(bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const;
149 virtual int baselinePosition(FontBaseline, bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const;
RenderBlockLineLayout.cpp 215 InlineFlowBox* RenderBlock::createLineBoxes(RenderObject* obj, bool firstLine, InlineBox* childBox)
245 parentBox->setFirstLineStyleBit(firstLine);
298 RootInlineBox* RenderBlock::constructLine(BidiRunList<BidiRun>& bidiRuns, bool firstLine, bool lastLine)
325 parentBox = createLineBoxes(r->m_object->parent(), firstLine, box);
428 void RenderBlock::computeInlineDirectionPositionsForLine(RootInlineBox* lineBox, bool firstLine, BidiRun* firstRun, BidiRun* trailingSpaceRun, bool reachedEnd,
432 float logicalLeft = logicalLeftOffsetForLine(logicalHeight(), firstLine);
433 float availableLogicalWidth = logicalRightOffsetForLine(logicalHeight(), firstLine) - logicalLeft;
460 totalLogicalWidth += rt->style(firstLine)->font().wordSpacing();
472 int rootDescent = includeRootLine ? lineBox->renderer()->style(firstLine)->font().fontMetrics().descent() : 0;
473 int rootAscent = includeRootLine ? lineBox->renderer()->style(firstLine)->font().fontMetrics().ascent() : 0
    [all...]
RenderListBox.h 77 virtual int baselinePosition(FontBaseline, bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const;
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLOperator.h 44 virtual int baselinePosition(FontBaseline, bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const;
RenderMathMLFraction.cpp 170 int RenderMathMLFraction::baselinePosition(FontBaseline, bool firstLine, LineDirectionMode lineDirection, LinePositionMode linePositionMode) const
182 return RenderBlock::baselinePosition(AlphabeticBaseline, firstLine, lineDirection, linePositionMode);
RenderMathMLSubSup.cpp 175 int RenderMathMLSubSup::baselinePosition(FontBaseline, bool firstLine, LineDirectionMode direction, LinePositionMode linePositionMode) const
196 return topAdjust + box->baselinePosition(AlphabeticBaseline, firstLine, direction, linePositionMode) + static_cast<int>((zoomFactor > 1.25 ? 2 : 3) * zoomFactor);
202 baseline = box->baselinePosition(AlphabeticBaseline, firstLine, direction, linePositionMode);
RenderMathMLUnderOver.cpp 246 int RenderMathMLUnderOver::baselinePosition(FontBaseline, bool firstLine, LineDirectionMode direction, LinePositionMode linePositionMode) const
250 return RenderBlock::baselinePosition(AlphabeticBaseline, firstLine, direction, linePositionMode);
263 baseline += toRenderBoxModelObject(base)->baselinePosition(AlphabeticBaseline, firstLine, HorizontalLine, linePositionMode);
  /external/nist-sip/java/gov/nist/javax/sip/stack/
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);
  /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/webkit/Source/JavaScriptCore/runtime/
Executable.h 191 void recordParse(CodeFeatures features, bool hasCapturedVariables, int firstLine, int lastLine)
195 m_firstLine = firstLine;
298 static FunctionExecutable* create(ExecState* exec, const Identifier& name, const SourceCode& source, bool forceUsesArguments, FunctionParameters* parameters, bool isInStrictContext, int firstLine, int lastLine)
300 return new (exec) FunctionExecutable(exec, name, source, forceUsesArguments, parameters, isInStrictContext, firstLine, lastLine);
303 static FunctionExecutable* create(JSGlobalData* globalData, const Identifier& name, const SourceCode& source, bool forceUsesArguments, FunctionParameters* parameters, bool isInStrictContext, int firstLine, int lastLine)
305 return new (globalData) FunctionExecutable(globalData, name, source, forceUsesArguments, parameters, isInStrictContext, firstLine, lastLine);
378 FunctionExecutable(JSGlobalData*, const Identifier& name, const SourceCode&, bool forceUsesArguments, FunctionParameters*, bool, int firstLine, int lastLine);
379 FunctionExecutable(ExecState*, const Identifier& name, const SourceCode&, bool forceUsesArguments, FunctionParameters*, bool, int firstLine, int lastLine);
Executable.cpp 75 FunctionExecutable::FunctionExecutable(JSGlobalData* globalData, const Identifier& name, const SourceCode& source, bool forceUsesArguments, FunctionParameters* parameters, bool inStrictContext, int firstLine, int lastLine)
83 m_firstLine = firstLine;
87 FunctionExecutable::FunctionExecutable(ExecState* exec, const Identifier& name, const SourceCode& source, bool forceUsesArguments, FunctionParameters* parameters, bool inStrictContext, int firstLine, int lastLine)
95 m_firstLine = firstLine;
  /dalvik/dexlist/
DexList.cpp 101 int firstLine;
127 firstLine = -1;
129 pDexMethod->accessFlags, positionsCallback, NULL, &firstLine);
145 fileName, firstLine);
  /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/icu4c/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);
  /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/webkit/Source/WebKit/mac/WebView/
WebScriptDebugger.mm 116 int firstLine = sourceProvider->startPosition().m_line.oneBasedInt();
125 CallScriptDebugDelegate(implementations->didParseSourceFunc, webView, @selector(webView:didParseSource:baseLineNumber:fromURL:sourceId:forWebFrame:), nsSource, firstLine, nsURL, sourceProvider->asID(), webFrame);
135 CallScriptDebugDelegate(implementations->failedToParseSourceFunc, webView, @selector(webView:failedToParseSource:baseLineNumber:fromURL:withError:forWebFrame:), nsSource, firstLine, nsURL, error, webFrame);
  /external/webkit/Source/JavaScriptCore/parser/
Parser.h 102 result->setLoc(m_source->firstLine(), m_lastLine);

Completed in 426 milliseconds

12 3 4