Home
last modified time | relevance | path

Searched refs:compat (Results 1 – 25 of 221) sorted by relevance

123456789

/external/icu/icu4c/source/data/translit/
DLatin_ASCII.txt41 IJ → IJ ; # 0132;LATIN CAPITAL LIGATURE IJ (compat)
42 ij → ij ; # 0133;LATIN SMALL LIGATURE IJ (compat)
44 Ŀ → L ; # 013F;LATIN CAPITAL LETTER L WITH MIDDLE DOT (compat)
45 ŀ → l ; # 0140;LATIN SMALL LETTER L WITH MIDDLE DOT (compat)
55 ſ → s ; # 017F;LATIN SMALL LETTER LONG S (compat)
91 DŽ → DZ ; # 01C4;LATIN CAPITAL LETTER DZ WITH CARON (compat)
92 Dž → Dz ; # 01C5;LATIN CAPITAL LETTER D WITH SMALL LETTER Z WITH CARON (compat)
93 dž → dz ; # 01C6;LATIN SMALL LETTER DZ WITH CARON (compat)
94 LJ → LJ ; # 01C7;LATIN CAPITAL LETTER LJ (compat)
95 Lj → Lj ; # 01C8;LATIN CAPITAL LETTER L WITH SMALL LETTER J (compat)
[all …]
/external/openssh/
DAndroid.mk28 compat.c \
65 openbsd-compat/bcrypt_pbkdf.c \
66 openbsd-compat/bindresvport.c \
67 openbsd-compat/blowfish.c \
68 openbsd-compat/bsd-closefrom.c \
69 openbsd-compat/bsd-getpeereid.c \
70 openbsd-compat/bsd-misc.c \
71 openbsd-compat/bsd-openpty.c \
72 openbsd-compat/bsd-statvfs.c \
73 openbsd-compat/explicit_bzero.c \
[all …]
Dsshkey.h202 const u_char *data, size_t datalen, u_int compat);
205 const u_char *data, size_t datalen, u_int compat);
207 const u_char *data, size_t datalen, u_int compat);
210 const u_char *data, size_t datalen, u_int compat);
212 const u_char *data, size_t datalen, u_int compat);
215 const u_char *data, size_t datalen, u_int compat);
/external/e2fsprogs/lib/e2p/
Dfeature.c24 int compat; member
128 const char *e2p_feature2string(int compat, unsigned int mask) in e2p_feature2string() argument
136 if ((compat == f->compat) && in e2p_feature2string()
140 switch (compat) { in e2p_feature2string()
167 *compat_type = f->compat; in e2p_string2feature()
202 const char *e2p_jrnl_feature2string(int compat, unsigned int mask) in e2p_jrnl_feature2string() argument
210 if ((compat == f->compat) && in e2p_jrnl_feature2string()
214 switch (compat) { in e2p_jrnl_feature2string()
241 *compat_type = f->compat; in e2p_jrnl_string2feature()
384 int compat, compat2, i; in main() local
[all …]
/external/clang/test/CodeGenCXX/
Dcxx1z-inline-variables.cpp29 struct compat { struct
35 const int &compat_use_before_redecl = compat::b; argument
36 const int compat::a;
37 const int compat::b;
38 const int compat::c;
39 const int compat::d;
40 const int &compat_use_after_redecl1 = compat::c;
41 const int &compat_use_after_redecl2 = compat::d;
/external/libusb-compat/
DNEWS4 2009-07-09: libusb-compat-0.1.3 release
8 2009-06-11: libusb-compat-0.1.2 release
11 2009-05-28: libusb-compat-0.1.1 release
14 2008-12-13: libusb-compat-0.1.0 release
17 2008-11-21: libusb-compat-0.1.0-beta3 release
20 2008-06-28: libusb-compat-0.1.0-beta2 release
24 2008-05-25: libusb-compat-0.1.0-beta1 release
DREADME1 libusb-compat-0.1
5 with libusb-1.0. libusb-compat-0.1 attempts to look, feel, smell and walk
8 Do not attempt to install libusb-0.1 and libusb-compat-0.1 on the same system.
15 libusb-compat-0.1 does not allow you to open such devices. You can still
24 drivers for libusb-1.0 development. With libusb-1.0 or libusb-compat-0.1
/external/mesa3d/src/gallium/drivers/swr/rasterizer/scripts/mako/
Dfilters.py11 from mako.compat import quote_plus, unquote_plus, codepoint2name, \
14 from mako import compat
68 if isinstance(x, compat.text_type):
70 elif not isinstance(x, compat.binary_type):
73 return compat.text_type(x, encoding=key)
87 self.codepoint2entity = dict([(c, compat.text_type('&%s;' % n))
96 return compat.text_type(text).translate(self.codepoint2entity)
117 return self.__escapable.sub(self.__escape, compat.text_type(text)
173 return (compat.text_type(text), ex.end)
193 if compat.py3k:
Dpyparser.py13 from mako import exceptions, util, compat
14 from mako.compat import arg_stringname
17 if compat.py3k:
45 compat.exception_as().__class__.__name__,
46 compat.exception_as(),
82 if compat.py3k:
208 if compat.py2k:
218 if compat.py2k:
Dtemplate.py11 from mako import runtime, util, exceptions, codegen, cache, compat
277 if compat.py3k and disable_unicode:
286 if compat.py3k or self.disable_unicode:
379 module = compat.load_module(self.module_id, path)
389 module = compat.load_module(self.module_id, path)
529 if compat.py3k and disable_unicode:
604 source_map = compat.json.loads(source_map)
629 not isinstance(self.template_source, compat.text_type):
669 if not compat.py3k and isinstance(cid, compat.text_type):
682 if isinstance(source, compat.text_type):
[all …]
Dexceptions.py11 from mako import util, compat
87 return compat.exception_name(self.error)
92 self.message = compat.text_type(self.error)
100 if not isinstance(self.message, compat.text_type):
101 self.message = compat.text_type(self.message, 'ascii', 'replace')
153 if not compat.py3k:
Druntime.py10 from mako import exceptions, util, compat
11 from mako.compat import compat_builtins
36 self._data['capture'] = compat.partial(capture, self)
594 return compat.partial(callable_, self.context)
603 val = compat.partial(callable_, self.context)
645 if compat.callable(callable_):
646 yield key, compat.partial(callable_, self.context)
654 val = compat.partial(callable_, self.context)
688 if not compat.callable(callable_):
771 raise exceptions.TemplateLookupException(str(compat.exception_as()))
[all …]
/external/libusb-compat/libusb-compat.xcodeproj/
Dproject.pbxproj39 …D /* libusb-compat.dylib */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.dylib";…
57 08FB7794FE84155DC02AAC07 /* libusb-compat */ = {
66 name = "libusb-compat";
83 D2AAC0630554660B00DB518D /* libusb-compat.dylib */,
112 D2AAC0620554660B00DB518D /* libusb-compat */ = {
114 …List = 1DEB914A08733D8E0010E9CD /* Build configuration list for PBXNativeTarget "libusb-compat" */;
125 name = "libusb-compat";
126 productName = "libusb-compat";
127 productReference = D2AAC0630554660B00DB518D /* libusb-compat.dylib */;
135 …ationList = 1DEB914E08733D8E0010E9CD /* Build configuration list for PBXProject "libusb-compat" */;
[all …]
/external/iptables/iptables/
DMakefile.am33 xtables_compat_multi_SOURCES = xtables-compat-multi.c iptables-xml.c
57 sbin_PROGRAMS += xtables-compat-multi
73 x_sbin_links = iptables-compat iptables-compat-restore iptables-compat-save \
74 ip6tables-compat ip6tables-compat-restore ip6tables-compat-save \
77 arptables-compat ebtables-compat
94 for i in ${x_sbin_links}; do ${LN_S} -f xtables-compat-multi "${DESTDIR}${sbindir}/$$i"; done;
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/normalizer/
DTestDeprecatedNormalizerAPI.java81 private void doTestComposedChars(boolean compat) { in doTestComposedChars() argument
83 ComposedCharIter iter = new ComposedCharIter(compat, options); in doTestComposedChars()
92 assertNoDecomp(lastChar, ch, compat, options); in doTestComposedChars()
99 String normDecomp = Normalizer.decompose(chString, compat); in doTestComposedChars()
109 assertNoDecomp(lastChar, '\uFFFF', compat, options); in doTestComposedChars()
112 void assertNoDecomp(char start, char limit, boolean compat, int options) in assertNoDecomp() argument
116 String decomp = Normalizer.decompose(xString, compat); in assertNoDecomp()
128 boolean compat = false; in TestRoundTrip()
136 String comp = Normalizer.compose(decomp, compat); in TestRoundTrip()
DNormalizerBuilder.java173 boolean compat = segment.charAt(0) == '<'; in buildDecompositionTables()
174 if (compat) isCompatibility.set(value); in buildDecompositionTables()
191 if (decompLen < 1 || decompLen > 2 && !compat) { in buildDecompositionTables()
199 if (!compat && !isExcluded.get(value)) { in buildDecompositionTables()
419 boolean compat = decomposeData[i+2].equals("K"); in setMinimalDecomp()
420 if (compat) isCompatibility.set(value); in setMinimalDecomp()
422 if (!compat) { in setMinimalDecomp()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/normalizer/
DTestDeprecatedNormalizerAPI.java82 private void doTestComposedChars(boolean compat) { in doTestComposedChars() argument
84 ComposedCharIter iter = new ComposedCharIter(compat, options); in doTestComposedChars()
93 assertNoDecomp(lastChar, ch, compat, options); in doTestComposedChars()
100 String normDecomp = Normalizer.decompose(chString, compat); in doTestComposedChars()
110 assertNoDecomp(lastChar, '\uFFFF', compat, options); in doTestComposedChars()
113 void assertNoDecomp(char start, char limit, boolean compat, int options) in assertNoDecomp() argument
117 String decomp = Normalizer.decompose(xString, compat); in assertNoDecomp()
129 boolean compat = false; in TestRoundTrip()
137 String comp = Normalizer.compose(decomp, compat); in TestRoundTrip()
/external/llvm/test/tools/llvm-profdata/
Dcompat.proftext5 # The input file at %S/Inputs/compat.profdata.v1 was generated with
8 # RUN: llvm-profdata show %S/Inputs/compat.profdata.v1 --function function_count_only --counts | Fi…
18 # RUN: llvm-profdata show %S/Inputs/compat.profdata.v1 --function "name with spaces" --counts | Fil…
29 # RUN: llvm-profdata show %S/Inputs/compat.profdata.v1 --function large_numbers --counts | FileChec…
44 # RUN: llvm-profdata show %S/Inputs/compat.profdata.v1 | FileCheck %s -check-prefix=SUMMARY
49 # RUN: llvm-profdata show %S/Inputs/compat.profdata.v2 -all-functions --counts | FileCheck %s -chec…
67 # RUN: llvm-profdata show %S/Inputs/compat.profdata.v4 -all-functions --counts | FileCheck %s -chec…
/external/dtc/tests/
Dnode_offset_by_compatible.c31 static void check_search(void *fdt, const char *compat, ...) in check_search() argument
36 va_start(ap, compat); in check_search()
41 offset = fdt_node_offset_by_compatible(fdt, offset, compat); in check_search()
46 "instead of %d", compat, offset, target); in check_search()
Dnode_check_compatible.c32 const char *compat) in check_compatible() argument
40 err = fdt_node_check_compatible(fdt, offset, compat); in check_compatible()
45 FAIL("%s is not compatible with \"%s\"", path, compat); in check_compatible()
/external/mesa3d/src/gallium/state_trackers/clover/llvm/
Dinvocation.cpp128 compat::set_lang_defaults(c->getInvocation(), c->getLangOpts(), in create_compiler_instance()
189 compat::add_link_bitcode_file(c.getCodeGenOpts(), in compile()
226 compat::pass_manager pm;
228 compat::add_data_layout_pass(pm);
243 compat::add_internalize_pass(pm, map(std::mem_fn(&Function::getName),
248 pmb.LibraryInfo = new compat::target_library_info(
258 auto linker = compat::create_linker(*mod);
261 if (compat::link_in_module(*linker,
/external/icu/android_icu4j/src/main/java/android/icu/text/
DNormalizer.java670 private static final Normalizer2 getComposeNormalizer2(boolean compat, int options) { in getComposeNormalizer2() argument
671 return (compat ? NFKC : NFC).getNormalizer2(options); in getComposeNormalizer2()
673 private static final Normalizer2 getDecomposeNormalizer2(boolean compat, int options) { in getDecomposeNormalizer2() argument
674 return (compat ? NFKD : NFD).getNormalizer2(options); in getDecomposeNormalizer2()
689 public static String compose(String str, boolean compat) { in compose() argument
690 return compose(str,compat,0); in compose()
706 public static String compose(String str, boolean compat, int options) { in compose() argument
707 return getComposeNormalizer2(compat, options).normalize(str); in compose()
727 public static int compose(char[] source,char[] target, boolean compat, int options) { in compose() argument
728 return compose(source, 0, source.length, target, 0, target.length, compat, options); in compose()
[all …]
/external/openssh/openbsd-compat/regress/
DMakefile.in14 LIBCOMPAT=../libopenbsd-compat.a
27 @echo running compat regress tests
32 @echo finished compat regress tests
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DNormalizer.java657 private static final Normalizer2 getComposeNormalizer2(boolean compat, int options) { in getComposeNormalizer2() argument
658 return (compat ? NFKC : NFC).getNormalizer2(options); in getComposeNormalizer2()
660 private static final Normalizer2 getDecomposeNormalizer2(boolean compat, int options) { in getDecomposeNormalizer2() argument
661 return (compat ? NFKD : NFD).getNormalizer2(options); in getDecomposeNormalizer2()
675 public static String compose(String str, boolean compat) { in compose() argument
676 return compose(str,compat,0); in compose()
691 public static String compose(String str, boolean compat, int options) { in compose() argument
692 return getComposeNormalizer2(compat, options).normalize(str); in compose()
711 public static int compose(char[] source,char[] target, boolean compat, int options) { in compose() argument
712 return compose(source, 0, source.length, target, 0, target.length, compat, options); in compose()
[all …]
/external/apache-http/src/org/apache/http/impl/cookie/
DBestMatchSpec.java62 private BrowserCompatSpec compat; field in BestMatchSpec
83 if (this.compat == null) { in getCompat()
84 this.compat = new BrowserCompatSpec(this.datepatterns); in getCompat()
86 return compat; in getCompat()

123456789