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

1 2 3 4 5 6 7 8 91011

  /external/proguard/src/proguard/classfile/visitor/
ExceptionHandlerFilter.java 38 private final int endOffset;
45 * @param endOffset the end of the instruction offset range.
50 int endOffset,
54 this.endOffset = endOffset;
65 handlerPC < endOffset)
ExceptionRangeFilter.java 38 private final int endOffset;
45 * @param endOffset the end offset of the instruction range.
50 int endOffset,
54 this.endOffset = endOffset;
63 if (exceptionInfo.isApplicable(startOffset, endOffset))
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
Location.java 47 @XmlAttribute(name = "endOffset")
48 public int endOffset;
54 startOffset = endOffset = startLine = endLine = NaN;
59 endOffset = other.endOffset;
73 endLine = endOffset = NaN;
79 endOffset = end.getCharPositionInLine() + lastLine.length() - 1;//end is inclusive
88 public Location(int startLine, int startOffset, int endLine, int endOffset) {
92 this.endOffset = endOffset;
    [all...]
  /external/proguard/src/proguard/classfile/attribute/
ExceptionInfo.java 82 public boolean isApplicable(int startOffset, int endOffset)
84 return u2startPC < endOffset &&
CodeAttribute.java 129 public void instructionsAccept(Clazz clazz, Method method, int startOffset, int endOffset, InstructionVisitor instructionVisitor)
133 while (offset < endOffset)
179 public void exceptionsAccept(Clazz clazz, Method method, int startOffset, int endOffset, ExceptionInfoVisitor exceptionInfoVisitor)
184 if (exceptionInfo.isApplicable(startOffset, endOffset))
  /dalvik/dx/src/com/android/dx/cf/direct/
AttributeListParser.java 47 private int endOffset;
77 this.endOffset = -1;
97 return endOffset;
114 if (endOffset < 0) {
162 endOffset = at;
MemberListParser.java 49 private int endOffset;
80 this.endOffset = -1;
91 return endOffset;
107 if (endOffset < 0) {
238 endOffset = at;
  /external/proguard/src/proguard/optimize/evaluation/
VariableOptimizer.java 319 private int firstLiveness(int startOffset, int endOffset, int variableIndex)
321 for (int offset = startOffset; offset < endOffset; offset++)
330 return endOffset;
338 private int lastLiveness(int startOffset, int endOffset, int variableIndex)
340 int previousOffset = endOffset;
342 for (int offset = endOffset-1; offset >= startOffset; offset--)
355 return endOffset;
PartialEvaluator.java 327 public boolean isTraced(int startOffset, int endOffset)
329 for (int index = startOffset; index < endOffset; index++)
564 int endOffset)
577 endOffset);
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
ZipFile.java 338 rafStream.endOffset = rafStream.offset + entry.size;
341 rafStream.endOffset = rafStream.offset + entry.compressedSize;
513 private long endOffset;
517 public RAFStream(RandomAccessFile raf, long initialOffset, long endOffset) {
520 this.endOffset = endOffset;
528 return (offset < endOffset ? 1 : 0);
537 final long length = endOffset - offset;
553 if (byteCount > endOffset - offset) {
554 byteCount = endOffset - offset
    [all...]
  /external/proguard/src/proguard/optimize/peephole/
UnreachableExceptionRemover.java 111 int endOffset)
117 while (offset < endOffset)
ReachableCodeMarker.java 64 public boolean isReachable(int startOffset, int endOffset)
67 for (int offset = startOffset; offset < endOffset; offset++)
  /dalvik/dx/src/com/android/dx/cf/cst/
ConstantPoolParser.java 70 private int endOffset;
86 this.endOffset = -1;
106 return endOffset;
123 if (endOffset < 0) {
161 int nextOffset = endOffset;
176 observer.parsed(bytes, endOffset, 0, "end constant_pool");
238 endOffset = at;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
AnnotatedBytes.java 224 Integer endOffset = annotatations.higherKey(offset);
225 return formatAnnotation(offset, endOffset, annotationMsg);
228 private String formatAnnotation(int offset, Integer endOffset, String annotationMsg) {
229 if (endOffset != null) {
230 return String.format("[0x%x, 0x%x) \"%s\"", offset, endOffset, annotationMsg);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DexBackedMethodImplementation.java 71 final int endOffset = instructionsStartOffset + (instructionsSize*2);
78 if (reader.getOffset() >= endOffset) {
86 if (offset > endOffset || offset < 0) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
StringExtensions.cs 131 public static string substring( string str, int startOffset, int endOffset )
133 return str.Substring( startOffset, endOffset - startOffset );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StringExtensions.cs 127 public static string substring(this string str, int startOffset, int endOffset)
129 return str.Substring( startOffset, endOffset - startOffset );
  /external/proguard/src/proguard/optimize/info/
ExceptionInstructionChecker.java 66 int endOffset)
72 while (offset < endOffset)
  /libcore/luni/src/main/java/org/apache/harmony/security/asn1/
BerInputStream.java 506 int endOffset = begOffset + length;
514 for (; (offset < endOffset) && (i < type.length); i++) {
539 for (; (offset < endOffset) && (i < type.length); i++) {
571 if (offset != endOffset) {
611 int endOffset = begOffset + length;
616 while (endOffset > offset) {
624 while (endOffset > offset) {
635 if (offset != endOffset) {
  /frameworks/data-binding/compilerCommon/src/test/java/android/databinding/tool/store/
LocationTest.java 46 location2.endOffset = 2;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
EclipseLintClient.java 418 int endOffset = r.getSecond();
420 message, line, startOffset, endOffset, severity);
578 int endOffset = endPosition != null ? endPosition.getOffset() : -1;
579 if (endOffset != -1) {
587 return adjustOffsets(doc, startOffset, endOffset);
595 return adjustOffsets(doc, startOffset, endOffset);
613 int endOffset) {
615 int originalEnd = endOffset;
618 while (endOffset > startOffset && endOffset < doc.getLength())
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
WrapInRefactoring.java 246 int endOffset = region.getEndOffset();
247 String text = getText(startOffset, endOffset);
248 DeleteEdit deletion = new DeleteEdit(startOffset, endOffset - startOffset);
345 int endOffset = region.getEndOffset();
346 String text = getText(startOffset, endOffset);
347 DeleteEdit deletion = new DeleteEdit(startOffset, endOffset - startOffset);
  /external/lzma/C/
XzIn.c 276 Int64 endOffset = 0;
277 RINOK(stream->Seek(stream, &endOffset, SZ_SEEK_END));
278 *startOffset = endOffset;
302 if (progress && progress->Progress(progress, endOffset - *startOffset, (UInt64)(Int64)-1) != SZ_OK)
  /external/llvm/lib/Transforms/Scalar/
SROA.cpp 144 uint64_t EndOffset;
151 Slice() : BeginOffset(), EndOffset() {}
152 Slice(uint64_t BeginOffset, uint64_t EndOffset, Use *U, bool IsSplittable)
153 : BeginOffset(BeginOffset), EndOffset(EndOffset),
157 uint64_t endOffset() const { return EndOffset; }
180 if (endOffset() > RHS.endOffset())
197 beginOffset() == RHS.beginOffset() && endOffset() == RHS.endOffset()
    [all...]
  /frameworks/support/v7/recyclerview/src/android/support/v7/widget/
LinearLayoutManager.java 530 int endOffset;
549 endOffset = mLayoutState.mOffset;
564 endOffset = mLayoutState.mOffset;
579 updateLayoutStateToFillEnd(lastElement, endOffset);
582 endOffset = mLayoutState.mOffset;
594 int fixOffset = fixLayoutEndGap(endOffset, recycler, state, true);
596 endOffset += fixOffset;
599 endOffset += fixOffset;
603 endOffset += fixOffset;
604 fixOffset = fixLayoutEndGap(endOffset, recycler, state, false)
    [all...]

Completed in 496 milliseconds

1 2 3 4 5 6 7 8 91011