/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);
|
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/webkit/WebCore/rendering/ |
RenderBlockLineLayout.cpp | 211 InlineFlowBox* RenderBlock::createLineBoxes(RenderObject* obj, bool firstLine) 237 parentBox->setFirstLineStyleBit(firstLine); 264 RootInlineBox* RenderBlock::constructLine(unsigned runCount, BidiRun* firstRun, BidiRun* lastRun, bool firstLine, bool lastLine, RenderObject* endObject) 291 parentBox = createLineBoxes(r->m_object->parent(), firstLine); 329 void RenderBlock::computeHorizontalPositionsForLine(RootInlineBox* lineBox, bool firstLine, BidiRun* firstRun, BidiRun* trailingSpaceRun, bool reachedEnd) 332 int availableWidth = lineWidth(height(), firstLine); 357 totWidth += rt->style(firstLine)->font().wordSpacing(); 361 r->m_box->setWidth(rt->width(r->m_start, r->m_stop - r->m_start, totWidth, firstLine, &fallbackFonts)); 384 int x = leftOffset(height(), firstLine); 700 bool firstLine = true [all...] |
RenderInline.h | 71 int verticalPositionFromCache(bool firstLine) const; 127 virtual int lineHeight(bool firstLine, bool isRootLineBox = false) const;
|
RenderText.h | 71 virtual unsigned width(unsigned from, unsigned len, int xPos, bool firstLine = false, HashSet<const SimpleFontData*>* fallbackFonts = 0) const; 73 virtual int lineHeight(bool firstLine, bool isRootLineBox = false) const;
|
RenderListBox.h | 74 virtual int baselinePosition(bool firstLine, bool isRootLineBox) const;
|
RenderText.cpp | 522 bool firstLine = true; 532 if (firstLine) { 533 firstLine = false; 538 } else if (firstLine) { 540 firstLine = false; 609 bool firstLine = true; 725 if (firstLine) { 726 firstLine = false; 754 if (firstLine) [all...] |
RenderBoxModelObject.h | 96 int verticalPosition(bool firstLine) const;
|
RenderTableCell.h | 94 virtual int baselinePosition(bool firstLine = false, bool isRootLineBox = false) const;
|
InlineBox.h | 70 InlineBox(RenderObject* obj, int x, int y, int width, bool firstLine, bool constructed, 79 , m_firstLine(firstLine)
|
RenderInline.cpp | [all...] |
/external/webkit/JavaScriptCore/parser/ |
Parser.h | 86 result->setLoc(m_source->firstLine(), m_lastLine);
|
Lexer.cpp | 139 m_lineNumber = source.firstLine(); 1022 SourceCode Lexer::sourceCode(int openBrace, int closeBrace, int firstLine) 1025 return SourceCode(m_source->provider(), openBrace, closeBrace + 1, firstLine); 1041 closeBrace + numBOMsBeforeOpenBrace + numBOMsBetweenBraces + 1, firstLine);
|
Lexer.h | 53 SourceCode sourceCode(int openBrace, int closeBrace, int firstLine);
|
Nodes.cpp | 55 void StatementNode::setLoc(int firstLine, int lastLine) 57 m_line = firstLine;
|
/external/webkit/JavaScriptCore/bytecompiler/ |
NodesCodegen.cpp | [all...] |
/external/webkit/JavaScriptCore/interpreter/ |
Interpreter.h | 112 NEVER_INLINE void debug(CallFrame*, DebugHookID, int firstLine, int lastLine);
|
/external/webkit/WebCore/inspector/ |
JavaScriptDebugServer.h | 126 virtual void atStatement(const JSC::DebuggerCallFrame&, intptr_t sourceID, int firstLine);
|
/external/webkit/WebKit/mac/WebView/ |
WebScriptDebugger.mm | 124 CallScriptDebugDelegate(implementations->didParseSourceFunc, webView, @selector(webView:didParseSource:baseLineNumber:fromURL:sourceId:forWebFrame:), nsSource, source.firstLine(), nsURL, source.provider()->asID(), webFrame); 134 CallScriptDebugDelegate(implementations->failedToParseSourceFunc, webView, @selector(webView:failedToParseSource:baseLineNumber:fromURL:withError:forWebFrame:), nsSource, source.firstLine(), nsURL, error, webFrame);
|