/external/proguard/src/proguard/optimize/ |
Optimizer.java | 143 boolean classMarkingFinal = filter.matches(CLASS_MARKING_FINAL); 144 boolean classUnboxingEnum = filter.matches(CLASS_UNBOXING_ENUM); 145 boolean classMergingVertical = filter.matches(CLASS_MERGING_VERTICAL); 146 boolean classMergingHorizontal = filter.matches(CLASS_MERGING_HORIZONTAL); 147 boolean fieldRemovalWriteonly = filter.matches(FIELD_REMOVAL_WRITEONLY); 148 boolean fieldMarkingPrivate = filter.matches(FIELD_MARKING_PRIVATE); 149 boolean fieldPropagationValue = filter.matches(FIELD_PROPAGATION_VALUE); 150 boolean methodMarkingPrivate = filter.matches(METHOD_MARKING_PRIVATE); 151 boolean methodMarkingStatic = filter.matches(METHOD_MARKING_STATIC); 152 boolean methodMarkingFinal = filter.matches(METHOD_MARKING_FINAL) [all...] |
/external/opencv3/modules/features2d/include/opencv2/ |
features2d.hpp | 68 @defgroup features2d_draw Drawing Function of Keypoints and Matches 772 /** @brief Returns true if the descriptor matcher supports masking permissible matches. [all...] |
/external/iproute2/ip/ |
ipneigh.c | 58 if (matches(arg, "permanent") == 0) 60 else if (matches(arg, "reachable") == 0) 74 else if (matches(arg, "failed") == 0) 119 if (matches(*argv, "lladdr") == 0) { 131 } else if (matches(*argv, "proxy") == 0) { 133 if (matches(*argv, "help") == 0) 149 if (matches(*argv, "help") == 0) { 409 if (matches(*argv, "help") == 0) 488 if (matches(*argv, "add") == 0) 490 if (matches(*argv, "change") == 0 | [all...] |
rtmon.c | 85 if (matches(argv[1], "-family") == 0) { 108 } else if (matches(argv[1], "-Version") == 0) { 111 } else if (matches(argv[1], "file") == 0) { 117 } else if (matches(argv[1], "link") == 0) { 120 } else if (matches(argv[1], "address") == 0) { 123 } else if (matches(argv[1], "route") == 0) { 128 } else if (matches(argv[1], "help") == 0) {
|
ipmaddr.c | 260 else if (matches(*argv, "help") == 0) 298 if (matches(*argv, "address") == 0) { 301 if (matches(*argv, "help") == 0) 337 if (matches(*argv, "add") == 0) 339 if (matches(*argv, "delete") == 0) 341 if (matches(*argv, "list") == 0 || matches(*argv, "show") == 0 342 || matches(*argv, "lst") == 0) 344 if (matches(*argv, "help") == 0)
|
/cts/hostsidetests/services/activitymanager/src/android/server/cts/ |
ActivityManagerAmStartOptionsTests.java | 105 if (matcher.matches()) { 110 if (matcher.matches()) { 115 if (matcher.matches()) { 161 if (matcher.matches()) { 170 if (matcher.matches()) { 179 if (matcher.matches()) { 204 if (matcher.matches()) {
|
/external/deqp/framework/delibs/cmake/ |
Defs.cmake | 71 if (NOT ("${CMAKE_C_COMPILER_ID}" MATCHES "GNU") EQUAL ("${CMAKE_CXX_COMPILER_ID}" MATCHES "GNU")) 73 elseif (NOT ("${CMAKE_C_COMPILER_ID}" MATCHES "Clang") EQUAL ("${CMAKE_CXX_COMPILER_ID}" MATCHES "Clang")) 81 if (("${CMAKE_C_COMPILER_ID} x" MATCHES "MSVC") OR MSVC) 83 elseif ("${CMAKE_C_COMPILER_ID}" MATCHES "GNU") 85 elseif ("${CMAKE_C_COMPILER_ID}" MATCHES "Clang")
|
/external/icu/icu4c/source/common/ |
dictionarydata.h | 61 * Wrapper class around generic dictionaries, implementing matches(). 71 // this should emulate CompactTrieDictionary::matches() 78 * @param lengths output array, filled with the lengths of the matches, in order, 81 * @param cpLengths output array, filled with the lengths of the matches, in order, 91 virtual int32_t matches(UText *text, int32_t maxLength, int32_t limit, 106 virtual int32_t matches(UText *text, int32_t maxLength, int32_t limit, 124 virtual int32_t matches(UText *text, int32_t maxLength, int32_t limit,
|
/external/iproute2/bridge/ |
vlan.c | 74 if (matches(*argv, "help") == 0) { 248 if (matches(*argv, "add") == 0) 250 if (matches(*argv, "delete") == 0) 252 if (matches(*argv, "show") == 0 || 253 matches(*argv, "lst") == 0 || 254 matches(*argv, "list") == 0) 256 if (matches(*argv, "help") == 0)
|
/external/iproute2/tc/ |
f_route.c | 61 if (matches(*argv, "to") == 0) { 71 } else if (matches(*argv, "from") == 0) { 81 } else if (matches(*argv, "fromif") == 0) { 92 } else if (matches(*argv, "classid") == 0 || 101 } else if (matches(*argv, "police") == 0) { 108 } else if (matches(*argv, "action") == 0) { 115 } else if (matches(*argv, "order") == 0) {
|
/frameworks/support/v7/appcompat/tests/src/android/support/v7/app/ |
NightModeTestCase.java | 20 import static android.support.test.espresso.assertion.ViewAssertions.matches; 57 onView(withId(R.id.text_night_mode)).check(matches(withText(STRING_DAY))); 63 onView(withId(R.id.text_night_mode)).check(matches(withText(STRING_NIGHT))); 79 onView(withId(R.id.view_background)).check(matches(isBackground(dayColor))); 84 onView(withId(R.id.view_background)).check(matches(isBackground(nightColor))); 98 onView(withId(R.id.text_night_mode)).check(matches(withText(STRING_DAY))); 119 onView(withId(R.id.text_night_mode)).check(matches(withText(STRING_NIGHT)));
|
/packages/apps/Contacts/src/com/android/contacts/quickcontact/ |
ResolveCache.java | 135 final List<ResolveInfo> matches = mPackageManager.queryIntentActivities(intent, local 140 final int size = matches.size(); 142 bestResolve = matches.get(0); 144 bestResolve = getBestResolve(intent, matches); 168 protected ResolveInfo getBestResolve(Intent intent, List<ResolveInfo> matches) { 182 for (ResolveInfo info : matches) { 193 return firstSystem != null ? firstSystem : matches.get(0);
|
/packages/apps/Launcher2/src/com/android/launcher2/ |
AllAppsList.java | 90 final List<LauncherActivityInfo> matches = launcherApps.getActivityList(packageName, local 93 for (LauncherActivityInfo info : matches) { 121 final List<LauncherActivityInfo> matches = launcherApps.getActivityList(packageName, local 123 if (matches.size() > 0) { 131 if (!findActivity(matches, component, user)) { 141 int count = matches.size(); 143 final LauncherActivityInfo info = matches.get(i);
|
/prebuilts/tools/common/proguard/proguard4.7/docs/manual/retrace/ |
usage.html | 68 <td>matches a class name (e.g. 71 <td>matches a class name with slashes (e.g. 74 <td>matches a field type or method return type (e.g. 77 <td>matches a field name (e.g. 80 <td>matches a method name (e.g. 83 <td>matches a list of method arguments (e.g. 86 <td>matches a line number inside a method (e.g.
|
/external/gmock/include/gmock/ |
gmock-matchers.h | 74 // used by a matcher to explain why a value matches or doesn't match. 145 // Returns true iff the matcher matches x; also explains the match 229 // Returns true iff the matcher matches x; also explains the match 235 // Returns true iff this matcher matches x. 236 bool Matches(T x) const { 249 // Explains why x matches, or doesn't match, the matcher. 289 // object that can check whether a value of type T matches. The 644 // A<T>() returns a matcher that matches any value of type T. 670 // Matches the value against the given matcher, prints the value and explains 681 return matcher.Matches(value) 2583 const bool matches = inner_matcher_.MatchAndExplain(*it, &inner_listener); local [all...] |
/cts/tests/tests/os/src/android/os/cts/ |
BuildTest.java | 192 assertTrue(BOARD_PATTERN.matcher(Build.BOARD).matches()); 194 assertTrue(BRAND_PATTERN.matcher(Build.BRAND).matches()); 196 assertTrue(DEVICE_PATTERN.matcher(Build.DEVICE).matches()); 200 assertTrue(HARDWARE_PATTERN.matcher(Build.HARDWARE).matches()); 204 assertTrue(ID_PATTERN.matcher(Build.ID).matches()); 210 assertTrue(PRODUCT_PATTERN.matcher(Build.PRODUCT).matches()); 212 assertTrue(SERIAL_NUMBER_PATTERN.matcher(Build.SERIAL).matches()); 214 assertTrue(TAGS_PATTERN.matcher(Build.TAGS).matches()); 218 assertTrue(TYPE_PATTERN.matcher(Build.TYPE).matches());
|
/external/chromium-trace/catapult/third_party/gsutil/gslib/addlhelp/ |
wildcards.py | 32 The "*" wildcard only matches up to the end of a path within 39 If you want matches to span directory boundaries, use a '**' wildcard: 52 is expanding the matches before running gsutil. However, most shells do not 83 Matches a single character. For example "gs://bucket/??.txt" 84 only matches objects with two characters followed by .txt. 88 "gs://bucket/[aeiou].txt" matches objects that contain a single vowel 93 "gs://bucket/[a-m].txt" matches objects that contain letters 96 You can combine wildcards to provide more powerful matches, for example: 102 Per standard Unix behavior, the wildcard "*" only matches files that don't
|
/external/clang/unittests/Tooling/ |
TestVisitor.h | 111 /// \brief A RecursiveASTVisitor to check that certain matches are (or are 115 /// and allows simple creation of test visitors running matches on only a small 122 /// Any number of matches can be disallowed. 129 /// Any number of expected matches can be set by calling this repeatedly. 135 /// \brief Checks that all expected matches have been found. 145 /// \brief Checks an actual match against expected and disallowed matches. 155 EXPECT_FALSE(It->Matches(Name, FullLocation)) 177 bool Matches(StringRef Name, FullSourceLoc const &Location) const { 207 if (Candidate.Matches(Name, Location)) {
|
/external/regex-re2/re2/testing/ |
filtered_re2_test.cc | 16 vector<int> matches; member in struct:re2::FilterTestVars 23 v.f.AllMatches("foo", v.atom_indices, &v.matches); 24 EXPECT_EQ(0, v.matches.size()); 37 v.f.AllMatches("lemurs bar", v.atom_indices, &v.matches); 38 EXPECT_EQ(1, v.matches.size()); 39 EXPECT_EQ(id, v.matches[0]); 54 v.f.AllMatches("foo\xde\xadQ\xbe\xeflemur", v.atom_indices, &v.matches); 55 EXPECT_EQ(1, v.matches.size()); 56 EXPECT_EQ(id, v.matches[0]);
|
/build/soong/cc/ |
util.go | 68 matches := libNameRegexp.FindStringSubmatch(module) 69 if matches == nil { 72 return matches[1], nil
|
/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();
|
/external/ant-glob/src/org/apache/tools/ant/taskdefs/condition/ |
Os.java | 176 * Determines if the OS on which Ant is executing matches the type of 178 * @return true if the os matches. 188 * Determines if the OS on which Ant is executing matches the 191 * @return true if the OS matches 199 * Determines if the OS on which Ant is executing matches the 203 * @return true if the OS matches 211 * Determines if the OS on which Ant is executing matches the 215 * @return true if the OS matches 223 * Determines if the OS on which Ant is executing matches the 227 * @return true if the OS matches [all...] |
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/ |
SignerInformationStore.java | 63 * Return the first SignerInformation object that matches the 64 * passed in selector. Null if there are no matches. 67 * @return a single SignerInformation object. Null if none matches.
|
/external/caliper/caliper/src/main/java/com/google/caliper/bridge/ |
LogMessageParser.java | 47 if (gcMatcher.matches()) { 55 if (jitMatcher.matches()) { 59 if (vmOptionMatcher.matches()) {
|
/external/chromium-trace/catapult/third_party/polymer/components/iron-overlay-behavior/test/ |
iron-overlay-backdrop.html | 68 test('backdrop size matches parent size', function(done) { 74 assert.strictEqual(backdrop.offsetWidth, parent.clientWidth, 'backdrop width matches parent width'); 75 assert.strictEqual(backdrop.offsetHeight, parent.clientHeight, 'backdrop height matches parent height');
|