/external/chromium_org/chrome/browser/autocomplete/ |
autocomplete_controller.h | 88 // Asks the relevant provider to delete |match|, and ensures observers are 91 void DeleteMatch(const AutocompleteMatch& match); 113 // Constructs the final destination URL for a given match using additional 116 // navigates to the selected match. 119 AutocompleteMatch* match) const; 121 // Constructs the final destination URL for a given match using additional 125 AutocompleteMatch* match) const; 167 // the default match has changed even if it hasn't. This is 170 // even if the default match didn't change. 174 // Updates |result| to populate each match's |associated_keyword| if tha [all...] |
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/tools/ |
jscompilerwrapper.py | 56 match = re.search(r'version "(?:\d+)\.(\d+)', output) 57 if match is None or int(match.group(1)) < 7:
|
/external/chromium_org/chrome_elf/ |
elf_imports_unittest.cc | 74 bool match = false; local 77 match = true; 79 ASSERT_TRUE(match) << "Illegal import in chrome_elf.dll.";
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
SelectorChecker.cpp | 124 SelectorChecker::Match SelectorChecker::match(const SelectorCheckingContext& context, const SiblingTraversalStrategy& siblingTraversalStrategy, MatchResult* result) const function in class:blink::SelectorChecker 126 // first selector has to match 131 if (context.selector->match() == CSSSelector::PseudoElement) { 163 Match match; local 175 match = matchForRelation(context, siblingTraversalStrategy, result); 180 match = matchForSubSelector(context, siblingTraversalStrategy, result); 182 if (match != SelectorMatches || !result) 183 return match; 265 Match match = this->match(nextContext, siblingTraversalStrategy, result); local 317 Match match = this->match(nextContext, siblingTraversalStrategy, result); local 343 Match match = this->match(nextContext, siblingTraversalStrategy, result); local [all...] |
/external/chromium_org/tools/grit/grit/format/ |
c_format.py | 51 def _HexToOct(match): 53 hex = match.group("hex") 59 return match.group("escaped_backslashes") + result
|
/external/easymock/src/org/easymock/internal/ |
UnorderedBehavior.java | 84 boolean match = invocation != null
87 if (unordered && validCallCount && !match) {
91 ErrorMessage message = new ErrorMessage(match, entry.toString(),
|
/external/iptables/extensions/ |
libxt_iprange.c | 30 "iprange match options:\n" 31 "[!] --src-range ip[-ip] Match source IP in the specified range\n" 32 "[!] --dst-range ip[-ip] Match destination IP in the specified range\n"); 92 "will never match\n", arg, dash + 1); 159 "iprange match: You must specify `--src-range' or `--dst-range'"); 174 static void iprange_print(const void *ip, const struct xt_entry_match *match, 177 const struct ipt_iprange_info *info = (const void *)match->data; 194 iprange_mt4_print(const void *ip, const struct xt_entry_match *match, 197 const struct xt_iprange_mtinfo *info = (const void *)match->data; 220 iprange_mt6_print(const void *ip, const struct xt_entry_match *match, [all...] |
/external/libpcap/Win32/Src/ |
getnetent.c | 106 any(cp, match) 108 char *match; 113 for (mp = match; *mp; mp++)
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
Parser.java | 58 Token tok = lexer.match(SIP); 61 lexer.match('/'); 62 tok = lexer.match(ID);
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ims/ |
PrivacyParser.java | 92 this.lexer.match(TokenTypes.ID); 101 this.lexer.match(';'); 104 this.lexer.match(TokenTypes.ID);
|
/device/lge/hammerhead/camera/QCamera2/util/ |
QCameraQueue.h | 52 void flushNodes(match_fn match);
|
/external/apache-http/src/org/apache/http/impl/cookie/ |
BasicSecureHandler.java | 59 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:BasicSecureHandler
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/ |
CollectionStore.java | 30 * @param selector the selector to match against. 48 if (selector.match(obj))
|
/external/chromium_org/build/mac/ |
strip_save_dsym | 57 type_match = re.match("^%s (.*)$" % macho_types_re, type_line) 62 type_match = re.match("^Mach-O universal binary with (.*) architectures$", 67 arch_match = re.match( 108 if re.match("^Load command .*$", otool_line): 111 if re.match("^ cmd LC_UUID$", otool_line): 116 if re.match("^ cmdsize 24$", otool_line): 130 new_uuid_match = re.match("^ {3,4}uuid (.{8}-.{4}-.{4}-.{4}-.{12})$", 138 old_uuid_match = re.match("^ uuid 0x(..) 0x(..) 0x(..) 0x(..) " 150 old_uuid_match = re.match("^ 0x(..) 0x(..) 0x(..) 0x(..) "
|
/external/chromium_org/chrome/browser/ui/views/omnibox/ |
omnibox_result_view.h | 57 // Updates the match used to paint the contents of this result view. We copy 58 // the match so that we can continue to paint the last result even after the 60 void SetMatch(const AutocompleteMatch& match); 75 // Returns the display width required for the match contents. 79 // Paints the given |match| using the RenderText instances |contents| and 81 virtual void PaintMatch(const AutocompleteMatch& match, 88 // |contents| indicates whether the |render_text| is for the match contents 90 // |match| are used to render Infinite suggestions correctly. If |max_width| 93 int DrawRenderText(const AutocompleteMatch& match, 124 // Whether to render only the keyword match. Returns true if |match_| has a [all...] |
/external/chromium_org/components/history/core/browser/ |
history_types_unittest.cc | 14 // that the URL rows match the indices structure. The unit tests themselves 23 for (size_t match = 0; match < match_count; match++) { 24 if (matches[match] == i) {
|
/external/chromium_org/components/omnibox/ |
autocomplete_provider_client.h | 54 AutocompleteMatch* match,
|
base_search_provider.h | 56 // Returns whether |match| is flagged as a query that should be prefetched. 57 static bool ShouldPrefetch(const AutocompleteMatch& match); 72 virtual void DeleteMatch(const AutocompleteMatch& match) OVERRIDE; 86 // Indicates whether the server said a match should be prefetched. 108 // If |template_url| is NULL, returns a match with an invalid destination URL. 111 // portions of the match contents to distinguish locally-typed text from 117 // appear as the default match when the user is in keyword mode. 174 // If the |deletion_url| is valid, then set |match.deletable| to true and 175 // save the |deletion_url| into the |match|'s additional info under 178 AutocompleteMatch* match); [all...] |
/external/chromium_org/ppapi/ |
generate_ppapi_include_tests.py | 25 # A simple regular expression that should match source files for C++ and C. 49 if not IGNORE_RE.match(src)] 62 if not IGNORE_RE.match(relative_root): 64 if SOURCE_FILE_RE.match(source): 154 if header_re.match(source):
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DocumentMarker.cpp | 77 explicit DocumentMarkerTextMatch(bool match) 78 : m_match(match) 85 PassRefPtrWillBeRawPtr<DocumentMarkerTextMatch> DocumentMarkerTextMatch::instanceFor(bool match) 89 return match ? trueInstance : falseInstance;
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
clean-header-guards | 34 next if filename.match(IgnoreFileNamesPattern) 38 match_results = contents.match(/#ifndef (\S+)\n#define \1/s)
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/formatter/ |
fix_double_quote_strings.py | 23 def match(self, node): member in class:FixDoubleQuoteStrings
|
fix_single_quote_strings.py | 23 def match(self, node): member in class:FixSingleQuoteStrings
|
/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-ot-name-table.hh | 91 NameRecord *match = (NameRecord *) bsearch (&key, nameRecord, count, sizeof (nameRecord[0]), (hb_compare_func_t) NameRecord::cmp); local 93 if (!match) 96 unsigned int length = MIN (buffer_length, (unsigned int) match->length); 97 memcpy (buffer, (char *) this + stringOffset + match->offset, length);
|
/external/chromium_org/third_party/icu/source/i18n/ |
unesctrn.cpp | 180 // match one of the specs. Exit the outer loop if a 181 // partial match is detected and isIncremental is true. 194 UBool match = TRUE; local 200 // a partial match, so we return if in 206 match = FALSE; 212 match = FALSE; 217 if (match) { 222 // Check for partial match in incremental mode. 240 match = (digitCount >= minDigits); 242 if (match) { [all...] |