HomeSort by relevance Sort by last modified time
    Searched defs:match (Results 326 - 350 of 2151) sorted by null

<<11121314151617181920>>

  /external/selinux/gui/
booleansPage.py 200 def match(self, key, filter=""): member in class:booleansPage
216 if self.match(name, filter):
  /external/skia/tools/flags/
SkCommonFlags.h 21 DECLARE_string(match); variable
  /external/tensorflow/tensorflow/contrib/data/python/kernel_tests/
dataset_serialization_test_base.py 262 self.match(expected, actual)
325 self.match(expected, actual)
386 self.match(expected, actual)
461 self.match(expected, actual)
534 def match(self, expected, actual): member in class:DatasetSerializationTestBase
559 self.match(expected[key1], actual[key2])
562 self.match(item1, item2)
568 self.match(expected, actual)
  /external/toybox/toys/pending/
mdev.c 107 // Regex to match this device
111 regex_t match; local
116 xregcomp(&match, regex, REG_EXTENDED);
117 result=regexec(&match, device_name, 1, &off, 0);
118 regfree(&match);
  /external/v8/src/inspector/
search-util.cc 51 String16 match = multiline local
55 size_t newLine = match.find("\n");
56 if (newLine != String16::kNotFound) match = match.substring(0, newLine);
57 match = match.stripWhiteSpace();
59 for (size_t i = 0; i < match.length(); ++i) {
60 UChar c = match[i];
64 return match;
115 if (regex.match(line, 0, &matchLength) != -1
    [all...]
  /external/valgrind/tests/
s390x_features.c 20 // cpu model, if specified, does not match the machine
205 unsigned long long match; local
212 match = (facilities & FAC_BIT(1)) && (facilities & FAC_BIT(2));
214 match = facilities & FAC_BIT(0);
216 match = facilities & FAC_BIT(7);
218 match = (facilities & FAC_BIT(18)) && (facilities & FAC_BIT(19));
220 match = facilities & FAC_BIT(21);
222 match = facilities & FAC_BIT(25);
224 match = facilities & FAC_BIT(34);
226 match = facilities & FAC_BIT(35)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/content/
MemoryFileProvider.java 120 int match = sURLMatcher.match(url); local
121 switch (match) {
133 int match = sURLMatcher.match(url); local
134 switch (match) {
  /frameworks/base/tools/bit/
aapt.cpp 181 smatch match; local
182 if (regex_match(line, match, NS_REGEX)) {
183 int depth = match[1].length() / 2;
190 scope->namespaces[match[2]] = match[3];
191 } else if (regex_match(line, match, ELEMENT_REGEX)) {
194 string str = match[2];
202 element->lineno = atoi(match[3].str().c_str());
203 element->depth = match[1].length() / 2;
216 } else if (regex_match(line, match, ATTR_REGEX))
    [all...]
  /frameworks/minikin/libs/minikin/
FontFamily.cpp 123 // Compute a matching metric between two styles - 0 is an exact match
148 int match = computeMatch(font.style(), style); local
149 if (i == 0 || match < bestMatch) {
151 bestMatch = match;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
TimeZoneLookupHelper.java 178 * time this process is error prone; an arbitrary match is returned when there are multiple
179 * candidates. The algorithm can also return a non-exact match by assuming that the DST
215 * time this process is error prone; an arbitrary match is returned when there are multiple
216 * candidates. The algorithm can also return a non-exact match by assuming that the DST
230 OffsetResult match = lookupByInstantOffsetDst(timeMillis, utcOffsetMillis, isDst); local
231 if (match == null) {
233 match = lookupByInstantOffsetDst(timeMillis, utcOffsetMillis, !isDst);
235 return match;
245 TimeZone match = null; local
251 if (match == null)
    [all...]
  /frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/
FakeSmsContentProvider.java 94 int match = sURLMatcher.match(uri); local
96 switch (match) {
  /libcore/ojluni/src/main/java/sun/misc/
RegexpPool.java 124 // delete only if there is an exact match
140 /** Search for a match to a string & return the object associated
141 with it with the match. When multiple regular expressions
142 would match the string, the best match is returned first.
143 The next best match is returned the next time matchNext is
145 @param s The string to match against the regular expressions
153 public Object match(String s) { method in class:RegexpPool
157 /** Identical to match except that it will only find matches to
160 to match() or matchNext() *
    [all...]
  /libcore/ojluni/src/main/java/sun/nio/fs/
AbstractBasicFileAttributeView.java 118 boolean match(String name) { method in class:AbstractBasicFileAttributeView.AttributesBuilder
142 if (builder.match(SIZE_NAME))
144 if (builder.match(CREATION_TIME_NAME))
146 if (builder.match(LAST_ACCESS_TIME_NAME))
148 if (builder.match(LAST_MODIFIED_TIME_NAME))
150 if (builder.match(FILE_KEY_NAME))
152 if (builder.match(IS_DIRECTORY_NAME))
154 if (builder.match(IS_REGULAR_FILE_NAME))
156 if (builder.match(IS_SYMBOLIC_LINK_NAME))
158 if (builder.match(IS_OTHER_NAME)
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/provider/
ClockProvider.java 154 int match = sURIMatcher.match(uri); local
155 switch (match) {
194 int match = sURIMatcher.match(uri); local
195 switch (match) {
214 switch (sURIMatcher.match(uri)) {
240 switch (sURIMatcher.match(uri)) {
261 switch (sURIMatcher.match(uri)) {
300 final int match = sURIMatcher.match(uri) local
    [all...]
  /packages/apps/Dialer/java/com/android/dialer/blocking/
FilteredNumberProvider.java 67 final int match = uriMatcher.match(uri); local
68 switch (match) {
124 final int match = uriMatcher.match(uri); local
125 switch (match) {
145 final int match = uriMatcher.match(uri); local
146 switch (match) {
  /packages/apps/Email/src/com/android/email2/ui/
MailActivityEmail.java 63 final int match = sUrlMatcher.match(data); local
64 switch (match) {
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
PathMatcher.java 41 public int match(Path path) { method in class:PathMatcher
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
GoogleSuggestionProvider.java 75 int match = mUriMatcher.match(uri); local
77 if (match == SEARCH_SUGGEST) {
81 } else if (match == SEARCH_SHORTCUT) {
  /packages/apps/TV/tests/common/src/com/android/tv/testing/
FakeEpgReader.java 81 Channel match = local
93 if (match != null) {
94 ChannelImpl updatedChannel = new ChannelImpl.Builder(match).build();
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ProfileAwareUriMatcher.java 58 * @param code the code to match for the root URI
110 * 3. The URI contains lookup key references that match the special profile lookup key.
115 int match = match(uri); local
116 if (PROFILE_URIS.contains(match)) {
118 } else if (PROFILE_URI_ID_MAP.containsKey(match)) {
119 int idSegment = PROFILE_URI_ID_MAP.get(match);
124 } else if (PROFILE_URI_LOOKUP_KEY_MAP.containsKey(match)) {
125 int lookupKeySegment = PROFILE_URI_LOOKUP_KEY_MAP.get(match);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/ASTMatchers/
ASTMatchFinder.h 11 // over the AST and invokes a given callback on every match.
14 // subtree match on the AST. Next, a callback that is executed every time the
19 // the match or construct changes that can be applied to the code.
59 /// that will trigger the callbacks specified via addMatcher(...) when a match
71 /// \brief Contains all information for a given match.
73 /// Every time a match is found, the MatchFinder will invoke the registered
74 /// MatchCallback with a MatchResult containing information about the match.
78 /// \brief Contains the nodes bound on the current match.
90 /// \brief Called when the Match registered for it was successfully found
96 /// \brief Called on every match by the \c MatchFinder
185 template <typename T> void match(const T &Node, ASTContext &Context) { function in class:clang::ast_matchers::MatchFinder
288 match(MatcherT Matcher, const ast_type_traits::DynTypedNode &Node, function in namespace:clang::ast_matchers
299 match(MatcherT Matcher, const NodeT &Node, ASTContext &Context) { function in namespace:clang::ast_matchers
305 match(MatcherT Matcher, ASTContext &Context) { function in namespace:clang::ast_matchers
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/ASTMatchers/
ASTMatchFinder.h 11 // over the AST and invokes a given callback on every match.
14 // subtree match on the AST. Next, a callback that is executed every time the
19 // the match or construct changes that can be applied to the code.
59 /// that will trigger the callbacks specified via addMatcher(...) when a match
71 /// \brief Contains all information for a given match.
73 /// Every time a match is found, the MatchFinder will invoke the registered
74 /// MatchCallback with a MatchResult containing information about the match.
78 /// \brief Contains the nodes bound on the current match.
90 /// \brief Called when the Match registered for it was successfully found
96 /// \brief Called on every match by the \c MatchFinder
185 template <typename T> void match(const T &Node, ASTContext &Context) { function in class:clang::ast_matchers::MatchFinder
288 match(MatcherT Matcher, const ast_type_traits::DynTypedNode &Node, function in namespace:clang::ast_matchers
299 match(MatcherT Matcher, const NodeT &Node, ASTContext &Context) { function in namespace:clang::ast_matchers
305 match(MatcherT Matcher, ASTContext &Context) { function in namespace:clang::ast_matchers
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/ASTMatchers/
ASTMatchFinder.h 11 // over the AST and invokes a given callback on every match.
14 // subtree match on the AST. Next, a callback that is executed every time the
19 // the match or construct changes that can be applied to the code.
59 /// that will trigger the callbacks specified via addMatcher(...) when a match
71 /// \brief Contains all information for a given match.
73 /// Every time a match is found, the MatchFinder will invoke the registered
74 /// MatchCallback with a MatchResult containing information about the match.
78 /// \brief Contains the nodes bound on the current match.
90 /// \brief Called when the Match registered for it was successfully found
96 /// \brief Called on every match by the \c MatchFinder
185 template <typename T> void match(const T &Node, ASTContext &Context) { function in class:clang::ast_matchers::MatchFinder
288 match(MatcherT Matcher, const ast_type_traits::DynTypedNode &Node, function in namespace:clang::ast_matchers
299 match(MatcherT Matcher, const NodeT &Node, ASTContext &Context) { function in namespace:clang::ast_matchers
305 match(MatcherT Matcher, ASTContext &Context) { function in namespace:clang::ast_matchers
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/ASTMatchers/
ASTMatchFinder.h 11 // over the AST and invokes a given callback on every match.
14 // subtree match on the AST. Next, a callback that is executed every time the
19 // the match or construct changes that can be applied to the code.
59 /// that will trigger the callbacks specified via addMatcher(...) when a match
71 /// \brief Contains all information for a given match.
73 /// Every time a match is found, the MatchFinder will invoke the registered
74 /// MatchCallback with a MatchResult containing information about the match.
78 /// \brief Contains the nodes bound on the current match.
90 /// \brief Called when the Match registered for it was successfully found
96 /// \brief Called on every match by the \c MatchFinder
185 template <typename T> void match(const T &Node, ASTContext &Context) { function in class:clang::ast_matchers::MatchFinder
288 match(MatcherT Matcher, const ast_type_traits::DynTypedNode &Node, function in namespace:clang::ast_matchers
299 match(MatcherT Matcher, const NodeT &Node, ASTContext &Context) { function in namespace:clang::ast_matchers
305 match(MatcherT Matcher, ASTContext &Context) { function in namespace:clang::ast_matchers
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/ASTMatchers/
ASTMatchFinder.h 11 // over the AST and invokes a given callback on every match.
14 // subtree match on the AST. Next, a callback that is executed every time the
19 // the match or construct changes that can be applied to the code.
59 /// that will trigger the callbacks specified via addMatcher(...) when a match
71 /// \brief Contains all information for a given match.
73 /// Every time a match is found, the MatchFinder will invoke the registered
74 /// MatchCallback with a MatchResult containing information about the match.
78 /// \brief Contains the nodes bound on the current match.
90 /// \brief Called when the Match registered for it was successfully found
96 /// \brief Called on every match by the \c MatchFinder
185 template <typename T> void match(const T &Node, ASTContext &Context) { function in class:clang::ast_matchers::MatchFinder
288 match(MatcherT Matcher, const ast_type_traits::DynTypedNode &Node, function in namespace:clang::ast_matchers
299 match(MatcherT Matcher, const NodeT &Node, ASTContext &Context) { function in namespace:clang::ast_matchers
305 match(MatcherT Matcher, ASTContext &Context) { function in namespace:clang::ast_matchers
    [all...]

Completed in 3078 milliseconds

<<11121314151617181920>>