HomeSort by relevance Sort by last modified time
    Searched refs:match (Results 476 - 500 of 1779) sorted by null

<<11121314151617181920>>

  /external/iptables/extensions/
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/kernel-headers/original/linux/netfilter/
x_tables.h 22 struct xt_match *match; member in struct:xt_entry_match::__anon8551::__anon8553
162 int (*match)(const struct sk_buff *skb, member in struct:xt_match
165 const struct xt_match *match,
175 const struct xt_match *match,
181 void (*destroy)(const struct xt_match *match, void *matchinfo,
185 int (*compat)(void *match, void **dstptr, int *size, int convert);
296 extern int xt_check_match(const struct xt_match *match, unsigned short family,
342 compat_uptr_t match; member in struct:compat_xt_entry_match::__anon8557::__anon8559
391 extern int xt_compat_match(void *match, void **dstptr, int *size, int convert);
  /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 32 /// expressions and '.' never match newline. A ^ anchor matches the
50 /// matches it contains. The number filled in by match will include this
54 /// matches - Match the regex against a given \arg String.
56 /// \param Matches - If given, on a successful match this will be filled in
60 /// This returns true on a successful match.
61 bool match(StringRef String, SmallVectorImpl<StringRef> *Matches = 0);
63 /// sub - Return the result of replacing the first match of the regex in
65 /// replacement string are replaced with the appropriate match substring.
  /external/mesa3d/src/glsl/
ir_function.cpp 30 /* If the types are the same, they trivially match.
56 /* Samplers and structures must match exactly.
69 * would be required, the array types do not match.
100 * do not match.
109 /* Determine whether or not the types match. If the types are an
110 * exact match, the match score is zero. If the types don't match
112 * parameter, the match score is one.
154 * match
166 ir_function_signature *match = NULL; local
    [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
glob_filter.h 43 virtual bool match(std::string const & str) const;
string_filter.cpp 37 bool string_filter::match(string const & str) const function in class:string_filter
  /external/skia/src/animator/
SkGetCondensedInfo.cpp 38 unsigned char match = (unsigned char) type; local
43 if (gTypeIDs[mid] < match)
82 const char* match = *matchPtr; local
84 int index = _searchByName(&info->fName, count, strings, match);
  /external/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/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Object/
shell.js 70 var a = sType.match(re);
  /external/webkit/Source/WebCore/WebCore.gyp/scripts/
action_derivedsourcesallinone.py 88 if re.match('[|&]$', s):
103 match = conditionalPattern.search(idlContents)
104 if match:
105 conditional = match.group(1)
  /external/webkit/Source/WebCore/fileapi/
DOMFilePath.cpp 133 if (unallowedNamesRegExp1.match(path) >= 0)
135 if (unallowedNamesRegExp2.match(path) >= 0)
141 if (endingRegExp.match(path) >= 0)
148 if (unallowedCharsRegExp.match(path) >= 0)
  /external/webkit/Tools/Scripts/
clean-header-guards 34 next if filename.match(IgnoreFileNamesPattern)
38 match_results = contents.match(/#ifndef (\S+)\n#define \1/s)
  /packages/apps/Browser/src/com/android/browser/provider/
SnapshotProvider.java 157 final int match = URI_MATCHER.match(uri); local
160 switch (match) {
191 int match = URI_MATCHER.match(uri); local
193 switch (match) {
240 int match = URI_MATCHER.match(uri); local
242 switch (match) {
  /packages/apps/Exchange/exchange2/tests/src/com/android/exchange/provider/
MockProvider.java 125 int match = sURIMatcher.match(uri); local
126 if (match == UriMatcher.NO_MATCH) {
144 final int match = sURIMatcher.match(uri(uri)); local
146 switch(match) {
182 final int match = sURIMatcher.match(uri(uri)); local
185 switch(match) {
  /packages/apps/Exchange/tests/src/com/android/exchange/provider/
MockProvider.java 125 int match = sURIMatcher.match(uri); local
126 if (match == UriMatcher.NO_MATCH) {
144 final int match = sURIMatcher.match(uri(uri)); local
146 switch(match) {
182 final int match = sURIMatcher.match(uri(uri)); local
185 switch(match) {
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/data/
MockSource.java 39 switch (mMatcher.match(path)) {
  /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) {

Completed in 3226 milliseconds

<<11121314151617181920>>