HomeSort by relevance Sort by last modified time
    Searched refs:matches (Results 301 - 325 of 840) sorted by null

<<11121314151617181920>>

  /external/doclava/src/com/google/doclava/
ParamTagInfo.java 35 if (m.matches()) {
ThrowsTagInfo.java 33 if (m.matches()) {
  /external/junit/src/org/junit/internal/matchers/
IsCollectionContaining.java 24 if (elementMatcher.matches(item)){
  /external/junit/src/org/junit/rules/
ExpectedException.java 132 return matcher.matches(item.getMessage());
  /external/v8/test/mjsunit/regress/
regress-regexp-codeflush.js 30 // Regression test for regexp that has multiple matches and which
45 // Make a long string with plenty of matches for re.
  /frameworks/base/core/java/android/webkit/
MimeTypeMap.java 62 Pattern.matches("[a-zA-Z_0-9\\.\\-\\(\\)\\%]+", filename)) {
  /frameworks/base/libs/hwui/
PatchCache.cpp 100 } else if (!mesh->matches(xDivs, yDivs, colorKey)) {
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
ContactMatcher.java 75 // Returned value when we found multiple matches and that was not allowed
103 * with the former rather than the latter. This is why "reverse" matches have slightly lower
104 * scores than direct matches.
433 * Returns matches in the order of descending score.
437 List<MatchScore> matches = mScoreList.subList(0, mScoreCount); local
438 Collections.sort(matches);
441 MatchScore matchScore = matches.get(i);
449 return matches.subList(0, count);
  /sdk/device_validator/dvlib/tests/src/com/android/dvlib/
DeviceSchemaTest.java 58 .toString().trim()), baos.toString().trim().matches(regex));
67 .toString().trim()), baos.toString().trim().matches(regex));
75 assertTrue(baos.toString().trim().matches(""));
105 .toString().trim()), baos.toString().trim().matches(""));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
LayoutEditorMatchingStrategy.java 38 public boolean matches(IEditorReference editorRef, IEditorInput input) { method in class:LayoutEditorMatchingStrategy
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SimpleAttribute.java 93 if (m.matches()) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/
ValuesContentAssist.java 110 Map<String, AttributeDescriptor> matches = local
119 matches.put(name, desc);
125 new ArrayList<AttributeDescriptor>(matches.size());
126 sorted.addAll(matches.values());
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/uimodel/
UiColorValueNode.java 59 if (RGBA_REGEXP.matcher(color).matches()) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/launch/
AMReceiver.java 80 if (m.matches()) {
  /sdk/sdk_common/src/com/android/ide/common/resources/configuration/
CountryCodeQualifier.java 43 if (m.matches()) {
DensityQualifier.java 74 if (m.matches()) {
ScreenDimensionQualifier.java 96 if (m.matches()) {
ScreenHeightQualifier.java 76 if (m.matches()) {
ScreenWidthQualifier.java 76 if (m.matches()) {
SmallestScreenWidthQualifier.java 76 if (m.matches()) {
  /tools/motodev/src/plugins/android.codeutils/src/com/motorola/studio/android/wizards/buildingblocks/
FilteredActionsSelectionDialog.java 82 return matches((String) item);
  /tools/motodev/src/plugins/launch/src/com/motorola/studio/android/launch/
LaunchConfigurationShortcut.java 249 List<ILaunchConfiguration> matches; local
258 matches = new ArrayList<ILaunchConfiguration>(motodevLaunchConfigurations.length);
264 matches.add(launchConfiguration);
268 return matches;
  /cts/tests/tests/webkit/src/android/webkit/cts/
CookieManagerTest.java 87 assertTrue(m.matches());
97 assertTrue(m.matches());
108 assertTrue(m.matches());
  /external/chromium/chrome/browser/autocomplete/
autocomplete.h 24 // providers, each of which keeps track of its own matches and whether it has
25 // finished processing the query. When a provider gets more matches or finishes
26 // processing, it notifies the controller, which merges the combined matches
36 // their own thread management when they need to return matches asynchronously.
38 // The AutocompleteProviders each return different kinds of matches, such as
39 // history or search matches. These matches are given "relevance" scores.
40 // Higher scores are better matches than lower scores. The relevance scores and
41 // classes providing the respective matches are as follows:
159 // ++: a series of matches with relevance from n up to (n + max_matches)
403 const ACMatches& matches() const { return matches_; } function in class:AutocompleteProvider
    [all...]
  /external/guava/guava/src/com/google/common/net/
InternetDomainName.java 293 if (DASH_MATCHER.matches(part.charAt(0))
294 || DASH_MATCHER.matches(part.charAt(part.length() - 1))) {
306 if (isFinalPart && CharMatcher.DIGIT.matches(part.charAt(0))) {

Completed in 1174 milliseconds

<<11121314151617181920>>