/external/clang/test/ |
make_test_dirs.pl | 11 $next_indent_level = length($MATCH);
|
/external/oprofile/libutil/ |
op_file.c | 126 * filter match, so for simplicity, we perform this match for all recursion 127 * types and logically OR the match result with the value of the passed 131 #define MATCH 1 136 int match; local 145 match = 1; 147 match = 0; 149 switch (recursion | match) { 154 case NO_RECURSION + MATCH: 157 case MATCH_ANY_ENTRY_RECURSION + MATCH [all...] |
/external/qemu/distrib/zlib-1.2.3/ |
inflate.h | 43 MATCH, /* o: waiting for output space to copy string */ 70 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN
|
/external/zlib/src/ |
inflate.h | 45 MATCH, /* o: waiting for output space to copy string */ 74 LENEXT -> DIST -> DISTEXT -> MATCH -> LEN 121 unsigned was; /* initial length of match */
|
/external/chromium/chrome/browser/autocomplete/ |
history_quick_provider_unittest.cc | 105 // results' destination URLs match those provided. |expected_urls| does not 292 // Simulates matches: '.xx.xxx..xx...xxxxx..' which will test no match at 306 EXPECT_EQ(ACMatchClassification::MATCH, spans_a[1].style); 310 EXPECT_EQ(ACMatchClassification::MATCH, spans_a[3].style); 314 EXPECT_EQ(ACMatchClassification::MATCH, spans_a[5].style); 318 EXPECT_EQ(ACMatchClassification::MATCH, spans_a[7].style); 331 EXPECT_EQ(ACMatchClassification::MATCH, spans_b[0].style); 335 EXPECT_EQ(ACMatchClassification::MATCH, spans_b[2].style);
|
autocomplete_match.h | 32 // with some kind of classification. Even if a match has no distinct 39 // 11,match 0,match 49 MATCH = 1 << 1, // A match for the user's search term 66 // The type of this match. 99 // Comparison function for determining when one match is better than another. 111 // and marking the first instance of |find_text| as a match. (This match 120 // when find() would be misleading (e.g. you want to mark the second match i [all...] |
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...] |
autocomplete_match.cc | 133 // Mark pre-match portion of string (if any). 140 // No match, above classification will suffice for whole string. 143 // Classifying an empty match makes no sense and will lead to validation 147 (style | ACMatchClassification::MATCH) & ~ACMatchClassification::DIM)); 149 // Mark post-match portion of string (if any).
|
autocomplete_popup_view_gtk_unittest.cc | 100 // the match. Otherwise, check that the new attribute is, in 115 // Now we have a match. May need to keep going to shorten 327 // Match "is". 337 ACMatchClassification(runLength1, ACMatchClassification::MATCH)); 385 // Match "hello". 395 ACMatchClassification::URL | ACMatchClassification::MATCH;
|
extension_app_provider.cc | 63 // We have a match, might be a partial match. 66 AutocompleteMatch match(this, 0, false, 68 match.fill_into_edit = UTF8ToUTF16(url); 69 match.destination_url = GURL(url); 70 match.inline_autocomplete_offset = string16::npos; 71 match.contents = UTF8ToUTF16(name); 72 HighlightMatch(input, &match.contents_class, name_iter, name); 73 match.description = UTF8ToUTF16(url); 74 HighlightMatch(input, &match.description_class, url_iter, url) [all...] |
history_contents_provider.cc | 91 // None of our results are applicable for best match. 212 AutocompleteMatch match(this, score, true, MatchInTitle(result) ? 214 match.contents = StringForURLDisplay(result.url(), true, trim_http_); 215 match.fill_into_edit = 217 match.contents); 218 match.destination_url = result.url(); 219 match.contents_class.push_back( 221 match.description = result.title(); 222 match.starred = 226 ClassifyDescription(result, &match); [all...] |
history_quick_provider.cc | 85 // TODO(mrossetti): Determine when a match should be deletable. 86 void HistoryQuickProvider::DeleteMatch(const AutocompleteMatch& match) {} 129 // Discount a very high score when a) a match doesn't start at the beginning 141 AutocompleteMatch match(this, score, !!info.visit_count(), 146 match.destination_url = info.url(); 147 DCHECK(match.destination_url.is_valid()); 152 match.fill_into_edit = 157 match.inline_autocomplete_offset = inline_autocomplete_offset; 158 DCHECK((match.inline_autocomplete_offset == string16::npos) || 159 (match.inline_autocomplete_offset <= match.fill_into_edit.length())) [all...] |
/external/v8/tools/ |
common-includes.sh | 63 local MATCH=$(git branch | grep "$1" | awk '{print $NF}' | grep -x $1) 64 if [ "$MATCH" == "$1" ] ; then
|
/bionic/libc/netbsd/resolv/ |
res_init.c | 275 #define MATCH(line, name) \ 288 if (MATCH(buf, "domain")) { 304 if (MATCH(buf, "search")) { 341 if (MATCH(buf, "nameserver") && nserv < MAXNS) { 375 if (MATCH(buf, "sortlist")) { 417 if (MATCH(buf, "options")) {
|
/external/apache-xml/src/main/java/org/apache/xpath/ |
XPath.java | 146 /** Represents a match type expression. */ 147 public static final int MATCH = 1; 158 * @param type one of {@link #SELECT} or {@link #MATCH}. 179 else if (MATCH == type) 206 * @param type one of {@link #SELECT} or {@link #MATCH}. 228 else if (MATCH == type) 258 * @param type one of {@link #SELECT} or {@link #MATCH}. 463 * match pattern testing. */ 467 * Get the match score of the given node. 613 * The match score if no match is made [all...] |
/ndk/sources/host-tools/nawk-20071023/ |
maketab.c | 73 { MATCH, "matchop", " ~ " },
|
awkgram.y | 52 %token <i> MATCH NOTMATCH MATCHOP 282 { $$ = op3(MATCH, NIL, rectonode(), (Node*)makedfa($1, 0)); }
|
/external/chromium/chrome/browser/extensions/ |
extension_omnibox_unittest.cc | 14 const int kMatch = ACMatchClassification::MATCH; 38 // Test output key: n = character with no styling, d = dim, m = match, u = url 47 AppendStyle("match", 1, 4, &styles_value); 65 AppendStyle("match", 1, 4, &styles_value); 81 AppendStyle("match", 9, 2, &styles_value); 82 AppendStyle("match", 0, 4, &styles_value); 98 // Try moving the "dim/match" style pair at offset 9. Output should be the 102 AppendStyle("match", 0, 4, &styles_value); 104 AppendStyle("match", 9, 2, &styles_value); 120 AppendStyle("match", 0, 5, &styles_value) [all...] |
extension_omnibox_api.cc | 209 (type == "match") ? ACMatchClassification::MATCH : 236 AutocompleteMatch* match) { 247 ACMatchClassifications& description_styles = match->contents_class; 264 match->contents.assign(description);
|
extension_omnibox_apitest.cc | 42 AutocompleteMatch match = result.match_at(i); local 43 std::string provider_name = match.provider->name(); 45 UTF16ToUTF8(match.contents).c_str(), 118 AutocompleteMatch match = result.match_at(0); local 119 EXPECT_EQ(AutocompleteMatch::SEARCH_WHAT_YOU_TYPED, match.type); 120 EXPECT_FALSE(match.deletable); 122 match = result.match_at(1); 123 ASSERT_TRUE(match.template_url); 124 EXPECT_TRUE(match.template_url->IsExtensionKeyword()); 125 EXPECT_EQ(ASCIIToUTF16("keyword"), match.template_url->keyword()) 188 AutocompleteMatch match = result.match_at(4); local [all...] |
/external/iproute2/examples/ |
cbq.init-v0.7.3 | 103 # - in case of overlapping TIME parameters, the last match is taken 128 # not checked, first match is taken. Midnight wrap (eg. 20:00-6:00) 414 # the times overlap, last match is taken. The fields <rate>, <weight> 838 u32_s="${SPORT:+match ip sport $SPORT $SMASK}" 839 u32_s="${SADDR:+match ip src $SADDR} $u32_s" 840 u32_d="${DPORT:+match ip dport $DPORT $DMASK}" 841 u32_d="${DADDR:+match ip dst $DADDR} $u32_d" 877 MATCH=0; CHANGE=0 902 ### If the time matches, remember params and set MATCH flag 910 MATCH= [all...] |
/external/tcpdump/missing/ |
getaddrinfo.c | 248 #define MATCH(x, y, w) \ 402 if (!MATCH(pai->ai_socktype, ex->e_socktype, WILD_SOCKTYPE(ex))) 404 if (!MATCH(pai->ai_protocol, ex->e_protocol, WILD_PROTOCOL(ex))) 458 if (!MATCH(pai->ai_socktype, ex->e_socktype, 462 if (!MATCH(pai->ai_protocol, ex->e_protocol, 538 * if the servname does not match socktype/protocol, ignore it. 710 * if the servname does not match socktype/protocol, ignore it. 763 * if the servname does not match socktype/protocol, ignore it. 851 * if the servname does not match socktype/protocol, ignore it.
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
StylesheetRoot.java | 435 * TODO: JKESS PROPOSES SPECIAL-CASE FOR NO IMPORT LIST, TO MATCH COUNT. 452 * TODO: JKESS PROPOSES SPECIAL-CASE FOR NO IMPORT LIST, TO MATCH DESCRIPTION. 566 * Get a list "xsl:attribute-set" properties that match the qname. 695 * @return NamespaceAlias that matches uri, or null if no match. 743 * Get an "xsl:template" property by node match. This looks in the imports as 748 * @param targetNode non-null reference of node that the template must match. 752 * @return reference to ElemTemplate that is the best match for targetNode, or 753 * null if no match could be made. 770 * Get an "xsl:template" property by node match. This looks in the imports as 775 * @param targetNode non-null reference of node that the template must match [all...] |
ElemNumber.java | 133 * Only nodes are counted that match this pattern. 178 * current node that match the from pattern are considered. 191 * current node that match the from pattern are considered. 208 * current node that match the from pattern are considered. 220 * one plus the number of preceding siblings of that ancestor that match the count 228 * those nodes that match the count pattern; it then maps each node in the list to 229 * one plus the number of preceding siblings of that node that match the count pattern. 235 * nodes that match the count pattern and belong to the set containing the current 240 * current node that match the from pattern are considered. 595 * Given a 'from' pattern (ala xsl:number), a match patter [all...] |
/external/webkit/Source/WebCore/rendering/style/ |
RenderStyleConstants.h | 203 BCNORMAL, MATCH 210 // The order of this enum must match the order of the list style types in CSSValueKeywords.in. 345 // The following must match the order in CSSValueKeywords.in. 381 // The following are handled as exceptions so don't need to match.
|