HomeSort by relevance Sort by last modified time
    Searched full:firstline (Results 1 - 25 of 109) sorted by null

1 2 3 4 5

  /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() + "\"" +
  /external/webkit/Source/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/chromium/chrome/browser/safe_browsing/
report.proto 31 message FirstLine {
37 optional FirstLine firstline = 1;
48 message FirstLine {
54 optional FirstLine firstline = 1;
  /external/webkit/Source/WebCore/rendering/
RenderBR.cpp 41 int RenderBR::lineHeight(bool firstLine) const
43 if (firstLine && document()->usesFirstLineRules()) {
44 RenderStyle* s = style(firstLine);
EllipsisBox.h 33 int width, int height, int y, bool firstLine, bool isVertical, InlineBox* markupBox)
34 : InlineBox(obj, 0, y, width, firstLine, true, false, false, isVertical, 0, 0, parent)
RenderBR.h 44 virtual float width(unsigned /*from*/, unsigned /*len*/, float /*xpos*/, bool = false /*firstLine*/, HashSet<const SimpleFontData*>* = 0 /*fallbackFonts*/, GlyphOverflow* = 0) const { return 0; }
46 int lineHeight(bool firstLine) const;
RenderListMarker.h 61 virtual int lineHeight(bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const;
62 virtual int baselinePosition(FontBaseline, bool firstLine, LineDirectionMode, LinePositionMode = PositionOnContainingLine) const;
RenderRubyRun.cpp 271 void RenderRubyRun::getOverhang(bool firstLine, RenderObject* startRenderer, RenderObject* endRenderer, int& startOverhang, int& endOverhang) const
290 int logicalLeftOverhang = rubyText->style(firstLine)->fontSize() / 2;
301 if (!startRenderer || !startRenderer->isText() || startRenderer->style(firstLine)->fontSize() > rubyBase->style(firstLine)->fontSize())
304 if (!endRenderer || !endRenderer->isText() || endRenderer->style(firstLine)->fontSize() > rubyBase->style(firstLine)->fontSize())
RenderTextControlMultiLine.cpp 101 int RenderTextControlMultiLine::baselinePosition(FontBaseline baselineType, bool firstLine, LineDirectionMode direction, LinePositionMode linePositionMode) const
103 return RenderBox::baselinePosition(baselineType, firstLine, direction, linePositionMode);
  /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/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/Tools/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/chromium/net/ftp/
ftp_ctrl_response_buffer_unittest.cc 56 EXPECT_EQ(net::OK, PushDataToBuffer("230-FirstLine\r\n"));
69 EXPECT_EQ("FirstLine", response.lines[0]);
75 EXPECT_EQ(net::OK, PushDataToBuffer("230-FirstLine\r\n"));
119 EXPECT_EQ(net::OK, PushDataToBuffer("230-FirstLine\r\n"));
134 EXPECT_EQ("FirstLine 230 Continued", response.lines[0]);
140 EXPECT_EQ(net::OK, PushDataToBuffer("230-FirstLine\r\n"));
  /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...]
  /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);
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLRow.cpp 122 int RenderMathMLRow::baselinePosition(FontBaseline, bool firstLine, LineDirectionMode direction, LinePositionMode linePositionMode) const
127 return block->y() + block->baselinePosition(AlphabeticBaseline, firstLine, direction, linePositionMode);
130 return RenderBlock::baselinePosition(AlphabeticBaseline, firstLine, direction, linePositionMode);
  /external/webkit/Source/JavaScriptCore/runtime/
Executable.h 191 void recordParse(CodeFeatures features, bool hasCapturedVariables, int firstLine, int lastLine)
195 m_firstLine = firstLine;
298 static FunctionExecutable* create(ExecState* exec, const Identifier& name, const SourceCode& source, bool forceUsesArguments, FunctionParameters* parameters, bool isInStrictContext, int firstLine, int lastLine)
300 return new (exec) FunctionExecutable(exec, name, source, forceUsesArguments, parameters, isInStrictContext, firstLine, lastLine);
303 static FunctionExecutable* create(JSGlobalData* globalData, const Identifier& name, const SourceCode& source, bool forceUsesArguments, FunctionParameters* parameters, bool isInStrictContext, int firstLine, int lastLine)
305 return new (globalData) FunctionExecutable(globalData, name, source, forceUsesArguments, parameters, isInStrictContext, firstLine, lastLine);
378 FunctionExecutable(JSGlobalData*, const Identifier& name, const SourceCode&, bool forceUsesArguments, FunctionParameters*, bool, int firstLine, int lastLine);
379 FunctionExecutable(ExecState*, const Identifier& name, const SourceCode&, bool forceUsesArguments, FunctionParameters*, bool, int firstLine, int lastLine);
  /external/webkit/Source/WebCore/bindings/js/
StringSourceProvider.h 63 inline JSC::SourceCode makeSource(const String& source, const String& url = String(), int firstLine = 1)
65 return JSC::SourceCode(StringSourceProvider::create(source, url), firstLine);
  /external/llvm/lib/ExecutionEngine/IntelJITEvents/
IntelJITEventListener.cpp 120 LineNumberInfo FirstLine;
121 FirstLine.Offset = 0;
122 FirstLine.LineNumber = FunctionDI.getLineNumber();
123 LineInfo.push_back(FirstLine);
  /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;
  /cts/tools/cfassembler/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.cpp 101 int firstLine;
127 firstLine = -1;
129 pDexMethod->accessFlags, positionsCallback, NULL, &firstLine);
145 fileName, firstLine);
  /external/webkit/Source/WebCore/inspector/
ScriptDebugListener.h 45 virtual void failedToParseSource(const String& url, const String& data, int firstLine, int errorLine, const String& errorMessage) = 0;

Completed in 680 milliseconds

1 2 3 4 5