HomeSort by relevance Sort by last modified time
    Searched full:matching (Results 51 - 75 of 5917) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/llvm/cmake/modules/
LLVMConfigVersion.cmake.in 3 # LLVM is API-compatible only with matching major.minor versions
  /external/llvm/test/MC/X86/AlignedBundling/
unlock-without-lock-error.s 5 # CHECK: ERROR: .bundle_unlock without matching lock
  /external/valgrind/main/memcheck/tests/
long-supps.c 2 // truncated and so not matching. This 200 char limit is easily overcome with
  /external/wpa_supplicant_8/hostapd/
hostapd.vlan 6 # Optional wildcard entry matching all VLAN IDs. The first # in the interface
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/netfilter_ipv4/
ipt_ttl.h 1 /* IP tables module for matching the value of the TTL
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/linux/netfilter_ipv6/
ip6t_hl.h 1 /* ip6tables module for matching the Hop Limit value
ip6t_mh.h 4 /* MH matching stuff */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/netfilter_ipv4/
ipt_ttl.h 1 /* IP tables module for matching the value of the TTL
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/linux/netfilter_ipv6/
ip6t_hl.h 1 /* ip6tables module for matching the Hop Limit value
ip6t_mh.h 4 /* MH matching stuff */
  /external/pcre/dist/doc/
pcrepartial.3 4 .SH "PARTIAL MATCHING IN PCRE"
7 In normal use of PCRE, if the subject string that is passed to a matching
24 entered. Partial matching can also be useful when the subject string is very
27 PCRE supports partial matching by means of the PCRE_PARTIAL_SOFT and
28 PCRE_PARTIAL_HARD options, which can be set when calling any of the matching
32 the details differ between the two types of matching function. If both options
35 If you want to use partial matching with just-in-time optimized code, you must
44 for a match, the interpretive matching code is used.
46 Setting a partial matching option disables two of PCRE's standard
48 abandons matching immediately if it is not present in the subject string. Thi
    [all...]
  /external/clang/test/SemaCXX/
overload-call-copycon.cpp 11 copycon(xv); // expected-error{{no matching constructor}}
30 copycon2(bc); // expected-error{{no matching constructor}}
31 copycon2(bv); // expected-error{{no matching constructor}}
33 copycon2(ac); // expected-error{{no matching constructor}}
41 copycon3(bc); // expected-error{{no matching constructor}}
calling-conv-compat.cpp 39 cb_fptr_default(free_func_stdcall); // expected-error {{no matching function for call to 'cb_fptr_default'}}
40 cb_fptr_default(free_func_fastcall); // expected-error {{no matching function for call to 'cb_fptr_default'}}
43 cb_fptr_default(&free_func_stdcall); // expected-error {{no matching function for call to 'cb_fptr_default'}}
44 cb_fptr_default(&free_func_fastcall); // expected-error {{no matching function for call to 'cb_fptr_default'}}
48 cb_fptr_cdecl(free_func_stdcall); // expected-error {{no matching function for call to 'cb_fptr_cdecl'}}
49 cb_fptr_cdecl(free_func_fastcall); // expected-error {{no matching function for call to 'cb_fptr_cdecl'}}
52 cb_fptr_cdecl(&free_func_stdcall); // expected-error {{no matching function for call to 'cb_fptr_cdecl'}}
53 cb_fptr_cdecl(&free_func_fastcall); // expected-error {{no matching function for call to 'cb_fptr_cdecl'}}
55 cb_fptr_stdcall(free_func_default); // expected-error {{no matching function for call to 'cb_fptr_stdcall'}}
56 cb_fptr_stdcall(free_func_cdecl); // expected-error {{no matching function for call to 'cb_fptr_stdcall'}
    [all...]
  /external/lldb/test/functionalities/data-formatter/rdar-3534688/
TestFormattersOneIsSingular.py 62 self.expect('frame variable key', matching=False,
66 self.expect('frame variable value', matching=False,
70 self.expect('frame variable dict', matching=False,
74 self.expect('frame variable mutable_bag_ref', matching=False,
78 self.expect('frame variable nscounted_set', matching=False,
82 self.expect('frame variable imset', matching=False,
86 self.expect('frame variable binheap_ref', matching=False,
90 self.expect('frame variable nsset', matching=False,
94 self.expect('frame variable immutableData', matching=False,
  /external/pcre/dist/doc/html/
pcrepartial.html 16 <li><a name="TOC1" href="#SEC1">PARTIAL MATCHING IN PCRE</a>
17 <li><a name="TOC2" href="#SEC2">PARTIAL MATCHING USING pcre_exec() OR pcre[16|32]_exec()</a>
18 <li><a name="TOC3" href="#SEC3">PARTIAL MATCHING USING pcre_dfa_exec() OR pcre[16|32]_dfa_exec()</a>
19 <li><a name="TOC4" href="#SEC4">PARTIAL MATCHING AND WORD BOUNDARIES</a>
21 <li><a name="TOC6" href="#SEC6">EXAMPLE OF PARTIAL MATCHING USING PCRETEST</a>
22 <li><a name="TOC7" href="#SEC7">MULTI-SEGMENT MATCHING WITH pcre_dfa_exec() OR pcre[16|32]_dfa_exec()</a>
23 <li><a name="TOC8" href="#SEC8">MULTI-SEGMENT MATCHING WITH pcre_exec() OR pcre[16|32]_exec()</a>
24 <li><a name="TOC9" href="#SEC9">ISSUES WITH MULTI-SEGMENT MATCHING</a>
28 <br><a name="SEC1" href="#TOC1">PARTIAL MATCHING IN PCRE</a><br>
30 In normal use of PCRE, if the subject string that is passed to a matching
    [all...]
  /external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.type/
p17.cpp 8 f(a); // expected-error{{no matching function for call}}
29 h(array, a); // expected-error{{no matching function for call}}
  /external/clang/test/Misc/
verify.c 5 // standard string matching
9 // regex matching
  /external/clang/test/SemaObjCXX/
gc-attributes.mm 12 f0(&a2); // expected-error{{no matching function}}
21 f1(&a2); // expected-error{{no matching function}}
  /external/clang/utils/
find-unused-diagnostics.sh 8 ALL_DIAGS=$(grep -E --only-matching --no-filename '(err_|warn_|ext_|note_)[a-z_]+' ./include/clang/Basic/Diagnostic*.td)
12 DIAGS_IN_SOURCES=$(grep -E --only-matching --no-filename '(err_|warn_|ext_|note_)[a-z_]+' $ALL_SOURCES)
  /external/chromium_org/components/autofill/core/browser/
autofill_regexes.h 13 // Case-insensitive regular expression matching.
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/tests/bin/
reptnested-err.errwarn 2 -:3: error: rept without matching endr
  /external/clang/test/ASTMerge/Inputs/
property1.m 0 // Matching properties
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
p8.cpp 16 foo(Opaque1()); // expected-error {{no matching function for call}}
24 foo(Opaque1()); // expected-error {{no matching function for call}}
47 foo(Opaque1()); // expected-error {{no matching function for call}}
55 foo(Opaque1()); // expected-error {{no matching function for call}}
  /external/clang/test/CodeGen/
2010-08-12-asm-aggr-arg.c 3 // we don't get an error with "input constraint with a matching output
  /external/iptables/include/linux/netfilter/
xt_ecn.h 1 /* iptables module for matching the ECN header in IPv4 and TCP header

Completed in 316 milliseconds

1 23 4 5 6 7 8 91011>>