/external/chromium_org/tools/cr/cr/actions/ |
adb.py | 25 """Gets the set of running PIDs that match the specified target.""" 30 match = re.match(pattern, line) 31 if match: 32 pids.append(match.group(1))
|
/external/chromium_org/tools/gyp/pylib/gyp/ |
easy_xml.py | 151 def replace(match): 152 m = match.string[match.start() : match.end()]
|
/external/chromium_org/tools/gyp/test/mac/ |
gyptest-objc-gc.py | 16 # set |match| to ignore build stderr output. 18 match = lambda a, b: True) variable
|
/external/chromium_org/ui/gfx/ |
font_render_params_linux.cc | 94 FcPattern* match = FcFontMatch(0, pattern, &result); 95 DCHECK(match); 97 FcPatternGetInteger(match, FC_RGBA, 0, &fc_rgba); 99 FcPatternDestroy(match);
|
/external/chromium_org/v8/test/mjsunit/ |
regexp-standalones.js | 36 var result = string.match(pattern); 42 result = string.match(pattern); 49 result = string.match(pattern); 54 result = string.match(pattern); 61 result = string.match(pattern); 66 result = string.match(pattern); 71 result = string.match(pattern); 76 result = string.match(pattern);
|
/external/dropbear/ |
listener.h | 59 int (*match)(void*, void*));
|
/external/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/iptables/extensions/ |
libip6t_ah.c | 14 "ah match options:\n" 15 "[!] --ahspi spi[:spi] match spi (range)\n" 76 static void ah_print(const void *ip, const struct xt_entry_match *match, 79 const struct ip6t_ah *ah = (struct ip6t_ah *)match->data; 95 static void ah_save(const void *ip, const struct xt_entry_match *match) 97 const struct ip6t_ah *ahinfo = (struct ip6t_ah *)match->data;
|
libip6t_hl.c | 4 * Based on HW's ttl match 25 "hl match options:\n" 26 "[!] --hl-eq value Match hop limit value\n" 27 " --hl-lt value Match HL < value\n" 28 " --hl-gt value Match HL > value\n"); 53 "HL match: You must specify one of " 57 static void hl_print(const void *ip, const struct xt_entry_match *match, 67 (struct ip6t_hl_info *) match->data; 69 printf(" HL match HL %s %u", op[info->mode], info->hop_limit); 72 static void hl_save(const void *ip, const struct xt_entry_match *match) [all...] |
libipt_ecn.c | 23 "ECN match options\n" 24 "[!] --ecn-tcp-cwr Match CWR bit of TCP header\n" 25 "[!] --ecn-tcp-ece Match ECE bit of TCP header\n" 26 "[!] --ecn-ip-ect [0..3] Match ECN codepoint in IPv4 header\n"); 68 "ECN match: some option required"); 71 static void ecn_print(const void *ip, const struct xt_entry_match *match, 75 (const struct ipt_ecn_info *)match->data; 77 printf(" ECN match"); 96 static void ecn_save(const void *ip, const struct xt_entry_match *match) 99 (const struct ipt_ecn_info *)match->data [all...] |
libipt_realm.c | 20 "realm match options:\n" 22 " Match realm\n"); 87 static void realm_print(const void *ip, const struct xt_entry_match *match, 90 const struct ipt_realm_info *ri = (const void *)match->data; 99 static void realm_save(const void *ip, const struct xt_entry_match *match) 101 const struct ipt_realm_info *ri = (const void *)match->data;
|
libipt_ttl.c | 22 "ttl match options:\n" 23 " --ttl-eq value Match time to live value\n" 24 " --ttl-lt value Match TTL < value\n" 25 " --ttl-gt value Match TTL > value\n"); 50 "TTL match: You must specify one of " 54 static void ttl_print(const void *ip, const struct xt_entry_match *match, 58 (struct ipt_ttl_info *) match->data; 60 printf(" TTL match "); 78 static void ttl_save(const void *ip, const struct xt_entry_match *match) 81 (struct ipt_ttl_info *) match->data [all...] |
libxt_cluster.c | 16 "cluster match options:\n" 79 "cluster match: " 89 "cluster match: " 96 "cluster match: `--cluster-local-node' or" 101 cluster_print(const void *ip, const struct xt_entry_match *match, int numeric) 103 const struct xt_cluster_match_info *info = (void *)match->data; 116 cluster_save(const void *ip, const struct xt_entry_match *match) 118 const struct xt_cluster_match_info *info = (void *)match->data;
|
libxt_pkttype.c | 2 * Shared library add-on to iptables to match 52 "pkttype match options:\n" 53 "[!] --pkt-type packettype match packet type\n"); 101 static void pkttype_print(const void *ip, const struct xt_entry_match *match, 104 const struct xt_pkttype_info *info = (const void *)match->data; 110 static void pkttype_save(const void *ip, const struct xt_entry_match *match) 112 const struct xt_pkttype_info *info = (const void *)match->data;
|
libxt_quota2.c | 2 * "quota2" match extension for iptables 51 "quota match options:\n" 85 quota_mt2_save(const void *ip, const struct xt_entry_match *match) 87 const struct xt_quota_mtinfo2 *q = (void *)match->data; 102 static void quota_mt2_print(const void *ip, const struct xt_entry_match *match, 105 const struct xt_quota_mtinfo2 *q = (const void *)match->data;
|
libxt_state.c | 19 "state match options:\n" 21 " State(s) to match\n"); 104 const struct xt_entry_match *match, 107 const struct xt_state_info *sinfo = (const void *)match->data; 113 static void state_save(const void *ip, const struct xt_entry_match *match) 115 const struct xt_state_info *sinfo = (const void *)match->data;
|
/external/libxslt/libxslt/ |
keys.h | 32 const xmlChar *match,
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter2/ |
toplevel.ml | 7 match Stream.peek stream with 17 try match token with
|
/external/llvm/examples/OCaml-Kaleidoscope/Chapter3/ |
toplevel.ml | 9 match Stream.peek stream with 19 try match token with
|
/external/llvm/include/llvm/Support/ |
Regex.h | 35 /// expressions and '.' never match newline. A ^ anchor matches the 55 /// matches it contains. The number filled in by match will include this 59 /// matches - Match the regex against a given \p String. 61 /// \param Matches - If given, on a successful match this will be filled in 65 /// This returns true on a successful match. 66 bool match(StringRef String, SmallVectorImpl<StringRef> *Matches = 0); 68 /// sub - Return the result of replacing the first match of the regex in 70 /// replacement string are replaced with the appropriate match substring.
|
/external/mesa3d/src/glsl/ |
ir_function.cpp | 30 PARAMETER_LIST_INEXACT_MATCH /*< Match requires implicit conversion. */ 34 * \brief Check if two parameter lists match. 46 /* This is set to true if there is an inexact match requiring an implicit 55 * do not match. 106 * match. 129 ir_function_signature *match = NULL; local 134 * "If an exact match is found, the other signatures are ignored, and 135 * the exact match is used. Otherwise, if no exact match is found, then 137 * be applied to the calling arguments if this can make their types match [all...] |
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
ToParser.java | 60 this.lexer.match('\n');
|
/external/oprofile/libpp/ |
filename_spec.h | 24 * These derived values are then used to match against a 54 * @param rhs right hand side of the match operator 59 * return true if *this match rhs, matching if: 62 * - event_spec match 66 bool match(filename_spec const & rhs,
|
/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/oprofile/libutil++/ |
glob_filter.cpp | 27 bool glob_filter::match(string const & str) const function in class:glob_filter
|