HomeSort by relevance Sort by last modified time
    Searched full:aliases (Results 1 - 25 of 1032) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Sema/
attr-alias.c 6 // testsuite looks for it to decide if a target supports aliases.
8 void f() __attribute__((alias("g"))); //expected-error {{only weak aliases are supported}}
  /external/bluetooth/glib/gio/xdgmime/
xdgmimealias.c 2 /* xdgmimealias.c: Private file. Datastructure for storing the aliases.
58 struct XdgAlias *aliases; member in struct:XdgAliasList
69 list->aliases = NULL;
80 if (list->aliases)
84 free (list->aliases[i].alias);
85 free (list->aliases[i].mime_type);
87 free (list->aliases);
110 entry = bsearch (&key, list->aliases, list->n_aliases,
135 list->aliases = realloc (list->aliases, alloc * sizeof (XdgAlias))
    [all...]
  /libcore/luni/src/main/java/java/nio/charset/
CharsetICU.java 17 protected CharsetICU(String canonicalName, String icuCanonName, String[] aliases) {
18 super(canonicalName, aliases);
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
KeyStore_Impl3Test.java 116 String[] aliases = { "Alias1", "Alias2", "Alias3", "Alias4", "Alias5" }; local
125 kss[i].setEntry(aliases[0], tCert, null);
126 kss[i].setEntry(aliases[1], pKey, pPath);
127 kss[i].setEntry(aliases[2], pKey, pPath);
134 kss[i].setKeyEntry(aliases[3], pk, pwd, certs);
135 kss[i].setCertificateEntry(aliases[4], certs[0]);
154 en = kss[i].getEntry(aliases[j], (j == 0 ? null : pPath));
155 en1 = kss1[i].getEntry(aliases[j], (j == 0 ? null : pPath));
187 .getCreationDate(aliases[j]), kss1[i]
188 .getCreationDate(aliases[j]))
    [all...]
KeyStore_Impl1Test.java 55 private static final String[] aliases = { "", "alias", "Alias", "ALIAS", field in class:KeyStore_Impl1Test
242 * <code>Enumeration aliases()</code>
278 kss[i].aliases(); method
394 for (int j = 0; j < aliases.length; j++) {
395 kss[i].setEntry(aliases[j], entry, null);
420 for (int j = 0; j < aliases.length; j++) {
422 .concat(aliases[j])));
423 assertTrue("Incorrect alias", kss[i].containsAlias(aliases[j]));
425 .isCertificateEntry(aliases[j]));
426 assertFalse("Incorrect KeyEntry", kss[i].isKeyEntry(aliases[j]))
849 String[] aliases = { "Alias1", "Alias2", "Alias3", "Alias4", "Alias5" }; local
    [all...]
  /external/kernel-headers/original/asm-arm/
shmparam.h 6 * or page size, whichever is greater since the cache aliases
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/
TestKeyStoreSpi.java 29 Map<String, Object> aliases = new HashMap<String, Object>(); field in class:TestKeyStoreSpi
56 aliases.put("certalias", CERT);
57 aliases.put("chainalias", CERTCHAIN);
58 aliases.put("keyalias", KEY);
59 aliases.put("unknownalias", DUMMY);
64 return Collections.enumeration(aliases.keySet());
69 return aliases.containsKey(alias);
79 return (Certificate) aliases.get(alias);
88 for (Map.Entry<String, Object> alias : aliases.entrySet()) {
99 return (Certificate[]) aliases.get(alias)
    [all...]
  /external/apache-harmony/nio_char/src/test/java/tests/api/java/nio/charset/
AbstractCharsetTestCase.java 34 // the aliases set
35 protected final String[] aliases; field in class:AbstractCharsetTestCase
68 String[] aliases, boolean canEncode, boolean isRegistered) {
73 this.aliases = aliases;
101 * Test aliases.
104 for (int i = 0; i < this.aliases.length; i++) {
105 Charset c = Charset.forName(this.aliases[i]);
108 // assertTrue(this.testingCharset.aliases().contains(this.aliases[i]))
    [all...]
  /external/icu4c/tools/gencnval/
gencnval.1.in 13 \- compile the converters aliases file
36 converts the ICU aliases file
56 conflicting aliases and the converters the aliases resolve to.
84 Description of ICU's converters and their aliases. This data file is not
gencnval.c 60 /* The maximum number of aliases that a standard tag/converter combination can have.
102 uint16_t *aliases; /* Index into stringStore */ member in struct:__anon7150
107 uint16_t totalAliasCount; /* Total aliases in this column */
118 uint16_t totalAliasCount; /* Total aliases in this row */
126 /* Used for storing all aliases */
131 /* Used for storing the lists section that point to aliases */
135 /* Were the standard tags declared before the aliases. */
298 /* write the table of aliases based on a tag/converter name combination */
321 /* Add the empty tag, which is for untagged aliases */
326 /* read the list of aliases */
    [all...]
  /external/icu4c/data/unidata/
NameAliases.txt 10 # This file defines the formal name aliases for Unicode characters.
12 # For informative aliases see NamesList.txt
22 # In case multiple aliases are assigned, additional aliases
  /libcore/luni/src/main/java/javax/net/ssl/
X509KeyManager.java 77 * Returns the client aliases for the specified public key type and list of
85 * @return the client aliases for the specified public key type, or
86 * {@code null} if there are no matching aliases.
91 * Returns the server aliases for the specified public key type and list of
99 * @return the client aliases for the specified public key type, or
100 * {@code null} if there are no matching aliases.
  /external/icu4c/tools/tzcode/
tz.alias 5 # Use the file 'icuzones' to specify backward compatibility aliases.
19 # This list is read by tz2icu to incorporate legacy ICU zone aliases
24 #### Aliases that conflict with Olson compatibility Zone definition
  /external/webkit/Source/WebCore/platform/text/mac/
make-charset-table.pl 70 my %aliases;
81 # Build the aliases list.
113 $aliases{$canonicalName} = 1;
116 $aliases{$alias} = 1;
130 for my $alias (sort keys %aliases) {
148 my ($canonical_name, @aliases) = @_;
152 my @names = sort $canonical_name, @aliases;
168 my @aliases;
181 process_iana_charset $canonical_name, @aliases;
184 @aliases = ()
    [all...]
  /bionic/libc/tools/
genserv.py 22 self.aliases = []
25 self.aliases.append(alias)
35 result += "\\%0o" % len(self.aliases)
36 for alias in self.aliases:
  /external/llvm/test/CodeGen/X86/
2011-06-14-PreschedRegalias.ll 3 ; Test interference between physreg aliases during preRAsched.
  /external/llvm/test/Linker/
visibility2.ll 10 ; Aliases
  /external/valgrind/main/memcheck/tests/
memcmptest.c 5 // An issue here is that in glibc memcmp() and bcmp() are aliases. Valgrind
strchr.c 5 // aliases, as are 'strrchr' and 'rindex'. In each case, the shorter name
  /bionic/libc/netbsd/net/
getservent_r.c 69 if (sd->aliases) {
70 free(sd->aliases);
71 sd->aliases = NULL;
112 if (sd->aliases == NULL) {
114 sd->aliases = malloc(sd->maxaliases * sizeof(char *));
115 if (sd->aliases == NULL) {
122 q = sp->s_aliases = sd->aliases;
141 sp->s_aliases = sd->aliases = q;
  /external/clang/test/CodeGenCXX/
virtual-destructor-calls.cpp 1 // RUN: %clang_cc1 -emit-llvm %s -o - -triple=x86_64-apple-darwin10 -mconstructor-aliases | FileCheck %s
19 // (aliases from C)
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
KeyManagerImpl.java 63 final Enumeration<String> aliases; local
65 aliases = keyStore.aliases();
69 for (; aliases.hasMoreElements();) {
70 final String alias = aliases.nextElement();
151 for (Enumeration<String> aliases = hash.keys(); aliases.hasMoreElements();) {
152 final String alias = aliases.nextElement();
  /external/e2fsprogs/intl/
localcharset.c 208 sources of many GNU packages, simply inline the aliases here. */
234 runtime, simply inline the aliases here. */
273 const char *aliases; local
380 for (aliases = get_charset_aliases ();
381 *aliases != '\0';
382 aliases += strlen (aliases) + 1, aliases += strlen (aliases) + 1)
383 if (strcmp (codeset, aliases) ==
    [all...]
  /external/llvm/lib/CodeGen/
InterferenceCache.cpp 69 for (unsigned i = 0, e = Aliases.size(); i != e; ++i)
70 Aliases[i].second = Aliases[i].first->getTag();
82 Aliases.clear();
85 Aliases.push_back(std::make_pair(LIU, LIU->getTag()));
90 unsigned e = Aliases.size();
93 Iters[i].setMap(Aliases[i].first->getMap());
98 unsigned i = 0, e = Aliases.size();
101 if (i == e || Aliases[i].first != LIU)
103 if (LIU->changedSince(Aliases[i].second)
    [all...]
  /external/clang/lib/Basic/
TargetInfo.cpp 249 // Now check aliases.
250 const GCCRegAlias *Aliases;
253 getGCCRegAliases(Aliases, NumAliases);
255 for (unsigned j = 0 ; j < llvm::array_lengthof(Aliases[i].Aliases); j++) {
256 if (!Aliases[i].Aliases[j])
258 if (Aliases[i].Aliases[j] == Name)
302 // Now check aliases
    [all...]

Completed in 1593 milliseconds

1 2 3 4 5 6 7 8 91011>>