Home
last modified time | relevance | path

Searched refs:methodCount (Results 1 – 13 of 13) sorted by relevance

/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
DAnnotationsDirectory.java186 int methodCount = getMethodAnnotationCount();
187 if (methodCount == 0) {
193 return new AnnotationIteratorImpl(methodAnnotationsOffset, methodCount);
203 int methodCount = getMethodAnnotationCount();
206 methodCount * METHOD_ANNOTATION_SIZE;
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/
DFramesTest.java281 int methodCount = 0; in testFrames002() local
294 methodCount++; in testFrames002()
301 if (methodCount != FramesDebuggee.DEPTH) { in testFrames002()
303 + methodCount + " but expected " + FramesDebuggee.DEPTH)); in testFrames002()
377 int methodCount = 0; in testFrames001() local
398 methodCount++; in testFrames001()
402 if (methodCount != FramesDebuggee.DEPTH) { in testFrames001()
404 + methodCount + " but expected " + FramesDebuggee.DEPTH)); in testFrames001()
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
DMethodIdItem.java101 int methodCount = mapItem.getItemCount();
102 String[] ret = new String[methodCount];
103 for (int i=0; i<methodCount; i++) {
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/
DDexBackedDexFile.java67 private final int methodCount; field in DexBackedDexFile
89 methodCount = readSmallUint(HeaderItem.METHOD_COUNT_OFFSET); in DexBackedDexFile()
169 if (methodIndex < 0 || methodIndex >= methodCount) {
210 return methodCount;
/external/testng/src/main/java/org/testng/remote/strprotocol/
DTestMessage.java25 final int methodCount, in TestMessage() argument
33 m_testMethodCount = methodCount; in TestMessage()
DSuiteMessage.java26 public SuiteMessage(final String suiteName, final boolean startSuiteRun, final int methodCount) { in SuiteMessage() argument
29 m_testMethodCount = methodCount; in SuiteMessage()
/external/r8/src/main/java/com/android/tools/r8/ir/desugar/
DLambdaRewriter.java165 int methodCount = directMethods.length; in removeLambdaDeserializationMethods() local
166 for (int i = 0; i < methodCount; i++) { in removeLambdaDeserializationMethods()
175 DexEncodedMethod[] newMethods = new DexEncodedMethod[methodCount - 1]; in removeLambdaDeserializationMethods()
177 System.arraycopy(directMethods, i + 1, newMethods, i, methodCount - i - 1); in removeLambdaDeserializationMethods()
/external/javassist/src/main/javassist/bytecode/
DClassFileWriter.java314 private int methodCount; field in ClassFileWriter.MethodWriter
327 methodCount = 0; in MethodWriter()
368 ++methodCount; in begin()
505 int size() { return methodCount; } in size()
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DSocksProxy.java116 int methodCount = fromSource.readByte() & 0xff; in hello() local
123 for (int i = 0; i < methodCount; i++) { in hello()
/external/google-breakpad/src/common/mac/testing/
DGTMSenTestCase.m349 unsigned int methodCount;
350 Method *methods = class_copyMethodList(currentClass, &methodCount);
354 length:sizeof(Method) * methodCount];
356 invocations = [NSMutableArray arrayWithCapacity:methodCount];
358 for (size_t i = 0; i < methodCount; ++i) {
/external/testng/src/main/java/org/testng/reporters/
DSuiteHTMLReporter.java575 int methodCount = 0; in generateTableOfContents() local
578 methodCount += Utils.calculateInvokedMethodCount(methods); in generateTableOfContents()
608 .append("<td>" + methodCount + " " + pluralize(methodCount, "method") + ":<br/>\n") in generateTableOfContents()
/external/r8/src/test/java/com/android/tools/r8/maindexlist/
DMainDexListTests.java394 public static AndroidApp generateApplication(List<String> classes, int minApi, int methodCount) in generateApplication() argument
404 DexEncodedMethod[] directMethods = new DexEncodedMethod[methodCount]; in generateApplication()
405 for (int i = 0; i < methodCount; i++) { in generateApplication()
/external/deqp/modules/gles31/functional/
Des31fCopyImageTests.cpp1828 : methodCount (methodCount_) in Iteration()
1833 int methodCount; member
2269 for (int method = 0; method < iterations[m_iteration].methodCount; method++) in iterate()