Home
last modified time | relevance | path

Searched refs:typesValue (Results 1 – 2 of 2) sorted by relevance

/cts/tools/cts-api-coverage/src/com/android/cts/ctsprofiles/
DMethodProfile.java180 private boolean matchAnyTypes(int typesValue) { in matchAnyTypes() argument
181 return (mMethodType & typesValue) != 0; in matchAnyTypes()
184 private boolean matchAllTypes(int typesValue) { in matchAllTypes() argument
185 return (mMethodType & typesValue) == typesValue; in matchAllTypes()
DClassProfile.java236 private boolean matchAnyTypes(int typesValue) { in matchAnyTypes() argument
237 return (mClassType & typesValue) != 0; in matchAnyTypes()
240 private boolean matchAllTypes(int typesValue) { in matchAllTypes() argument
241 return (mClassType & typesValue) == typesValue; in matchAllTypes()