HomeSort by relevance Sort by last modified time
    Searched refs:firstLine (Results 51 - 75 of 108) sorted by null

1 23 4 5

  /external/icu4c/samples/layout/
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) {
cgnomelayout.c 213 gint firstLine = 0, lastLine = context->height / pf_getLineHeight(context->paragraph);
216 pf_draw(context->paragraph, surface, firstLine, (maxLines < lastLine)? maxLines : lastLine);
pflow.c 315 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine)
323 for (li = firstLine; li <= lastLine; li += 1) {
  /external/webkit/Source/JavaScriptCore/parser/
Nodes.cpp 55 void StatementNode::setLoc(int firstLine, int lastLine)
57 m_line = firstLine;
Lexer.h 62 SourceCode sourceCode(int openBrace, int closeBrace, int firstLine);
  /external/webkit/Source/WebCore/rendering/
InlineBox.h 72 InlineBox(RenderObject* obj, float x, float y, float logicalWidth, bool firstLine, bool constructed,
81 , m_firstLine(firstLine)
RenderBoxModelObject.h 125 virtual int lineHeight(bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const = 0;
126 virtual int baselinePosition(FontBaseline, bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const = 0;
RenderText.h 75 virtual float width(unsigned from, unsigned len, float xPos, bool firstLine = false, HashSet<const SimpleFontData*>* fallbackFonts = 0, GlyphOverflow* = 0) const;
RenderText.cpp 713 bool firstLine = true;
723 if (firstLine) {
724 firstLine = false;
729 } else if (firstLine) {
731 firstLine = false;
802 bool firstLine = true;
    [all...]
RenderInline.cpp     [all...]
RenderListMarker.cpp     [all...]
RenderBox.h 384 virtual int lineHeight(bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const;
385 virtual int baselinePosition(FontBaseline, bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const;
  /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/webkit/Source/JavaScriptCore/bytecompiler/
NodesCodegen.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/webkit/Source/JavaScriptCore/interpreter/
Interpreter.h 112 NEVER_INLINE void debug(CallFrame*, DebugHookID, int firstLine, int lastLine);
  /external/webkit/Source/WebCore/bindings/js/
ScriptDebugServer.h 116 virtual void atStatement(const JSC::DebuggerCallFrame&, intptr_t sourceID, int firstLine);
ScriptDebugServer.cpp 235 int firstLine = sourceProvider->startPosition().m_line.oneBasedInt();
240 copy[i]->failedToParseSource(url, data, firstLine, errorLine, errorMessage);
  /external/webkit/Source/WebCore/inspector/
InspectorDebuggerAgent.h 123 virtual void failedToParseSource(const String& url, const String& data, int firstLine, int errorLine, const String& errorMessage);
InspectorDebuggerAgent.cpp 402 void InspectorDebuggerAgent::failedToParseSource(const String& url, const String& data, int firstLine, int errorLine, const String& errorMessage)
404 m_frontend->scriptFailedToParse(url, data, firstLine, errorLine, errorMessage);
  /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/webkit/Source/WebCore/rendering/mathml/
RenderMathMLOperator.cpp 335 int RenderMathMLOperator::baselinePosition(FontBaseline, bool firstLine, LineDirectionMode lineDirection, LinePositionMode linePositionMode) const
339 return RenderBlock::baselinePosition(AlphabeticBaseline, firstLine, lineDirection, linePositionMode);
  /external/webkit/Tools/Scripts/
VCSUtils.pm 461 my $firstLine = <$fileHandle>;
464 return unless defined($firstLine);
467 if ($firstLine =~ /\r\n/) {
469 } elsif ($firstLine =~ /\r/) {
471 } elsif ($firstLine =~ /\n/) {
    [all...]
  /packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
XmlDictInputOutput.java 277 final String firstLine = reader.readLine();
278 return firstLine.matches("^\\s*<wordlist .*>\\s*$");

Completed in 1017 milliseconds

1 23 4 5