Searched refs:endOffset (Results 1 - 25 of 55) sorted by relevance

123

/external/proguard/src/proguard/classfile/visitor/
H A DExceptionHandlerFilter.java38 private final int endOffset; field in class:ExceptionHandlerFilter
45 * @param endOffset the end of the instruction offset range.
50 int endOffset,
54 this.endOffset = endOffset;
65 handlerPC < endOffset)
49 ExceptionHandlerFilter(int startOffset, int endOffset, ExceptionInfoVisitor exceptionInfoVisitor) argument
H A DExceptionRangeFilter.java38 private final int endOffset; field in class:ExceptionRangeFilter
45 * @param endOffset the end offset of the instruction range.
50 int endOffset,
54 this.endOffset = endOffset;
63 if (exceptionInfo.isApplicable(startOffset, endOffset))
49 ExceptionRangeFilter(int startOffset, int endOffset, ExceptionInfoVisitor exceptionInfoVisitor) argument
/external/flatbuffers/tests/FlatBuffers.Test/
H A DFlatBufferBuilderTests.cs35 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
[all...]
/external/smali/smalidea/src/main/java/org/jf/smalidea/
H A DSmaliLexer.java47 private int endOffset; field in class:SmaliLexer
55 @Override public void start(@NotNull CharSequence buffer, int startOffset, int endOffset, int initialState) { argument
57 lexer.reset(buffer, startOffset, endOffset, initialState);
58 this.endOffset = endOffset;
121 return endOffset;
/external/proguard/src/proguard/classfile/attribute/
H A DExceptionInfo.java82 public boolean isApplicable(int startOffset, int endOffset) argument
84 return u2startPC < endOffset &&
H A DCodeAttribute.java129 public void instructionsAccept(Clazz clazz, Method method, int startOffset, int endOffset, InstructionVisitor instructionVisitor) argument
133 while (offset < endOffset)
179 public void exceptionsAccept(Clazz clazz, Method method, int startOffset, int endOffset, ExceptionInfoVisitor exceptionInfoVisitor) argument
184 if (exceptionInfo.isApplicable(startOffset, endOffset))
/external/smali/smalidea/src/main/java/org/jf/smalidea/dexlib/
H A DSmalideaTryBlock.java49 int endOffset = catchStatement.getEndLabel().resolve().getOffset() / 2;
50 return endOffset - getStartCodeAddress();
/external/proguard/src/proguard/optimize/evaluation/
H A DVariableOptimizer.java319 private int firstLiveness(int startOffset, int endOffset, int variableIndex) argument
321 for (int offset = startOffset; offset < endOffset; offset++)
330 return endOffset;
338 private int lastLiveness(int startOffset, int endOffset, int variableIndex) argument
340 int previousOffset = endOffset;
342 for (int offset = endOffset-1; offset >= startOffset; offset--)
355 return endOffset;
H A DPartialEvaluator.java327 public boolean isTraced(int startOffset, int endOffset) argument
329 for (int index = startOffset; index < endOffset; index++)
564 int endOffset)
577 endOffset);
1001 int endOffset)
1003 if (DEBUG) System.out.println("Evaluating exceptions covering ["+startOffset+" -> "+endOffset+"]:");
1007 endOffset,
1021 endOffset,
1203 int endOffset,
1211 for (int index = startOffset; index < endOffset; inde
558 evaluateInstructionBlockAndExceptionHandlers(Clazz clazz, Method method, CodeAttribute codeAttribute, TracedVariables variables, TracedStack stack, int startOffset, int endOffset) argument
997 evaluateExceptionHandlers(Clazz clazz, Method method, CodeAttribute codeAttribute, int startOffset, int endOffset) argument
1202 generalizeVariables(int startOffset, int endOffset, boolean includeAfterLastInstruction, TracedVariables generalizedVariables) argument
[all...]
H A DLivenessAnalyzer.java394 int endOffset = exceptionInfo.u2endPC;
396 for (int offset = startOffset; offset < endOffset; offset++)
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DStringExtensions.cs131 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/
H A DStringExtensions.cs127 public static string substring(this string str, int startOffset, int endOffset) argument
129 return str.Substring( startOffset, endOffset - startOffset );
/external/proguard/src/proguard/optimize/peephole/
H A DUnreachableExceptionRemover.java111 int endOffset)
117 while (offset < endOffset)
107 mayThrowExceptions(Clazz clazz, Method method, CodeAttribute codeAttribute, int startOffset, int endOffset) argument
H A DReachableCodeMarker.java64 public boolean isReachable(int startOffset, int endOffset) argument
67 for (int offset = startOffset; offset < endOffset; offset++)
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
H A DAnnotatedBytes.java224 Integer endOffset = annotatations.higherKey(offset);
225 return formatAnnotation(offset, endOffset, annotationMsg);
228 private String formatAnnotation(int offset, Integer endOffset, String annotationMsg) { argument
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/
H A DDexBackedMethodImplementation.java71 final int endOffset = instructionsStartOffset + (instructionsSize*2);
78 if (reader.getOffset() >= endOffset) {
86 if (offset > endOffset || offset < 0) {
/external/proguard/src/proguard/optimize/info/
H A DExceptionInstructionChecker.java66 int endOffset)
72 while (offset < endOffset)
62 mayThrowExceptions(Clazz clazz, Method method, CodeAttribute codeAttribute, int startOffset, int endOffset) argument
/external/lzma/C/
H A DXzIn.c276 Int64 endOffset = 0; local
277 RINOK(stream->Seek(stream, &endOffset, SZ_SEEK_END));
278 *startOffset = endOffset;
303 if (progress && progress->Progress(progress, endOffset - *startOffset, (UInt64)(Int64)-1) != SZ_OK)
/external/llvm/lib/Transforms/Scalar/
H A DSROA.cpp138 uint64_t endOffset() const { return EndOffset; } function in class:__anon13415::Slice
161 if (endOffset() > RHS.endOffset())
178 beginOffset() == RHS.beginOffset() && endOffset() == RHS.endOffset();
347 uint64_t endOffset() const { return EndOffset; } function in class:llvm::sroa::Partition
437 [&](Slice *S) { return S->endOffset() <= P.EndOffset; }),
441 return S->endOffset() == MaxSplitSliceEndOffset;
446 return S->endOffset() <= MaxSplitSliceEndOffset;
465 if (S.isSplittable() && S.endOffset() >
[all...]
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
H A DMethodDefinition.java101 int endOffset = instructionOffsetMap.getInstructionCodeOffset(instructions.size()-1) +
121 targetOffset = endOffset;
125 endOffset += payloadInstruction.getCodeUnits();
144 targetOffset = endOffset;
148 endOffset += payloadInstruction.getCodeUnits();
/external/conscrypt/common/src/main/java/org/conscrypt/
H A DOpenSSLEngineImpl.java644 final int endOffset = dstsOffset + dstsLength;
751 for (int idx = dstsOffset; idx < endOffset; ++idx) {
1182 final int endOffset = offset + length;
1183 for (int i = offset; i < endOffset; ++i) {
1210 for (int i = offset; i < endOffset; ++i) {
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DCssTokens.java130 public int endOffset() { method in class:CssTokens.TokenIterator
135 return normalizedCss.substring(startOffset(), endOffset());
/external/robolectric/v3/libs/
H A Dvtd-xml-2.11.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/ximpleware/ com/ximpleware/extended/ com/ximpleware/extended/parser/ ...
/external/guice/extensions/persist/lib/
H A Doro-2.0.8.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/oro/ org/apache/oro/io/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.jface.text_3.6.1.r361_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 1097 milliseconds

123