Lines Matching refs:methodA

324   const MethodEntry* methodA = *(const MethodEntry**) a;  in compareElapsedExclusive()  local
326 uint64_t elapsed1 = methodA->elapsedExclusive; in compareElapsedExclusive()
334 int32_t result = strcmp(methodA->className, methodB->className); in compareElapsedExclusive()
336 if (methodA->methodName == nullptr || methodB->methodName == nullptr) { in compareElapsedExclusive()
337 int64_t idA = methodA->methodId; in compareElapsedExclusive()
343 result = strcmp(methodA->methodName, methodB->methodName); in compareElapsedExclusive()
344 if (result == 0) result = strcmp(methodA->signature, methodB->signature); in compareElapsedExclusive()
354 const MethodEntry* methodA = *(MethodEntry const**) a; in compareElapsedInclusive() local
356 uint64_t elapsed1 = methodA->elapsedInclusive; in compareElapsedInclusive()
364 int32_t result = strcmp(methodA->className, methodB->className); in compareElapsedInclusive()
366 if (methodA->methodName == nullptr || methodB->methodName == nullptr) { in compareElapsedInclusive()
367 int64_t idA = methodA->methodId; in compareElapsedInclusive()
373 result = strcmp(methodA->methodName, methodB->methodName); in compareElapsedInclusive()
374 if (result == 0) result = strcmp(methodA->signature, methodB->signature); in compareElapsedInclusive()
394 MethodEntry* methodA = timedA->method; in compareTimedMethod() local
396 int32_t result = strcmp(methodA->className, methodB->className); in compareTimedMethod()
398 if (methodA->methodName == nullptr || methodB->methodName == nullptr) { in compareTimedMethod()
399 int64_t idA = methodA->methodId; in compareTimedMethod()
405 result = strcmp(methodA->methodName, methodB->methodName); in compareTimedMethod()
406 if (result == 0) result = strcmp(methodA->signature, methodB->signature); in compareTimedMethod()
416 const MethodEntry* methodA = *(const MethodEntry**) a; in compareClassNames() local
418 int32_t result = strcmp(methodA->className, methodB->className); in compareClassNames()
420 int64_t idA = methodA->methodId; in compareClassNames()
464 const MethodEntry* methodA = *(const MethodEntry**) a; in compareMethodNames() local
466 if (methodA->methodName == nullptr || methodB->methodName == nullptr) { in compareMethodNames()
469 int32_t result = strcmp(methodA->methodName, methodB->methodName); in compareMethodNames()
471 result = strcmp(methodA->className, methodB->className); in compareMethodNames()
473 int64_t idA = methodA->methodId; in compareMethodNames()
2252 const MethodEntry* methodA = *(const MethodEntry**) a; in compareMethodNamesForDiff() local
2254 if (methodA->methodName == nullptr || methodB->methodName == nullptr) { in compareMethodNamesForDiff()
2257 int32_t result = strcmp(methodA->methodName, methodB->methodName); in compareMethodNamesForDiff()
2259 result = strcmp(methodA->signature, methodB->signature); in compareMethodNamesForDiff()
2261 return strcmp(methodA->className, methodB->className); in compareMethodNamesForDiff()