HomeSort by relevance Sort by last modified time
    Searched refs:match (Results 51 - 75 of 3045) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium/chrome/browser/autocomplete/
builtin_provider.cc 37 AutocompleteMatch match(this, kRelevance, false,
39 match.fill_into_edit = *i;
40 match.destination_url = GURL(*i);
41 match.contents = match.fill_into_edit;
42 match.contents_class.push_back(ACMatchClassification(0,
43 ACMatchClassification::MATCH | ACMatchClassification::URL));
44 if (match.contents.length() > input.text().length()) {
45 match.contents_class.push_back(
49 matches_.push_back(match);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/
clientinfo.c 88 char *match = strstr(haystack, "GLX_ARB_create_context"); local
90 if (match == NULL)
93 match += ext_length;
95 switch (match[0]) {
102 if (strncmp(match, "_profile", prof_length) == 0
103 && (match[prof_length] == '\0'
104 || match[prof_length] == ' ')) {
106 match += prof_length;
111 haystack = match;
  /external/mesa3d/src/glx/
clientinfo.c 88 char *match = strstr(haystack, "GLX_ARB_create_context"); local
90 if (match == NULL)
93 match += ext_length;
95 switch (match[0]) {
102 if (strncmp(match, "_profile", prof_length) == 0
103 && (match[prof_length] == '\0'
104 || match[prof_length] == ' ')) {
106 match += prof_length;
111 haystack = match;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/style/checkers/
jsonchecker.py 46 match = re.search(r': line (?P<line>\d+) column \d+', str(error))
47 if not match:
49 return int(match.group('line'))
  /external/chromium_org/third_party/icu/source/i18n/
csr2022.h 47 * @return match quality, in the range of 0-100.
60 int32_t match(InputText *textIn);
69 int32_t match(InputText *textIn);
80 int32_t match(InputText *textIn);
csrucode.h 37 * @see com.ibm.icu.text.CharsetRecognizer#match(com.ibm.icu.text.CharsetDetector)
39 int32_t match(InputText* textIn) = 0;
51 int32_t match(InputText* textIn);
62 int32_t match(InputText* textIn);
75 int32_t match(InputText* textIn);
  /external/icu4c/i18n/
csr2022.h 49 * @return match quality, in the range of 0-100.
65 UBool match(InputText *textIn, CharsetMatch *results) const;
74 UBool match(InputText *textIn, CharsetMatch *results) const;
85 UBool match(InputText *textIn, CharsetMatch *results) const;
csrecog.h 42 * with the quality of the match plus other information related to the match.
44 * Return TRUE if the the input bytes are a potential match, and
47 virtual UBool match(InputText *textIn, CharsetMatch *results) const = 0;
csrsbcs.h 56 virtual UBool match(InputText *det, CharsetMatch *results) const = 0;
65 virtual UBool match(InputText *det, CharsetMatch *results) const;
73 virtual UBool match(InputText *det, CharsetMatch *results) const;
124 virtual UBool match(InputText *det, CharsetMatch *results) const;
134 virtual UBool match(InputText *det, CharsetMatch *results) const;
144 virtual UBool match(InputText *det, CharsetMatch *results) const;
156 virtual UBool match(InputText *det, CharsetMatch *results) const;
166 virtual UBool match(InputText *det, CharsetMatch *results) const;
176 virtual UBool match(InputText *det, CharsetMatch *results) const;
188 virtual UBool match(InputText *det, CharsetMatch *results) const
    [all...]
csrucode.h 37 * @see com.ibm.icu.text.CharsetRecognizer#match(com.ibm.icu.text.CharsetDetector)
39 UBool match(InputText* textIn, CharsetMatch *results) const = 0;
51 UBool match(InputText* textIn, CharsetMatch *results) const;
62 UBool match(InputText* textIn, CharsetMatch *results) const;
75 UBool match(InputText* textIn, CharsetMatch *results) const;
csrutf8.h 33 * @see com.ibm.icu.text.CharsetRecognizer#match(com.ibm.icu.text.CharsetDetector)
35 UBool match(InputText *input, CharsetMatch *results) const;
  /external/nist-sip/java/gov/nist/javax/sip/parser/
FromParser.java 55 this.lexer.match(TokenTypes.FROM);
57 this.lexer.match(':');
60 this.lexer.match('\n');
ContentTypeParser.java 66 lexer.match(TokenTypes.ID);
72 lexer.match('/');
73 lexer.match(TokenTypes.ID);
78 this.lexer.match('\n');
  /external/chromium_org/third_party/angle/src/libEGL/
Config.cpp 251 bool match = true;
258 case EGL_BUFFER_SIZE: match = config->mBufferSize >= attribute[1]; break;
259 case EGL_ALPHA_SIZE: match = config->mAlphaSize >= attribute[1]; break;
260 case EGL_BLUE_SIZE: match = config->mBlueSize >= attribute[1]; break;
261 case EGL_GREEN_SIZE: match = config->mGreenSize >= attribute[1]; break;
262 case EGL_RED_SIZE: match = config->mRedSize >= attribute[1]; break;
263 case EGL_DEPTH_SIZE: match = config->mDepthSize >= attribute[1]; break;
264 case EGL_STENCIL_SIZE: match = config->mStencilSize >= attribute[1]; break;
265 case EGL_CONFIG_CAVEAT: match = config->mConfigCaveat == (EGLenum) attribute[1]; break;
266 case EGL_CONFIG_ID: match = config->mConfigID == attribute[1]; break
    [all...]
  /external/clang/unittests/AST/
SourceLocationTest.cpp 34 EXPECT_FALSE(Verifier.match("int i", varDecl()));
40 EXPECT_FALSE(Verifier.match("int i;", recordDecl()));
46 EXPECT_FALSE(Verifier.match("int i;", varDecl()));
52 EXPECT_FALSE(Verifier.match("int i;", varDecl()));
58 EXPECT_FALSE(Verifier.match("int i;", varDecl()));
71 EXPECT_TRUE(Verifier.match("void f() { l: return; }", labelStmt()));
77 EXPECT_TRUE(Verifier.match("void f() { l: return; }", labelStmt()));
83 EXPECT_TRUE(Verifier.match("void f(i) {}", varDecl(), Lang_C));
89 EXPECT_TRUE(Verifier.match("void f(i) {}", varDecl(), Lang_C));
95 EXPECT_TRUE(Verifier.match("void f() { new int[10]; }", newExpr()))
    [all...]
  /external/chromium_org/chrome/browser/autocomplete/
history_quick_provider.cc 97 void HistoryQuickProvider::DeleteMatch(const AutocompleteMatch& match) {
98 DCHECK(match.deletable);
99 DCHECK(match.destination_url.is_valid());
100 // Delete the match from the InMemoryURLIndex.
101 GetIndex()->DeleteURL(match.destination_url);
102 DeleteMatchFromMatches(match);
115 // Figure out if HistoryURL provider has a URL-what-you-typed match
120 // input to be a URL-what-you-typed match. The username test checks that
125 // provider won't promote the URL-what-you-typed match to first
141 // data structure) compete with the URL-what-you-typed match a
    [all...]
  /external/chromium_org/third_party/WebKit/Source/testing/data/fonts/
fonts.conf 5 <match target="font">
7 </match>
9 <match target="pattern">
16 </match>
18 <match target="pattern">
25 </match>
27 <match target="pattern">
34 </match>
38 <match target="pattern">
45 </match>
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/
SearchSymbol.h 29 bool match; member in class:sh::SearchSymbol
  /external/droiddriver/src/com/google/android/droiddriver/finders/
MatchStrategy.java 26 boolean match(T expected, T actual); method in interface:MatchStrategy
  /external/elfutils/libdwfl/
dwfl_module_getsrc_file.c 73 Dwfl_Line **match = *nsrcs == 0 ? NULL : *srcsp; local
96 no match is performed. */
113 /* Match the name with the name the user provided. */
122 /* See whether line and possibly column match. */
126 /* Cannot match. */
129 /* Determine whether this is the best match so far. */
132 if (dwfl_line_file (match[inner])
136 && (dwfl_line (match[inner])->line != line->line
137 || dwfl_line (match[inner])->line != lineno
139 && (dwfl_line (match[inner])->column != line->colum
    [all...]
  /external/iptables/extensions/
libxt_comment.c 1 /* Shared library add-on to iptables to add comment match support.
5 * Initial comment match
20 "comment match options:\n"
32 comment_print(const void *ip, const struct xt_entry_match *match, int numeric)
34 struct xt_comment_info *commentinfo = (void *)match->data;
42 comment_save(const void *ip, const struct xt_entry_match *match)
44 struct xt_comment_info *commentinfo = (void *)match->data;
  /external/iptables/include/linux/netfilter/
xt_owner.h 15 __u8 match, invert; member in struct:xt_owner_match_info
  /external/mockito/src/org/mockito/internal/util/
Decamelizer.java 30 Matcher match = CAPS.matcher(className); local
32 while(match.find()) {
34 deCameled.append(match.group());
37 deCameled.append(match.group().toLowerCase());
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
TypedUriMatcher.java 26 public T match(Uri uri); method in interface:TypedUriMatcher
  /external/chromium_org/tools/
ipc_messages_log.py 99 match = re.match(msg_start_re, line)
100 if match:
101 msg_start = match.group(1)
103 match = re.match(msg_def_re, line)
104 if match:
105 msg_name = match.group(1)
126 match = re.search(unknown_msg_re, line)
127 if match
    [all...]

Completed in 336 milliseconds

1 23 4 5 6 7 8 91011>>