HomeSort by relevance Sort by last modified time
    Searched refs:endOffset (Results 1 - 25 of 696) 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))
  /external/flatbuffers/tests/FlatBuffers.Test/
FlatBufferBuilderTests.cs 35 var endOffset = fbb.Offset;
36 Assert.AreEqual(sizeof(bool), endOffset-storedOffset);
45 var endOffset = fbb.Offset;
46 Assert.AreEqual(sizeof(sbyte), endOffset - storedOffset);
55 var endOffset = fbb.Offset;
56 Assert.AreEqual(sizeof(byte), endOffset - storedOffset);
65 var endOffset = fbb.Offset;
66 Assert.AreEqual(sizeof(short), endOffset - storedOffset);
75 var endOffset = fbb.Offset;
76 Assert.AreEqual(sizeof(ushort), endOffset - storedOffset)
    [all...]
  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
Location.java 48 @XmlAttribute(name = "endOffset")
49 public int endOffset;
55 startOffset = endOffset = startLine = endLine = NaN;
60 endOffset = other.endOffset;
74 endLine = endOffset = NaN;
80 endOffset = end.getCharPositionInLine() + lastLine.length() - 1;//end is inclusive
89 public Location(int startLine, int startOffset, int endLine, int endOffset) {
93 this.endOffset = endOffset;
    [all...]
  /external/smali/smalidea/src/main/java/org/jf/smalidea/
SmaliLexer.java 47 private int endOffset;
55 @Override public void start(@NotNull CharSequence buffer, int startOffset, int endOffset, int initialState) {
57 lexer.reset(buffer, startOffset, endOffset, initialState);
58 this.endOffset = endOffset;
121 return endOffset;
  /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))
  /external/smali/smalidea/src/main/java/org/jf/smalidea/dexlib/
SmalideaTryBlock.java 49 int endOffset = catchStatement.getEndLabel().resolve().getOffset() / 2;
50 return endOffset - getStartCodeAddress();
  /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;
  /tools/apksig/src/main/java/com/android/apksig/internal/util/
ByteBufferDataSource.java 115 long endOffset = offset + size;
116 if (endOffset < offset) {
120 if (endOffset > mSize) {
ByteArrayDataSink.java 150 long endOffset = offset + size;
151 if (endOffset < offset) {
155 if (endOffset > mSize) {
228 long endOffset = offset + size;
229 if (endOffset < offset) {
233 if (endOffset > mSliceSize) {
RandomAccessFileDataSource.java 170 long endOffset = offset + size;
171 if (endOffset < offset) {
175 if (endOffset > sourceSize) {
  /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;
  /external/proguard/src/proguard/optimize/peephole/
UnreachableExceptionRemover.java 111 int endOffset)
117 while (offset < endOffset)
  /frameworks/base/core/java/android/util/jar/
StrictJarFile.java 441 private long endOffset;
444 public FDStream(FileDescriptor fd, long initialOffset, long endOffset) {
447 this.endOffset = endOffset;
451 return (offset < endOffset ? 1 : 0);
460 final long length = endOffset - offset;
480 if (byteCount > endOffset - offset) {
481 byteCount = 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)
  /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 419 int endOffset = r.getSecond();
421 message, line, startOffset, endOffset, severity);
579 int endOffset = endPosition != null ? endPosition.getOffset() : -1;
580 if (endOffset != -1) {
588 return adjustOffsets(doc, startOffset, endOffset);
596 return adjustOffsets(doc, startOffset, endOffset);
614 int endOffset) {
616 int originalEnd = endOffset;
619 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);

Completed in 528 milliseconds

1 2 3 4 5 6 7 8 91011>>