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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
Location.java 46 @XmlAttribute(name = "endLine")
47 public int endLine;
55 startOffset = endOffset = startLine = endLine = NaN;
62 endLine = other.endLine;
74 endLine = endOffset = NaN;
76 endLine = end.getLine() - 1; // token lines start from 1
89 public Location(int startLine, int startOffset, int endLine, int endOffset) {
92 this.endLine = endLine;
    [all...]
LayoutFileParser.java 261 valueLocation.endLine = attrLocation.endLine;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/parser/
Token.java 34 * of this token; endLine and endColumn describe the position of the
37 public int beginLine, beginColumn, endLine, endColumn;
AddressListParserTokenManager.java 793 t.endLine = input_stream.getEndLine();
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/contenttype/parser/
Token.java 34 * of this token; endLine and endColumn describe the position of the
37 public int beginLine, beginColumn, endLine, endColumn;
ContentTypeParserTokenManager.java 679 t.endLine = input_stream.getEndLine();
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/datetime/parser/
Token.java 34 * of this token; endLine and endColumn describe the position of the
37 public int beginLine, beginColumn, endLine, endColumn;
DateTimeParserTokenManager.java 718 t.endLine = input_stream.getEndLine();
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaSourceWriter.java 60 endLine();
69 endLine();
80 endLine();
151 endLine();
185 endLine();
214 endLine();
224 endLine();
253 endLine();
260 endLine();
269 endLine();
    [all...]
  /external/opencv/cvaux/src/
cvmorphing.cpp 64 float endLine; /* end of current run */
98 endLine = (float) endLineIndex;
101 endDestLine = (int) (alpha * endLine + alpha1 * endCorr);
107 step = (endLine - begLine) / ((float) (endDestLine - begDestLine));
167 begLine = endLine;
187 endLine = (float) endLineIndex;
190 endDestLine = (int) (alpha1 * endLine + alpha * endCorr);
196 step = (endLine - begLine) / ((float) (endDestLine - begDestLine));
267 begLine = endLine;
  /frameworks/data-binding/compilerCommon/src/test/java/android/databinding/tool/store/
LocationTest.java 44 location2.endLine = 10;
  /prebuilts/go/darwin-x86/src/cmd/cover/
func.go 100 endLine int
122 endLine: end.Line,
137 if b.StartLine > f.endLine || (b.StartLine == f.endLine && b.StartCol >= f.endCol) {
141 if b.EndLine < f.startLine || (b.EndLine == f.startLine && b.EndCol <= f.startCol) {
  /prebuilts/go/linux-x86/src/cmd/cover/
func.go 100 endLine int
122 endLine: end.Line,
137 if b.StartLine > f.endLine || (b.StartLine == f.endLine && b.StartCol >= f.endCol) {
141 if b.EndLine < f.startLine || (b.EndLine == f.startLine && b.EndCol <= f.startCol) {
  /tools/tradefederation/core/prod-tests/src/com/android/ota/tests/
SideloadOtaStabilityTest.java 410 String endLine = lastLogLines[lastLogLines.length - 1];
412 endLine.substring(endLine.indexOf('[') + 1, endLine.indexOf(']')).trim());
550 String endLine = lastLogLines[lastLogLines.length - 1];
551 if (endLine.toLowerCase().startsWith("uncrypt_error:")) {
552 String[] elements = endLine.split(":");
556 return Integer.parseInt(endLine.trim());
  /external/v8/src/inspector/
v8-debugger-script.h 66 int endLine() const { return m_endLine; }
v8-debugger-agent-impl.cc 468 scriptIterator->second->endLine() < breakpoint.line_number)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/text/
DynamicLayoutBlocksTest.java 69 private void update(int startLine, int endLine, int newLineCount) {
71 + newLineCount - endLine + startLine;
75 dl.updateBlocks(startLine, endLine, newLineCount);
  /external/swiftshader/src/OpenGL/compiler/
intermediate.h 541 TIntermAggregate() : TIntermOperator(EOpNull), userDefined(false) { endLine = { 0, 0, 0, 0 }; }
542 TIntermAggregate(TOperator o) : TIntermOperator(o), userDefined(false) { endLine = { 0, 0, 0, 0 }; }
579 void setEndLine(const TSourceLoc& line) { endLine = line; }
580 const TSourceLoc& getEndLine() const { return endLine; }
604 TSourceLoc endLine;
  /frameworks/base/core/java/android/text/
DynamicLayout.java 274 int endline = getLineForOffset(where + before); local
276 endline = getLineCount();
277 int endv = getLineTop(endline);
278 boolean islast = (endline == getLineCount());
317 mInts.deleteAt(startline, endline - startline);
318 mObjects.deleteAt(startline, endline - startline);
385 updateBlocks(startline, endline - 1, n);
445 int endLine = mBlockEndLines[blockIndex];
446 for (int i = startLine; i <= endLine; i++) {
495 * @param endLine the last line of the range, possibly equal to startLine, lowe
    [all...]
  /frameworks/data-binding/compilationTests/src/test/java/android/databinding/compilationTest/
BaseCompilationTest.java 120 for (int i = location.startLine; i <= location.endLine; i++) {
130 if (i == location.endLine) {
  /frameworks/data-binding/compiler/src/test/java/android/databinding/tool/expr/
ExprModelTest.java     [all...]
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
XmlEditor.java 253 String endLine = lines.get(end.line);
254 String newEndLine = replaceWithSpaces(endLine, 0, end.charIndex - 1);
  /external/python/cpython2/Mac/Modules/te/
_TEmodule.c 626 long endLine;
632 &endLine,
635 _rv = TEGetHeight(endLine,
830 PyDoc_STR("(long endLine, long startLine) -> (long _rv)")},
    [all...]
  /prebuilts/tools/common/m2/repository/net/sourceforge/cssparser/cssparser/0.9.13/
cssparser-0.9.13.jar 
  /prebuilts/tools/common/m2/repository/org/apache/james/apache-mime4j-dom/0.7.2/
apache-mime4j-dom-0.7.2.jar 

Completed in 759 milliseconds

1 2 3 4 5 6 7 8 91011>>