/external/webkit/JavaScriptCore/parser/ |
SourceCode.h | 47 SourceCode(PassRefPtr<SourceProvider> provider, int firstLine = 1) 51 , m_firstLine(std::max(firstLine, 1)) 55 SourceCode(PassRefPtr<SourceProvider> provider, int start, int end, int firstLine) 59 , m_firstLine(std::max(firstLine, 1)) 72 int firstLine() const { return m_firstLine; } 85 inline SourceCode makeSource(const UString& source, const UString& url = UString(), int firstLine = 1) 87 return SourceCode(UStringSourceProvider::create(source, url), firstLine);
|
Parser.h | 86 result->setLoc(m_source->firstLine(), m_lastLine);
|
/external/icu4c/tools/genprops/misc/ |
ucdmerge.c | 73 static char line[2000], firstLine[2000], lastLine[2000]; 96 if(last>=0 && (c!=(last+1) || !sameData(firstLine, line))) { 100 puts(firstLine); 108 strchr(firstLine, ';'));/* first line starting from the first ; */ 109 } else if(strchr(firstLine, '#')==NULL) { 113 strchr(firstLine, ';'), /* first line starting from the first ; */ 119 strchr(firstLine, ';'), /* first line starting from the first ; */ 138 strcpy(firstLine, line);
|
/external/webkit/WebCore/rendering/ |
RenderBR.h | 44 virtual unsigned width(unsigned /*from*/, unsigned /*len*/, int /*xpos*/, bool /*firstLine = false*/) const { return 0; } 46 virtual int lineHeight(bool firstLine, bool isRootLineBox = false) const; 47 virtual int baselinePosition(bool firstLine, bool isRootLineBox = false) const;
|
RenderBR.cpp | 41 int RenderBR::baselinePosition(bool firstLine, bool isRootLineBox) const 45 return RenderText::baselinePosition(firstLine, isRootLineBox); 48 int RenderBR::lineHeight(bool firstLine, bool /*isRootLineBox*/) const 53 if (firstLine) { 54 RenderStyle* s = style(firstLine);
|
EllipsisBox.h | 33 int width, int height, int y, bool firstLine, InlineBox* markupBox) 34 : InlineBox(obj, 0, y, width, firstLine, true, false, false, 0, 0, parent)
|
RenderReplaced.h | 59 virtual int lineHeight(bool firstLine, bool isRootLineBox = false) const; 60 virtual int baselinePosition(bool firstLine, bool isRootLineBox = false) const;
|
RenderTextControlMultiLine.h | 45 virtual int baselinePosition(bool firstLine, bool isRootLineBox) const;
|
RenderListMarker.h | 60 virtual int lineHeight(bool firstLine, bool isRootLineBox = false) const; 61 virtual int baselinePosition(bool firstLine, bool isRootLineBox = false) const;
|
RenderBlock.h | 58 virtual int lineHeight(bool firstLine, bool isRootLineBox = false) const; 59 virtual int baselinePosition(bool firstLine, bool isRootLineBox = false) const; 94 int lineWidth(int y, bool firstLine) const; 100 int rightOffset(int y, bool firstLine) const { return rightRelOffset(y, rightOffset(), firstLine); } 101 int leftOffset(int y, bool firstLine) const { return leftRelOffset(y, leftOffset(), firstLine); } 253 RootInlineBox* determineStartPosition(bool& firstLine, bool& fullLayout, bool& previousLineBrokeCleanly, 262 int skipLeadingWhitespace(InlineBidiResolver&, bool firstLine, bool isLineEmpty, bool previousLineBrokeCleanly); 263 void fitBelowFloats(int widthToFit, bool firstLine, int& availableWidth) [all...] |
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) 287 parentBox = createLineBoxes(r->m_object->parent(), firstLine); 320 void RenderBlock::computeHorizontalPositionsForLine(RootInlineBox* lineBox, bool firstLine, BidiRun* firstRun, BidiRun* trailingSpaceRun, bool reachedEnd) 323 int availableWidth = lineWidth(height(), firstLine); 348 totWidth += rt->style(firstLine)->font().wordSpacing(); 352 r->m_box->setWidth(rt->width(r->m_start, r->m_stop - r->m_start, totWidth, firstLine, &fallbackFonts)); 375 int x = leftOffset(height(), firstLine); 691 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;
|
/external/webkit/WebKitTools/Scripts/ |
parallelcl | 46 my $firstLine = <COMMAND>; 47 $firstLine =~ s/\r?\n$//; 52 print STDERR "Last character of first line = '" . substr($firstLine, -1, 1) . "'\n" if $debug; 53 if (substr($firstLine, -1, 1) eq '"') { 55 $firstFileIndex = rindex($firstLine, '"', length($firstLine) - 2); 58 $firstFileIndex = rindex($firstLine, ' ') + 1; 61 my $options = substr($firstLine, 0, $firstFileIndex) . join(' ', @ARGV[1 .. $#ARGV]); 62 my $possibleFirstFile = substr($firstLine, $firstFileIndex);
|
/external/webkit/WebCore/bindings/js/ |
StringSourceProvider.h | 56 inline JSC::SourceCode makeSource(const String& source, const String& url = String(), int firstLine = 1) 58 return JSC::SourceCode(StringSourceProvider::create(source, url), firstLine);
|
ScriptSourceCode.h | 63 int startLine() const { return m_code.firstLine(); }
|
/external/webkit/JavaScriptCore/runtime/ |
Executable.h | 146 void recordParse(CodeFeatures features, int firstLine, int lastLine) 149 m_firstLine = firstLine; 249 static PassRefPtr<FunctionExecutable> create(ExecState* exec, const Identifier& name, const SourceCode& source, bool forceUsesArguments, FunctionParameters* parameters, int firstLine, int lastLine) 251 return adoptRef(new FunctionExecutable(exec, name, source, forceUsesArguments, parameters, firstLine, lastLine)); 254 static PassRefPtr<FunctionExecutable> create(JSGlobalData* globalData, const Identifier& name, const SourceCode& source, bool forceUsesArguments, FunctionParameters* parameters, int firstLine, int lastLine) 256 return adoptRef(new FunctionExecutable(globalData, name, source, forceUsesArguments, parameters, firstLine, lastLine)); 296 FunctionExecutable(JSGlobalData* globalData, const Identifier& name, const SourceCode& source, bool forceUsesArguments, FunctionParameters* parameters, int firstLine, int lastLine) 304 m_firstLine = firstLine; 308 FunctionExecutable(ExecState* exec, const Identifier& name, const SourceCode& source, bool forceUsesArguments, FunctionParameters* parameters, int firstLine, int lastLine) 316 m_firstLine = firstLine; [all...] |
/external/icu4c/samples/layout/ |
pflow.h | 29 void pf_draw(pf_flow *flow, rs_surface *surface, le_int32 firstLine, le_int32 lastLine);
|
paragraph.h | 44 void draw(RenderingSurface *surface, le_int32 firstLine, le_int32 lastLine);
|
/external/emma/core/java12/com/vladium/emma/report/ |
ClassItem.java | 54 int firstLine = Integer.MAX_VALUE; 58 if ((mFirstLine > 0) && (mFirstLine < firstLine)) 59 firstLine = mFirstLine; 62 m_firstLine = firstLine; 63 return firstLine;
|
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/emma/core/java12/com/vladium/emma/data/ |
MethodDescriptor.java | 35 final int [] blockSizes, final int [][] blockMap, final int firstLine) 55 if ($assert.ENABLED) $assert.ASSERT (firstLine > 0, "firstLine must be positive: " + firstLine); 72 m_firstLine = firstLine; 250 int firstLine = 0; 260 // blockMap, lineMap, firstLine must be set: 270 firstLine = in.readInt (); 276 return new MethodDescriptor (name, descriptor, status, blockSizes, blockMap, firstLine); 296 // blockMap, lineMap, firstLine must be set [all...] |
/cts/tools/dx-tests/src/dxconvext/ |
ClassFileAssembler.java | 83 String firstLine = br.readLine(); 93 if (!firstLine.startsWith(hdr)) throw new RuntimeException("wrong format:"+firstLine +" isDex=" + isDex); 98 String classO = firstLine.substring(hdr.length()).trim();
|
/dalvik/dexlist/ |
DexList.c | 98 int firstLine; 124 firstLine = -1; 126 pDexMethod->accessFlags, positionsCallback, NULL, &firstLine); 142 fileName, firstLine);
|