/external/chromium_org/third_party/WebKit/Source/core/rendering/line/ |
LineWidth.h | 47 LineWidth(RenderBlockFlow&, bool isFirstLine, IndentTextOrNot shouldIndentText); 68 void fitBelowFloats(bool isFirstLine = false); 76 void wrapNextToShapeOutside(bool isFirstLine);
|
LineWidth.cpp | 38 LineWidth::LineWidth(RenderBlockFlow& block, bool isFirstLine, IndentTextOrNot shouldIndentText) 47 , m_isFirstLine(isFirstLine) 157 void LineWidth::wrapNextToShapeOutside(bool isFirstLine) 159 LayoutUnit lineHeight = m_block.lineHeight(isFirstLine, m_block.isHorizontalWritingMode() ? HorizontalLine : VerticalLine, PositionOfInteriorLineBoxes); 180 void LineWidth::fitBelowFloats(bool isFirstLine) 193 return wrapNextToShapeOutside(isFirstLine);
|
LineBreaker.cpp | 70 LineWidth width(*m_block, lineInfo.isFirstLine(), requiresIndent(lineInfo.isFirstLine(), lineInfo.previousLineBrokeCleanly(), m_block->style()));
|
LineInfo.h | 42 bool isFirstLine() const { return m_isFirstLine; }
|
BreakingContextInlineHeaders.h | 170 && (flow->style(lineInfo.isFirstLine())->lineHeight() != parent->style(lineInfo.isFirstLine())->lineHeight() 557 RenderStyle* style = renderText->style(m_lineInfo.isFirstLine()); 676 m_width.fitBelowFloats(m_lineInfo.isFirstLine()); [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
fileinput.py | 17 line number in the current file; isfirstline() returns true iff the 49 lineno(), fileline(), isfirstline(), isstdin(), nextfile() and close() 85 "isfirstline","isstdin","FileInput"] 166 def isfirstline(): function 173 return _state.isfirstline() 188 filename(), lineno(), fileline(), isfirstline(), isstdin(), fileno(), 371 def isfirstline(self): member in class:FileInput 409 isfirstline() and "*" or "", line)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
fileinput.py | 17 line number in the current file; isfirstline() returns true iff the 49 lineno(), fileline(), isfirstline(), isstdin(), nextfile() and close() 85 "isfirstline","isstdin","FileInput"] 166 def isfirstline(): function 173 return _state.isfirstline() 188 filename(), lineno(), fileline(), isfirstline(), isstdin(), fileno(), 371 def isfirstline(self): member in class:FileInput 409 isfirstline() and "*" or "", line)
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
StringMsgParser.java | 148 boolean isFirstLine = true; 182 if (isFirstLine) { 207 isFirstLine = false; 263 boolean isFirstLine = true; 293 if (isFirstLine) { 318 isFirstLine = false;
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderBlockLineLayout.cpp | 124 parentBox->setFirstLineStyleBit(lineInfo.isFirstLine()); 361 renderer->getOverhang(lineInfo.isFirstLine(), renderer->style()->isLeftToRightDirection() ? previousObject : nextObject, renderer->style()->isLeftToRightDirection() ? nextObject : previousObject, startOverhang, endOverhang); 372 const Font& font = renderer->style(lineInfo.isFirstLine())->font(); 389 const Font& font = renderer->style(lineInfo.isFirstLine())->font(); 419 measuredWidth += renderer->width(wordMeasurement.startOffset, wordLength, xPos, run->direction(), lineInfo.isFirstLine()); 438 measuredWidth = renderer->width(run->m_start, run->m_stop - run->m_start, xPos, run->direction(), lineInfo.isFirstLine(), &fallbackFonts, &glyphOverflow); 554 bool isFirstLine = lineInfo.isFirstLine() && !(isAnonymousBlock() && parent()->slowFirstChild() != this); 556 IndentTextOrNot shouldIndentText = requiresIndent(isFirstLine, isAfterHardLineBreak, style()); 560 updateLogicalInlinePositions(this, lineLogicalLeft, lineLogicalRight, availableLogicalWidth, isFirstLine, shouldIndentText, 0) [all...] |
RenderBlock.h | 87 LayoutUnit minLineHeightForReplacedRenderer(bool isFirstLine, LayoutUnit replacedHeight) const;
|
RenderBlock.cpp | [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_fileinput.py | 68 self.assertFalse(fi.isfirstline())
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_fileinput.py | 68 self.assertFalse(fi.isfirstline())
|
/external/clang/lib/AST/ |
ASTDumper.cpp | 97 bool IsFirstLine; 187 : OS(OS), Traits(Traits), SM(SM), IsFirstLine(true), MoreChildren(false), 193 : OS(OS), Traits(Traits), SM(SM), IsFirstLine(true), MoreChildren(false), 393 if (IsFirstLine) 394 IsFirstLine = false; [all...] |