HomeSort by relevance Sort by last modified time
    Searched defs:matched (Results 1 - 25 of 249) sorted by null

1 2 3 4 5 6 7 8 910

  /hardware/qcom/camera/msm8998/QCamera2/stack/mm-camera-interface/inc/
mm_camera_muxer.h 48 /*Is this matched?*/
49 uint8_t matched; member in struct:mm_frame_sync_queue_node
  /external/brotli/c/enc/
find_match_length.h 25 size_t matched = 0; local
29 BROTLI_UNALIGNED_LOAD64LE(s1 + matched))) {
31 matched += 8;
34 BROTLI_UNALIGNED_LOAD64LE(s1 + matched);
36 matched += matching_bits >> 3;
37 return matched;
42 if (BROTLI_PREDICT_TRUE(s1[matched] == *s2)) {
44 ++matched;
46 return matched;
49 return matched;
55 size_t matched = 0; local
    [all...]
  /frameworks/base/cmds/statsd/src/matchers/
SimpleLogMatchingTracker.cpp 68 bool matched = matchesSimple(mUidMap, mMatcher, event); local
69 matcherResults[mIndex] = matched ? MatchingState::kMatched : MatchingState::kNotMatched;
70 VLOG("Stats SimpleLogMatcher %lld matched? %d", (long long)mId, matched);
CombinationLogMatchingTracker.cpp 116 bool matched = combinationMatch(mChildren, mLogicalOperation, matcherResults); local
117 matcherResults[mIndex] = matched ? MatchingState::kMatched : MatchingState::kNotMatched;
matcher_util.cpp 35 bool matched; local
38 matched = true;
41 matched = false;
48 matched = false;
51 matched = true;
58 matched = matcherResults[children[0]] == MatchingState::kNotMatched;
61 matched = false;
64 matched = true;
70 matched = true;
73 matched = false
204 bool matched = true; local
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/util/
SearchUtilTest.java 33 SearchUtil.MatchedLine matched = SearchUtil.findMatchingLine(actual, "poten"); local
34 assertEquals("With potentially many lines.", matched.line);
35 assertEquals(5, matched.startIndex);
38 matched = SearchUtil.findMatchingLine(actual, "hello");
39 assertEquals("hello", matched.line);
40 assertEquals(0, matched.startIndex);
43 matched = SearchUtil.findMatchingLine(actual, "this");
44 assertEquals("this is a long test string.", matched.line);
45 assertEquals(0, matched.startIndex);
48 matched = SearchUtil.findMatchingLine(actual, "punc")
    [all...]
  /libcore/ojluni/src/main/java/sun/security/util/
Debug.java 255 String matched = matcher.group(); local
256 target.append(matched.replaceFirst(keyReg, keyStr));
259 // delete the matched sequence
279 String matched = matcher.group(); local
280 target.append(matched.replaceFirst(keyReg, keyStr));
283 // delete the matched sequence
  /art/tools/ahat/src/main/com/android/ahat/heapdump/
DiffedFieldValue.java 47 * Whether the field was added to, deleted from, or matched with a field in
54 * matched with a field in the baseline heap dump.
65 MATCHED,
81 public static DiffedFieldValue matched(FieldValue current, FieldValue baseline) { method in class:DiffedFieldValue
86 Status.MATCHED);
136 case MATCHED:
DiffFields.java 63 diffed.add(DiffedFieldValue.matched(currentField, baselineField));
  /cts/hostsidetests/inputmethodservice/deviceside/devicetest/src/android/inputmethodservice/cts/devicetest/
SequenceMatcher.java 41 MatchResult(final boolean matched, final List<E> matchedSequence) {
42 mMatched = matched;
46 boolean matched() { method in class:SequenceMatcher.MatchResult
100 * SequenceMatcher.of(1)).matched(); // true
102 * SequenceMatcher.of(2)).matched(); // true
104 * SequenceMatcher.of(0)).matched(); // false
106 * SequenceMatcher.of(2, 3, 4)).matched(); // true
108 * SequenceMatcher.of(2, 3, 5)).matched(); // false, not continuous.
110 * SequenceMatcher.of(2, 1)).matched(); // false
112 * SequenceMatcher.of(1, 2, 3, 4, 5, 6)).matched(); // fals
    [all...]
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/
Condition.java 33 public static <T> Condition<T> matched(final T theValue, final Description mismatch) { method in class:Condition
34 return new Matched<T>(theValue, mismatch);
37 private static final class Matched<T> extends Condition<T> {
41 private Matched(T theValue, Description mismatch) {
  /external/tensorflow/tensorflow/core/kernels/data/
filter_dataset_op.cc 129 bool matched; variable
157 matched = result[0].scalar<bool>()();
158 if (!matched) {
162 } while (!matched);
  /bionic/tests/
pty_test.cpp 79 std::atomic<bool> matched; member in struct:PtyReader_28979140_Arg
98 arg->matched = false;
142 arg.matched = true;
161 ASSERT_TRUE(arg.matched) << "failed at count = " << counter;
165 ASSERT_TRUE(arg.matched);
  /external/curl/lib/
system_win32.c 77 * Returns TRUE if matched; otherwise FALSE.
84 bool matched = FALSE; local
94 matched = targetVersion < fullVersion;
98 matched = targetVersion <= fullVersion;
102 matched = targetVersion == fullVersion;
106 matched = targetVersion >= fullVersion;
110 matched = targetVersion > fullVersion;
114 if(matched && (platform == PLATFORM_WINDOWS)) {
116 matched = FALSE;
133 matched = TRUE
    [all...]
  /external/sqlite/android/
OldPhoneNumberUtils.cpp 171 int matched; local
189 matched = 0;
215 ia--; ib--; matched++;
219 if (matched < MIN_MATCH) {
223 // if the number of dialable chars in a and b match, but the matched chars < MIN_MATCH,
225 if (effectiveALen == effectiveBLen && effectiveALen == matched) {
232 // At least one string has matched completely;
233 if (matched >= MIN_MATCH && (ia < 0 || ib < 0)) {
  /external/tensorflow/tensorflow/compiler/xla/service/
platform_util.cc 162 std::vector<se::Platform*> matched; local
165 matched.push_back(platform);
168 if (matched.empty()) {
172 if (matched.size() == 1) {
173 return matched[0];
176 matched, ", ",
  /frameworks/base/services/core/java/com/android/server/timezone/
PackageTrackerHelperImpl.java 140 ResolveInfo matched = resolveInfo.get(0); local
141 boolean requiresPermission = requiredPermissionName.equals(matched.activityInfo.permission);
  /packages/apps/Contacts/src/com/android/contacts/util/
SearchUtil.java 50 final MatchedLine matched = new MatchedLine(); local
71 matched.line = contents.substring(start + 1, end);
72 matched.startIndex = index - (start + 1);
74 return matched;
  /packages/apps/Dialer/java/com/android/contacts/common/util/
SearchUtil.java 33 final MatchedLine matched = new MatchedLine(); local
54 matched.line = contents.substring(start + 1, end);
55 matched.startIndex = index - (start + 1);
57 return matched;
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/v4/content/
shortcut_dict_content.cpp 162 bool matched = true; local
165 matched = false;
169 if (matched) {
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_state.cpp 224 const bool matched = (currentCodePoints[j] == baseLowerC local
226 if (matched) {
239 const bool matched = (currentCodePoints[j] == baseLowerC local
241 if (matched) {
  /external/boringssl/src/crypto/x509v3/
pcy_tree.c 316 int matched = 0; local
324 matched = 1;
327 if (!matched && last->anyPolicy) {
408 /* If no policy mapping: matched if one child present */
415 /* If mapping: matched if one child per expected policy set */
  /external/googletest/googlemock/src/
gmock-matchers.cc 218 // each element can be matched to only one matcher), there is no need
351 << " is matched by matcher #" << matches[mi].second;
453 char matched = matrix.HasEdge(ilhs, irhs); local
454 element_matched[ilhs] |= matched;
455 matcher_matched[irhs] |= matched;
  /external/v8/testing/gmock/src/
gmock-matchers.cc 218 // each element can be matched to only one matcher), there is no need
351 << " is matched by matcher #" << matches[mi].second;
454 char matched = matrix.HasEdge(ilhs, irhs); local
455 element_matched[ilhs] |= matched;
456 matcher_matched[irhs] |= matched;
  /frameworks/compile/mclinker/lib/Object/
SectionMap.cpp 179 if (matched(**in, pInputFile, pInputSection))
192 if (matched(**in, pInputFile, pInputSection))
296 bool SectionMap::matched(const SectionMap::Input& pInput, function in class:mcld::SectionMap
299 if (pInput.spec().hasFile() && !matched(pInput.spec().file(), pInputFile))
306 if (matched(llvm::cast<WildcardPattern>(**file), pInputFile)) {
315 if (matched(llvm::cast<WildcardPattern>(**sect), pInputSection)) {
324 bool SectionMap::matched(const WildcardPattern& pPattern, function in class:mcld::SectionMap

Completed in 638 milliseconds

1 2 3 4 5 6 7 8 910