HomeSort by relevance Sort by last modified time
    Searched refs:matches (Results 376 - 400 of 3782) sorted by null

<<11121314151617181920>>

  /build/make/core/
device.mk 65 $(error No matches for device "$(dn)"), \
66 $(error Device "$(dn)" ambiguous: matches $(d)) \
  /cts/common/device-side/util/src/com/android/compatibility/common/util/
TextUtils.java 26 * Return the first section in {@code source} between the line matches
27 * {@code extractionStartRegex} and the line matches {@code extractionEndRegex}.
42 if (start.matcher(line).matches()) {
54 if (end.matcher(line).matches()) {
  /cts/libs/vogar-expect/src/vogar/
Expectation.java 95 * Returns true if {@code outcome} matches this expectation.
97 public boolean matches(Outcome outcome) { method in class:Expectation
102 return pattern.matcher(outcome.getOutput()).matches();
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/utils/
AccessibilityEventFilterUtils.java 32 return (new AccessibilityEventTypeMatcher(eventType))::matches;
37 .and(new WindowChangesMatcher(changes)))::matches;
  /developers/build/prebuilts/gradle/EmojiCompat/app/src/androidTest/java/com/example/android/emojicompat/
MainActivityTest.java 20 import static android.support.test.espresso.assertion.ViewAssertions.matches;
52 onView(withText(text)).check(matches(isDisplayed()));
  /developers/samples/android/views/EmojiCompat/app/src/androidTest/java/com/example/android/emojicompat/
MainActivityTest.java 20 import static android.support.test.espresso.assertion.ViewAssertions.matches;
52 onView(withText(text)).check(matches(isDisplayed()));
  /development/tools/bugreport/src/com/android/bugreport/cpuinfo/
CpuUsageParser.java 52 if (Utils.matches(cpuUsageRe, text)) {
54 } else if (Utils.matches(totalRe, text)) {
  /development/tools/bugreport/src/com/android/bugreport/stacks/
VmTracesParser.java 59 if (Utils.matches(mBeginProcessRe, text)) {
69 if (Utils.matches(mBeginProcessRe, text)) {
  /external/easymock/src/org/easymock/internal/matchers/
ArrayEquals.java 31 public boolean matches(Object actual) { method in class:ArrayEquals
61 return super.matches(actual);
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
AllOf.java 23 public boolean matches(Object o, Description mismatch) { method in class:AllOf
25 if (!matcher.matches(o)) {
40 * Creates a matcher that matches if the examined object matches <b>ALL</b> of the specified matchers.
49 * Creates a matcher that matches if the examined object matches <b>ALL</b> of the specified matchers.
DescribedAs.java 28 public boolean matches(Object o) { method in class:DescribedAs
29 return matcher.matches(o);
Is.java 25 public boolean matches(Object arg) { method in class:Is
26 return matcher.matches(arg);
  /external/hamcrest/hamcrest-library/src/main/java/org/hamcrest/collection/
IsArray.java 25 if (!elementMatchers[i].matches(array[i])) return false;
38 if (!elementMatchers[i].matches(actual[i])) {
84 * Creates a matcher that matches arrays whose elements are satisfied by the specified matchers. Matches
  /external/iproute2/ip/
iplink_ipvlan.c 30 if (matches(*argv, "mode") == 0) {
46 } else if (matches(*argv, "help") == 0) {
  /external/junit/src/main/java/org/junit/
Assume.java 94 if (!matcher.matches(actual)) {
117 if (!matcher.matches(actual)) {
  /external/libxkbcommon/xkbcommon/
makekeys.py 6 matches = [pattern.match(line) for line in open(sys.argv[1])] variable
7 entries = [(m.group("name"), int(m.group("value"), 16)) for m in matches if m]
  /external/mesa3d/src/compiler/glsl/
ir_function.cpp 98 * be exact matches.
122 /* Classes of parameter match, sorted (mostly) best matches first.
201 ir_function_signature **matches,
220 for (ir_function_signature **other = matches;
221 other < matches + num_matches; other++) {
262 ir_function_signature **matches,
269 return *matches;
272 * there is no overload resolution among multiple inexact matches. Note
278 for (ir_function_signature **sig = matches; sig < matches + num_matches; sig++)
    [all...]
  /external/owasp/sanitizer/tools/
cut_release.py 128 matches = re.findall(r"(<!--##REPLACE##(.*)##END##-->)", line)
129 if len(matches) >= 2: raise Error("%s: %s" % (path, line))
130 if len(matches):
131 match = matches[0]
134 matches = re.findall("##DUPE##(.*)##END##", line)
135 if len(matches) >= 2: raise Error("%s: %s" % (path, line))
136 if len(matches):
137 match = matches[0]
  /external/parameter-framework/upstream/parameter/
CompoundRule.cpp 111 bool CCompoundRule::matches() const function in class:CCompoundRule
120 if (pRule->matches() ^ _bTypeAll) {
  /external/vogar/src/vogar/
Expectation.java 117 * Returns true if {@code outcome} matches this expectation.
119 public boolean matches(Outcome outcome) { method in class:Expectation
124 return pattern.matcher(outcome.getOutput()).matches();
  /frameworks/base/core/tests/coretests/src/android/widget/espresso/
DragHandleUtils.java 20 import static android.support.test.espresso.assertion.ViewAssertions.matches;
47 .check(matches(isDisplayed()));
FloatingToolbarEspressoUtils.java 21 import static android.support.test.espresso.assertion.ViewAssertions.matches;
84 onFloatingToolBar().check(matches(isDisplayed()));
96 onFloatingToolBar().check(matches(isDisplayed()));
123 onFloatingToolBar().check(matches(hasDescendant(withText(itemLabel))));
132 onFloatingToolBar().check(matches(hasDescendant(withText(itemLabel))));
147 onFloatingToolBar().check(matches(new TypeSafeMatcher<View>() {
200 onFloatingToolBar().check(matches(new TypeSafeMatcher<View>() {
232 onFloatingToolBarItem(withText(itemLabel)).check(matches(isDisplayed()));
  /frameworks/base/services/core/java/com/android/server/firewall/
NotFilter.java 35 public boolean matches(IntentFirewall ifw, ComponentName resolvedComponent, Intent intent, method in class:NotFilter
37 return !mChild.matches(ifw, resolvedComponent, intent, callerUid, callerPid, resolvedType,
  /frameworks/support/room/compiler/src/main/kotlin/androidx/room/solver/binderprovider/
InstantQueryResultBinderProvider.kt 32 override fun matches(declared: DeclaredType): Boolean = true
  /frameworks/support/v7/appcompat/src/androidTest/java/androidx/appcompat/app/
BaseKeyEventsTestCase.java 22 import static android.support.test.espresso.assertion.ViewAssertions.matches;
122 .check(matches(isDisplayed()));
182 assertEquals("onKeyDown event matches", KeyEvent.KEYCODE_DEL, downEvent.getKeyCode());
186 assertEquals("onKeyUp event matches", KeyEvent.KEYCODE_DEL, upEvent.getKeyCode());
197 assertEquals("onKeyDown event matches", KeyEvent.KEYCODE_MENU, downEvent.getKeyCode());
201 assertEquals("onKeyDown event matches", KeyEvent.KEYCODE_MENU, upEvent.getKeyCode());
208 .check(matches(isDisplayed()))
209 .check(matches(withContentDescription(R.string.search_menu_description)));
212 .check(matches(isDisplayed()))
213 .check(matches(withContentDescription((String) null)))
    [all...]

Completed in 2322 milliseconds

<<11121314151617181920>>