/external/ImageMagick/MagickCore/ |
magic.c | 478 % GetMagicInfoList() returns any image aliases that match the specified 490 % o number_aliases: This integer returns the number of aliases in the list. 521 **aliases; 539 aliases=(const MagicInfo **) AcquireQuantumMemory((size_t) 540 GetNumberOfElementsInLinkedList(magic_cache)+1UL,sizeof(*aliases)); 541 if (aliases == (const MagicInfo **) NULL) 553 aliases[i++]=p; 557 qsort((void *) aliases,(size_t) i,sizeof(*aliases),MagicInfoCompare); 558 aliases[i]=(MagicInfo *) NULL 513 **aliases; local 608 **aliases; local [all...] |
mime.c | 411 % GetMimeInfoList() returns any image aliases that match the specified 455 **aliases; 473 aliases=(const MimeInfo **) AcquireQuantumMemory((size_t) 474 GetNumberOfElementsInLinkedList(mime_cache)+1UL,sizeof(*aliases)); 475 if (aliases == (const MimeInfo **) NULL) 487 aliases[i++]=p; 491 qsort((void *) aliases,(size_t) i,sizeof(*aliases),MimeInfoCompare); 492 aliases[i]=(MimeInfo *) NULL; 494 return(aliases); 447 **aliases; local 542 **aliases; local [all...] |
/libcore/ojluni/src/main/java/java/nio/charset/ |
Charset.java | 114 * <i>aliases</i>. The canonical name is returned by the {@link #name() name} method 116 * The aliases of a charset are returned by the {@link #aliases() aliases} 121 * historical name is either its canonical name or one of its aliases. The 133 * name and the other names in the registry must be valid aliases. If a 138 * name and the aliases of a particular charset may also change over time. To 343 for (String alias : cs.aliases()) { 487 // canonical form, we store the mapping from both the canonical name and the aliases to the 672 private final String[] aliases; // tickles a bug in oldjava [all...] |
/packages/apps/KeyChain/robotests/src/com/android/keychain/internal/ |
GrantsDatabaseTest.java | 255 String[] aliases = {"alias-1", "alias-2", "alias-3"}; local 256 for (String alias : aliases) { 260 // Test that the aliases were made user-selectable during the upgrade. 262 for (String alias : aliases) { 277 String[] aliases = {"alias-1", "alias-2", "alias-3"}; local 278 for (String alias : aliases) { 286 // Test that the aliases were made user-selectable during the upgrade. 288 for (String alias : aliases) { 305 String[] aliases = {"alias-1", "alias-2", "alias-3"}; local 306 for (String alias : aliases) { [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/encodings/ |
__init__.py | 20 * getaliases() -> sequence of encoding name strings to use as aliases
32 from encodings import aliases
44 _aliases = aliases.aliases
142 # Register its aliases (without overwriting previously registered
143 # aliases)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/encodings/ |
__init__.py | 20 * getaliases() -> sequence of encoding name strings to use as aliases
32 from encodings import aliases
44 _aliases = aliases.aliases
142 # Register its aliases (without overwriting previously registered
143 # aliases)
|
/external/llvm/test/MC/ARM/ |
vfp-aliases.s | 6 .type aliases,%function 7 aliases: label 32 @ CHECK-LABEL: aliases
|
/external/python/cpython2/Lib/encodings/ |
__init__.py | 20 * getaliases() -> sequence of encoding name strings to use as aliases 32 from encodings import aliases 44 _aliases = aliases.aliases 142 # Register its aliases (without overwriting previously registered 143 # aliases)
|
/libcore/luni/src/test/java/libcore/java/util/ |
OldAndroidLocaleTest.java | 166 Set<String> aliases = cs.aliases(); local 167 System.out.println(cs.name() + ": " + aliases);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/encodings/ |
__init__.py | 20 * getaliases() -> sequence of encoding name strings to use as aliases 32 from encodings import aliases 44 _aliases = aliases.aliases 142 # Register its aliases (without overwriting previously registered 143 # aliases)
|
/prebuilts/gdb/linux-x86/lib/python2.7/encodings/ |
__init__.py | 20 * getaliases() -> sequence of encoding name strings to use as aliases 32 from encodings import aliases 44 _aliases = aliases.aliases 142 # Register its aliases (without overwriting previously registered 143 # aliases)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/ |
__init__.py | 20 * getaliases() -> sequence of encoding name strings to use as aliases 32 from encodings import aliases 44 _aliases = aliases.aliases 142 # Register its aliases (without overwriting previously registered 143 # aliases)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/encodings/ |
__init__.py | 20 * getaliases() -> sequence of encoding name strings to use as aliases 32 from encodings import aliases 44 _aliases = aliases.aliases 142 # Register its aliases (without overwriting previously registered 143 # aliases)
|
/external/autotest/client/common_lib/ |
android_utils.py | 42 (eg. marlin, sailfish). However a product may have several aliases 45 aliases. 56 # android product name `zzz` has following aliases. 61 # A dict of product:aliases for product aliases, can be defined in global 80 """Get all aliases for a android product name. 82 Androids can have multiple aliases for a single product. These aliases 88 @returns: All aliases for that product (including the product name). 90 aliases = set(cls.aliases_map.get(product, []) [all...] |
/external/libevent/test/ |
tinytest.h | 94 void tinytest_set_aliases(const struct testlist_alias_t *aliases);
|
/external/chromium-trace/catapult/common/py_vulcanize/py_vulcanize/ |
style_sheet.py | 14 self.aliases = [] 49 for a in i.aliases: 86 image.aliases.append(url)
|
/external/conscrypt/openjdk-integ-tests/src/test/java/org/conscrypt/javax/net/ssl/ |
KeyManagerFactoryTest.java | 176 String[] aliases = km.getClientAliases(keyType, null); local 178 assertNull(keyType, aliases); 181 assertNotNull(keyType, aliases); 182 for (String alias : aliases) { 187 String[] aliases = km.getServerAliases(keyType, null); local 189 assertNull(keyType, aliases); 192 assertNotNull(keyType, aliases); 193 for (String alias : aliases) {
|
/external/conscrypt/platform/src/main/java/org/conscrypt/ |
TrustedCertificateKeyStoreSpi.java | 90 return Collections.enumeration(store.aliases()); 100 return store.aliases().size();
|
/external/python/cpython3/Modules/ |
nismodule.c | 60 } aliases [] = { variable in typeref:struct:nis_map 67 {"aliases", "mail.aliases", 1}, /* created with 'makedbm -a' */ 78 for (i=0; aliases[i].alias != 0L; i++) { 79 if (!strcmp (aliases[i].alias, map) || !strcmp (aliases[i].map, map)) { 80 *pfix = aliases[i].fix; 81 return aliases[i].map; 361 while (!server && aliases[mapi].map != 0L) { 362 yp_master (dom, aliases[mapi].map, &server) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/diff/ |
types.py | 64 added_aliases, removed_aliases, matched_aliases = self._set_diff(left_type.aliases(), 65 right_type.aliases())
|
/external/selinux/libselinux/src/ |
label.c | 189 const char *key, int type, const char **aliases) 198 lr = rec->func_lookup_best_match(rec, key, aliases, type); 286 const char *key, const char **aliases, int type) 295 lr = selabel_lookup_bm_common(rec, 1, key, type, aliases); 304 const char *key, const char **aliases, int type) 313 lr = selabel_lookup_bm_common(rec, 0, key, type, aliases);
|
/frameworks/base/wifi/java/android/net/wifi/ |
WifiEnterpriseConfig.java | 81 * Unlike #KEYSTORE_URI, this supports a list of space-delimited aliases 582 * Set CA certificate aliases. When creating installing the corresponding certificate to 588 * @param aliases identifies the certificate 591 public void setCaCertificateAliases(@Nullable String[] aliases) { 592 if (aliases == null) { 594 } else if (aliases.length == 1) { 596 setCaCertificateAlias(aliases[0]); 598 // Use KEYSTORES_URI which supports multiple aliases. 600 for (int i = 0; i < aliases.length; i++) { 604 sb.append(encodeCaCertificateAlias(Credentials.CA_CERTIFICATE + aliases[i])) 632 String[] aliases = TextUtils.split(values, CA_CERT_ALIAS_DELIMITER); local [all...] |
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/ |
CharsetTest.java | 85 System.err.println("isRegistered was false for " + name + " " + cs.name() + " " + cs.aliases()); 87 assertTrue("isRegistered was false for " + name + " " + cs.name() + " " + cs.aliases(), cs.isRegistered()); 92 assertFalse("isRegistered was true for " + name + " " + cs.name() + " " + cs.aliases(), cs.isRegistered()); 391 assertEquals("mock", c.aliases().toArray()[0]); 392 assertEquals(1, c.aliases().toArray().length); 437 assertEquals(0, c.aliases().toArray().length); 453 assertEquals(0, c.aliases().toArray().length); 464 // Test the constructor with illegal aliases: starting with neither a digit nor a letter. 490 assertEquals(3, c.aliases().size()); 491 assertTrue(c.aliases().contains("mock")) [all...] |
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
AssignTokenTypesBehavior.java | 44 protected Map<String,String> aliases = new TreeMap<String, String>(); field in class:AssignTokenTypesBehavior 192 String prevAliasTokenID = aliases.get(tokenID); 201 aliases.put(tokenID, literal); 210 System.out.println("aliases="+aliases); 223 System.out.println("aliases="+aliases); 270 // walk aliases if any and assign types to aliased literals if literal 272 Set s = aliases.keySet(); 275 String literal = (String)aliases.get(tokenID) [all...] |
/external/conscrypt/common/src/main/java/org/conscrypt/ |
KeyManagerImpl.java | 60 final Enumeration<String> aliases; local 62 aliases = keyStore.aliases(); 66 for (; aliases.hasMoreElements();) { 67 final String alias = aliases.nextElement();
|