HomeSort by relevance Sort by last modified time
    Searched refs:firstLine (Results 1 - 25 of 71) sorted by null

1 2 3

  /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);
  /external/nist-sip/java/gov/nist/javax/sip/stack/
DefaultMessageLogFactory.java 17 String firstLine, String tid, String callId, long tsHeaderValue) {
19 isSender, firstLine, tid, callId, tsHeaderValue);
24 String firstLine, String tid, String callId, long timestampVal) {
26 isSender, firstLine, tid, callId, timestampVal);
MessageLog.java 57 private String firstLine;
88 String firstLine,
107 this.firstLine = firstLine;
121 String firstLine,
134 this.firstLine = firstLine;
165 + firstLine.trim() + "\"" +
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/chromium/third_party/icu/source/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/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/icu4c/tools/genprops/
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...]
  /external/nist-sip/java/gov/nist/javax/sip/
LogRecordFactory.java 24 * @param firstLine -- the first line of the message to be logged.
35 String firstLine, String tid, String callId, long timestampVal);
  /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);
  /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;
  /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();
  /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);
  /dalvik/dexlist/
DexList.c 98 int firstLine;
124 firstLine = -1;
126 pDexMethod->accessFlags, positionsCallback, NULL, &firstLine);
142 fileName, firstLine);

Completed in 377 milliseconds

1 2 3