Searched refs:matches (Results 1 - 3 of 3) sorted by relevance

/dalvik/dx/src/com/android/dx/dex/code/
H A DLocalList.java281 * Returns whether or not this instance matches the given spec.
284 * @return {@code true} iff this instance matches
287 public boolean matches(RegisterSpec otherSpec) { method in class:LocalList.Entry
292 * Returns whether or not this instance matches the spec in
296 * @return {@code true} iff this instance's spec matches
299 public boolean matches(Entry other) { method in class:LocalList.Entry
300 return matches(other.spec);
404 if ((already != null) && e.matches(already)) {
615 if (endEntry.matches(startedLocal)) {
769 if (entry.matches(endedLoca
[all...]
/dalvik/dx/src/com/android/dx/dex/file/
H A DDebugInfoEncoder.java303 if ((prevEntry != null) && entry.matches(prevEntry)) {
/dalvik/tools/dmtracedump/
H A DTraceDump.c2480 * Determines whether the given FilterKey matches the method. The FilterKey's
2518 * A filter is activated when the given method matches the 'entry' key of one of its FilterKeys.
2519 * It is de-activated when the method matches the 'exit' key of the same FilterKey that activated it
2626 // If a method exit matches the EXIT method of an ACTIVE key -> de-activate
2665 // If method matches entry key -> activate thread (do not add time since it's a new entry!)
2685 // If method matches a terminal key -> add remTime to total (no need to active/de-activate)
3363 int matches = 0; local
3391 matches++;
3397 qsort(diffs, matches, sizeof(DiffEntry), compareDiffEntriesExculsive);
3458 qsort(diffs, matches, sizeo
[all...]

Completed in 1235 milliseconds