/external/protobuf/src/google/protobuf/compiler/javamicro/ |
javamicro_enum.cc | 60 Alias alias; local 61 alias.value = value; 62 alias.canonical_value = canonical_value; 63 aliases_.push_back(alias);
|
/libcore/luni/src/test/java/tests/targets/security/ |
SignatureTestMD2withRSA.java | 115 put("Alg.Alias.Signature.MD2WITHRSAENCRYPTION", 117 put("Alg.Alias.Signature.MD2WithRSA", "MD2WithRSAEncryption"); 118 put("Alg.Alias.Signature.MD2withRSA", "MD2WithRSAEncryption"); 119 put("Alg.Alias.Signature.MD2/RSA", "MD2WithRSAEncryption"); 120 put("Alg.Alias.Signature.1.2.840.113549.1.1.2",
|
/libcore/ojluni/src/main/java/sun/security/validator/ |
KeyStores.java | 100 String alias = e.nextElement(); local 101 if (ks.isCertificateEntry(alias)) { 102 Certificate cert = ks.getCertificate(alias); 106 } else if (ks.isKeyEntry(alias)) { 107 Certificate[] certs = ks.getCertificateChain(alias);
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/ |
typequery.py | 39 alias The alias name to match. 41 will be used on the alias names. 74 self.log.debug("Alias: {0.alias}, regex: {0.alias_regex}".format(self))
|
/external/clang/include/clang/Driver/ |
Options.td | 209 // The misspelt "white-list" [sic] alias is due for removal. 211 Alias<objcmt_whitelist_dir_path>; 268 def O_flag : Flag<["-"], "O">, Flags<[CC1Option]>, Alias<O>, AliasArgs<["2"]>; 432 Alias<fprofile_sample_use_EQ>; 451 Alias<fprofile_instr_generate>; 456 Alias<fprofile_instr_use>; 464 Alias<fno_profile_instr_generate>; 469 Alias<fno_profile_instr_use>; [all...] |
/external/llvm/lib/Analysis/ |
AliasAnalysis.cpp | 1 //===- AliasAnalysis.cpp - Generic Alias Analysis Interface Implementation -==// 11 // common interface used by all clients and implementations of alias analysis. 16 // alias, a global cannot alias a malloc, two different mallocs cannot alias, 19 // This alias analysis implementation really isn't very good for anything, but 21 // handles lots of little corner cases, other, more complex, alias analysis 82 AliasResult AAResults::alias(const MemoryLocation &LocA, function in class:AAResults 85 auto Result = AA->alias(LocA, LocB); 200 // If the load address doesn't alias the given address, it doesn't rea [all...] |
/external/boringssl/src/crypto/x509/ |
x_x509a.c | 74 ASN1_OPT(X509_CERT_AUX, alias, ASN1_UTF8STRING), 93 if (!x || !x->aux || !x->aux->alias) 95 ASN1_UTF8STRING_free(x->aux->alias); 96 x->aux->alias = NULL; 100 if(!aux->alias && !(aux->alias = ASN1_UTF8STRING_new())) return 0; 101 return ASN1_STRING_set(aux->alias, name, len); 122 if(!x->aux || !x->aux->alias) return NULL; 123 if(len) *len = x->aux->alias->length; 124 return x->aux->alias->data [all...] |
/external/clang/test/SemaCXX/ |
alias-template.cpp | 24 template<typename Z> using ::T = void(int n); // expected-error {{name defined in alias declaration must be an identifier}} 25 template<typename Z> using operator int = void(int n); // expected-error {{name defined in alias declaration must be an identifier}} 26 template<typename Z> using typename U = void; // expected-error {{name defined in alias declaration must be an identifier}} 27 template<typename Z> using typename ::V = void(int n); // expected-error {{name defined in alias declaration must be an identifier}} 28 template<typename Z> using typename ::operator bool = void(int n); // expected-error {{name defined in alias declaration must be an identifier}} 40 template<typename Z> using U = int; // expected-error {{type alias template redefinition with different types ('int' vs 'int [42]')}} 99 ~X<int>(); // expected-error {{destructor cannot be declared using a type alias}} 106 template<typename Z> using V = struct V { int n; }; // expected-error {{'TagName::V' cannot be defined in a type alias template}} 119 expected-error {{expected ';' after alias declaration}} 142 template<typename T> template<typename U> using SS = S<T, U>; // expected-error {{extraneous template parameter list in alias template declaration} [all...] |
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/ |
ICUResourceBundleCollationTest.java | 37 // "f", "zh_TW@collation=stroke", "zh@collation=stroke", /* alias of zh_Hant_TW */ 41 "f", "zh_CN@collation=pinyin", "zh", /* alias of zh_Hans_CN */ 43 "f", "zh_HK@collation=pinyin", "zh", /* alias of zh_Hant_HK */ 45 "f", "zh_HK@collation=stroke", "zh@collation=stroke", /* alias of zh_Hant_HK */ 47 "f", "zh_HK", "zh@collation=stroke", /* alias of zh_Hant_HK */ 49 "f", "zh_MO", "zh@collation=stroke", /* alias of zh_Hant_MO */ 55 // "f", "zh_TW@collation=big5han", "zh@collation=big5han", /* alias of zh_Hant_TW */ 57 // "f", "zh_TW@collation=gb2312han", "zh@collation=gb2312han", /* alias of zh_Hant_TW */ 59 // "f", "zh_CN@collation=big5han", "zh@collation=big5han", /* alias of zh_Hans_CN */ 61 // "f", "zh_CN@collation=gb2312han", "zh@collation=gb2312han", /* alias of zh_Hans_CN * [all...] |
/external/icu/icu4c/source/common/ |
propname.cpp | 257 int32_t PropNameData::getPropertyOrValueEnum(int32_t bytesTrieOffset, const char *alias) { 259 if(containsName(trie, alias)) { 266 int32_t PropNameData::getPropertyEnum(const char *alias) { 267 return getPropertyOrValueEnum(0, alias); 270 int32_t PropNameData::getPropertyValueEnum(int32_t property, const char *alias) { 281 return getPropertyOrValueEnum(valueMaps[valueMapIndex], alias); 296 u_getPropertyEnum(const char* alias) { 298 return (UProperty)PropNameData::getPropertyEnum(alias); 311 const char* alias) { 313 return PropNameData::getPropertyValueEnum(property, alias); [all...] |
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/util/ |
ICUResourceBundleCollationTest.java | 33 // "f", "zh_TW@collation=stroke", "zh@collation=stroke", /* alias of zh_Hant_TW */ 37 "f", "zh_CN@collation=pinyin", "zh", /* alias of zh_Hans_CN */ 39 "f", "zh_HK@collation=pinyin", "zh", /* alias of zh_Hant_HK */ 41 "f", "zh_HK@collation=stroke", "zh@collation=stroke", /* alias of zh_Hant_HK */ 43 "f", "zh_HK", "zh@collation=stroke", /* alias of zh_Hant_HK */ 45 "f", "zh_MO", "zh@collation=stroke", /* alias of zh_Hant_MO */ 51 // "f", "zh_TW@collation=big5han", "zh@collation=big5han", /* alias of zh_Hant_TW */ 53 // "f", "zh_TW@collation=gb2312han", "zh@collation=gb2312han", /* alias of zh_Hant_TW */ 55 // "f", "zh_CN@collation=big5han", "zh@collation=big5han", /* alias of zh_Hans_CN */ 57 // "f", "zh_CN@collation=gb2312han", "zh@collation=gb2312han", /* alias of zh_Hans_CN * [all...] |
/external/llvm/tools/llvm-cov/ |
gcov.cpp | 98 cl::alias AllBlocksA("all-blocks", cl::aliasopt(AllBlocks)); 102 cl::alias BranchProbA("branch-probabilities", cl::aliasopt(BranchProb)); 107 cl::alias BranchCountA("branch-counts", cl::aliasopt(BranchCount)); 111 cl::alias LongNamesA("long-file-names", cl::aliasopt(LongNames)); 115 cl::alias FuncSummaryA("function-summaries", cl::aliasopt(FuncSummary)); 119 cl::alias NoOutputA("no-output", cl::aliasopt(NoOutput)); 124 cl::alias ObjectDirA("object-directory", cl::aliasopt(ObjectDir)); 125 cl::alias ObjectDirB("object-file", cl::aliasopt(ObjectDir)); 129 cl::alias PreservePathsA("preserve-paths", cl::aliasopt(PreservePaths)); 134 cl::alias UncondBranchA("unconditional-branches", cl::aliasopt(UncondBranch)) [all...] |
/external/skia/resources/android_fonts/v22/ |
fonts.xml | 20 <alias name="sans-serif-thin" to="sans-serif" weight="100" /> 21 <alias name="sans-serif-light" to="sans-serif" weight="300" /> 22 <alias name="sans-serif-black" to="sans-serif" weight="900" /> 23 <alias name="arial" to="sans-serif" /> 24 <alias name="helvetica" to="sans-serif" /> 25 <alias name="tahoma" to="sans-serif" /> 26 <alias name="verdana" to="sans-serif" /> 48 <alias name="sans-serif-condensed-light" to="sans-serif-condensed" weight="300" /> 57 <alias name="times" to="serif" /> 58 <alias name="times new roman" to="serif" / [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/symmetric/ |
RC2.java | 480 // provider.addAlgorithm("Alg.Alias.Cipher", PKCSObjectIdentifiers.id_alg_CMSRC2wrap, "RC2WRAP"); 484 // provider.addAlgorithm("Alg.Alias.Mac.RC2", "RC2MAC"); 486 // provider.addAlgorithm("Alg.Alias.Mac.RC2/CFB8", "RC2MAC/CFB8"); 488 // provider.addAlgorithm("Alg.Alias.SecretKeyFactory.PBEWITHMD2ANDRC2-CBC", "PBEWITHMD2ANDRC2"); 491 provider.addAlgorithm("Alg.Alias.SecretKeyFactory.PBEWITHMD5ANDRC2-CBC", "PBEWITHMD5ANDRC2"); 493 provider.addAlgorithm("Alg.Alias.SecretKeyFactory.PBEWITHSHA1ANDRC2-CBC", "PBEWITHSHA1ANDRC2"); 496 // provider.addAlgorithm("Alg.Alias.SecretKeyFactory", PKCSObjectIdentifiers.pbeWithMD2AndRC2_CBC, "PBEWITHMD2ANDRC2"); 499 provider.addAlgorithm("Alg.Alias.SecretKeyFactory", PKCSObjectIdentifiers.pbeWithMD5AndRC2_CBC, "PBEWITHMD5ANDRC2"); 501 provider.addAlgorithm("Alg.Alias.SecretKeyFactory", PKCSObjectIdentifiers.pbeWithSHA1AndRC2_CBC, "PBEWITHSHA1ANDRC2"); 502 provider.addAlgorithm("Alg.Alias.SecretKeyFactory.1.2.840.113549.1.12.1.5", "PBEWITHSHAAND128BITRC2-CBC") [all...] |
/prebuilts/gdb/darwin-x86/lib/python2.7/distutils/ |
fancy_getopt.py | 26 # For recognizing "negative alias" options, eg. "quiet=!verbose" 41 --quiet is the "negative alias" of --verbose, then "--quiet" 63 # 'alias' records (duh) alias options; {'foo': 'bar'} means 64 # --foo is an alias for --bar 65 self.alias = {} 122 for (alias, opt) in aliases.items(): 123 if alias not in self.option_index: 126 "option '%s' not defined") % (what, alias, alias) [all...] |
/prebuilts/gdb/linux-x86/lib/python2.7/distutils/ |
fancy_getopt.py | 26 # For recognizing "negative alias" options, eg. "quiet=!verbose" 41 --quiet is the "negative alias" of --verbose, then "--quiet" 63 # 'alias' records (duh) alias options; {'foo': 'bar'} means 64 # --foo is an alias for --bar 65 self.alias = {} 122 for (alias, opt) in aliases.items(): 123 if alias not in self.option_index: 126 "option '%s' not defined") % (what, alias, alias) [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/ |
fancy_getopt.py | 26 # For recognizing "negative alias" options, eg. "quiet=!verbose" 41 --quiet is the "negative alias" of --verbose, then "--quiet" 63 # 'alias' records (duh) alias options; {'foo': 'bar'} means 64 # --foo is an alias for --bar 65 self.alias = {} 122 for (alias, opt) in aliases.items(): 123 if alias not in self.option_index: 126 "option '%s' not defined") % (what, alias, alias) [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/ |
fancy_getopt.py | 26 # For recognizing "negative alias" options, eg. "quiet=!verbose" 41 --quiet is the "negative alias" of --verbose, then "--quiet" 63 # 'alias' records (duh) alias options; {'foo': 'bar'} means 64 # --foo is an alias for --bar 65 self.alias = {} 122 for (alias, opt) in aliases.items(): 123 if alias not in self.option_index: 126 "option '%s' not defined") % (what, alias, alias) [all...] |
/toolchain/binutils/binutils-2.25/cpu/ |
lm32.cpu | 740 (dni bret "return from breakpoint" (ALIAS) 747 (dni eret "return from exception" (ALIAS) 754 (dni ret "return" (ALIAS) 761 (dni mv "move" (ALIAS) 768 (dni mvi "move immediate" (ALIAS) 775 (dni mvui "move unsigned immediate" (ALIAS) 782 (dni mvhi "move high immediate" (ALIAS) 789 (dni mva "move address" (ALIAS) 796 (dni not "not" (ALIAS) 803 (dni nop "nop" (ALIAS) [all...] |
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
XMPSchemaRegistryImpl.java | 247 // Alias Functions 298 * Associates an alias name with an actual name. 300 * Define a alias mapping from one namespace/property to another. Both 301 * property names must be simple names. An alias can be a direct mapping, 302 * where the alias and actual have the same data type. It is also possible 303 * to map a simple alias to an item in an array. This can either be to the 305 * Multiple alias names may map to the same actual, as long as the forms 306 * match. It is a no-op to reregister an alias in an identical fashion. 312 * The namespace URI for the alias. Must not be null or the empty 315 * The name of the alias. Must be a simple name, not null or th [all...] |
/external/autotest/frontend/shared/ |
query_lib.py | 45 return 'alias%s' % self._alias_counter 140 alias = self._make_alias_fn() 143 alias) 148 condition %= (alias, 175 alias = self._make_alias_fn() 178 alias) 183 condition %= (alias,
|
/external/libxml2/doc/ |
elfgcchack.xsl | 76 extern __typeof (__xmlGenericError) __xmlGenericError __attribute((alias("__xmlGenericError__internal_alias"))); 86 extern __typeof (__xmlGenericErrorContext) __xmlGenericErrorContext __attribute((alias("__xmlGenericErrorContext__internal_alias"))); 110 <xsl:variable name="alias" select="concat($str, '__internal_alias')"/> 122 <xsl:text> __attribute((alias("</xsl:text> 123 <xsl:value-of select="$alias"/> 133 <xsl:value-of select="$alias"/> 139 <xsl:value-of select="$alias"/>
|
/external/llvm/include/llvm/Analysis/ |
CFLAliasAnalysis.h | 1 //===- CFLAliasAnalysis.h - CFL-Based Alias Analysis Interface ---*- C++ -*-==// 10 /// This is the interface for LLVM's primary stateless and local alias analysis. 54 AliasResult alias(const MemoryLocation &LocA, const MemoryLocation &LocB) { function in class:llvm::CFLAAResult 70 return AAResultBase::alias(LocA, LocB); 75 return AAResultBase::alias(LocA, LocB); 113 /// Analysis pass providing a never-invalidated alias analysis result. 153 // alias analysis.
|
/external/llvm/include/llvm/Option/ |
Option.h | 40 /// of (if any), if the option is an alias, and a number of 106 /// \brief Get the alias arguments as a \0 separated list. 164 /// aliases (itself, if the option has no alias). 166 const Option Alias = getAlias(); 167 if (Alias.isValid()) return Alias.getUnaliasedOption(); 180 /// Note that matches against options which are an alias should never be
|
/external/llvm/include/llvm/Transforms/Utils/ |
LoopVersioning.h | 32 /// that may-alias pointers can't overlap. 66 /// loop don't alias (i.e. all memchecks passed). (This loop is actually the 71 /// loop may alias (i.e. one of the memchecks failed). 74 /// \brief Sets the runtime alias checks for versioning the loop. 90 /// control flows here if pointers in the loop don't alias. 93 /// loop may alias (memchecks failed). 100 /// \brief The set of alias checks that we are versioning for.
|