Searched refs:alias (Results 1 - 25 of 227) sorted by relevance

12345678910

/external/clang/test/CodeGen/
H A D2008-11-02-WeakAlias.c5 void init_IRQ(void) __attribute__((weak, alias("native_init_IRQ")));
H A D2008-07-29-override-alias-decl.c8 int f() __attribute__((weak, alias("x")));
10 /* Test that we link to the alias correctly instead of making a new
H A Dalias.c10 extern int g1 __attribute((alias("g0")));
11 // CHECKBASIC: @g1 = alias i32* @g0
15 extern void f1(void) __attribute((alias("f0")));
16 // CHECKBASIC: @f1 = alias void ()* @f0
23 int foo() __attribute__((alias("foo1")));
24 int bar() __attribute__((alias("bar1")));
29 // test6 changes to alias.
30 int test6() __attribute__((alias("test7")));
34 extern __typeof(inner) inner_a __attribute__((alias("inner")));
35 static __typeof(inner_weak) inner_weak_a __attribute__((weakref, alias("inner_wea
[all...]
H A Dredefine_extname.c4 #pragma redefine_extname name alias
15 // CHECK: load i32* @alias
/external/clang/test/Sema/
H A Dattr-alias.c8 void f() __attribute__((alias("g"))); //expected-error {{only weak aliases are supported}}
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DMyKeyStore.java62 public Key engineGetKey(String alias, char[] password) argument
64 if (Keys.containsKey(alias)) {
65 return (Key) Keys.get(alias);
70 public Certificate[] engineGetCertificateChain(String alias) { argument
71 if (Chain.containsKey(alias)) {
72 return (Certificate[]) Chain.get(alias);
77 public Certificate engineGetCertificate(String alias) { argument
78 if (Cert.containsKey(alias)) {
79 return (Certificate) Cert.get(alias);
84 public Date engineGetCreationDate(String alias) { argument
91 engineSetKeyEntry(String alias, Key key, char[] password, Certificate[] chain) argument
103 engineSetKeyEntry(String alias, byte[] key, Certificate[] chain) argument
124 engineSetCertificateEntry(String alias, Certificate cert) argument
130 engineDeleteEntry(String alias) argument
145 engineContainsAlias(String alias) argument
159 engineIsKeyEntry(String alias) argument
166 engineIsCertificateEntry(String alias) argument
[all...]
H A DMyKeyStoreSpi.java45 public Key engineGetKey(String alias, char[] password) argument
50 public Certificate[] engineGetCertificateChain(String alias) { argument
54 public Certificate engineGetCertificate(String alias) { argument
58 public Date engineGetCreationDate(String alias) { argument
62 public void engineSetKeyEntry(String alias, Key key, char[] password, argument
68 public void engineSetKeyEntry(String alias, byte[] key, Certificate[] chain) argument
74 public void engineSetCertificateEntry(String alias, Certificate cert) argument
80 public void engineDeleteEntry(String alias) throws KeyStoreException { argument
89 public boolean engineContainsAlias(String alias) { argument
97 public boolean engineIsKeyEntry(String alias) { argument
101 engineIsCertificateEntry(String alias) argument
[all...]
/external/clang/include/clang/Sema/
H A DWeak.h26 IdentifierInfo *alias; // alias (optional) member in class:clang::WeakInfo
31 : alias(0), loc(SourceLocation()), used(false) {}
33 : alias(Alias), loc(Loc), used(false) {}
34 inline IdentifierInfo * getAlias() const { return alias; }
39 return alias == RHS.getAlias() && loc == RHS.getLocation();
/external/smack/src/org/xbill/DNS/
H A DCNAMERecord.java6 * CNAME Record - maps an alias to its real name
24 * @param alias The name to which the CNAME alias points
27 CNAMERecord(Name name, int dclass, long ttl, Name alias) { argument
28 super(name, Type.CNAME, dclass, ttl, alias, "alias");
39 /** Gets the alias specified by the CNAME Record */
H A DDNAMERecord.java6 * DNAME Record - maps a nonterminal alias (subtree) to a different domain
24 * @param alias The name to which the DNAME alias points
27 DNAMERecord(Name name, int dclass, long ttl, Name alias) { argument
28 super(name, Type.DNAME, dclass, ttl, alias, "alias");
39 /** Gets the alias specified by the DNAME Record */
/external/v8/test/mjsunit/regress/
H A Dregress-900055.js28 var alias = eval; variable
29 function e(s) { return alias(s); }
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/xpath/
H A DXMPPathSegment.java24 /** flag if segment is an alias */
25 private boolean alias; field in class:XMPPathSegment
26 /** alias form if applicable */
91 * @param alias the flag to set
93 public void setAlias(boolean alias) argument
95 this.alias = alias;
100 * @return Returns the alias.
104 return alias;
109 * @return Returns the aliasForm if this segment has been created by an alias
[all...]
/external/clang/test/SemaCXX/
H A Dattr-weakref.cpp6 static int a2() __attribute__((weakref, alias ("foo")));
9 static int a4 __attribute__((weakref, alias ("foo")));
12 static int a5 __attribute__((alias ("foo"), weakref));
15 static int a6 __attribute__((weakref)); //expected-error {{weakref declaration of 'a6' must also have an alias attribute}}
31 int a9 __attribute__((weakref)); // expected-error {{weakref declaration of 'a9' must also have an alias attribute}}
/external/elfutils/backends/
H A Di386_auxv.c49 __attribute__ ((alias ("i386_auxv_info")));
H A Dppc_auxv.c52 __attribute__ ((alias ("ppc_auxv_info")));
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/export/binary/
H A DBinaryClassField.java94 byte alias; field in class:BinaryClassField
96 BinaryClassField(String name, byte alias, byte type) { argument
98 this.alias = alias;
H A DBinaryClassObject.java43 byte[] alias; field in class:BinaryClassObject
/external/skia/include/svg/
H A DSkSVGAttribute.h38 #define SVG_ADD_ATTRIBUTE_ALIAS(attr, alias) \
39 if (f_##alias.size() > 0) \
40 parser._addAttributeLen(#attr, f_##alias.c_str(), f_##alias.size())
/external/v8/test/mjsunit/
H A Ddebug-stepin-function-call.js84 var alias = g;
86 var r = 10 + alias.call(null, 3);
94 var alias = g;
96 alias.call(null, 3);
120 var alias = g;
122 var r = 10 + alias.apply(null, [3, 'unused arg']);
130 var alias = g;
132 alias.apply(null, [3]);
/external/libxml2/
H A Delfgcchack.h69 extern __typeof (__xmlGenericError) __xmlGenericError __attribute((alias("__xmlGenericError__internal_alias")));
79 extern __typeof (__xmlGenericErrorContext) __xmlGenericErrorContext __attribute((alias("__xmlGenericErrorContext__internal_alias")));
91 extern __typeof (docbCreatePushParserCtxt) docbCreatePushParserCtxt __attribute((alias("docbCreatePushParserCtxt__internal_alias")));
103 extern __typeof (htmlAttrAllowed) htmlAttrAllowed __attribute((alias("htmlAttrAllowed__internal_alias")));
115 extern __typeof (htmlAutoCloseTag) htmlAutoCloseTag __attribute((alias("htmlAutoCloseTag__internal_alias")));
127 extern __typeof (htmlCreateFileParserCtxt) htmlCreateFileParserCtxt __attribute((alias("htmlCreateFileParserCtxt__internal_alias")));
139 extern __typeof (htmlCreateMemoryParserCtxt) htmlCreateMemoryParserCtxt __attribute((alias("htmlCreateMemoryParserCtxt__internal_alias")));
151 extern __typeof (htmlCreatePushParserCtxt) htmlCreatePushParserCtxt __attribute((alias("htmlCreatePushParserCtxt__internal_alias")));
163 extern __typeof (htmlCtxtReadDoc) htmlCtxtReadDoc __attribute((alias("htmlCtxtReadDoc__internal_alias")));
175 extern __typeof (htmlCtxtReadFd) htmlCtxtReadFd __attribute((alias("htmlCtxtReadFd__internal_alia
[all...]
/external/icu4c/io/
H A Duprntf_p.c1046 static ufmt_args* parseArguments(const UChar *alias, va_list ap, UErrorCode *status) { argument
1054 const UChar *aliasStart = alias;
1059 while(*alias != UP_PERCENT && *alias != 0x0000) {
1060 alias++;
1063 if(*alias == 0x0000) {
1067 alias++;
1070 if(ISDIGIT(*alias)) {
1073 if(ISDIGIT(*alias)) {
1074 pos = (int) (*alias
1222 const UChar *alias = fmt; local
[all...]
/external/libyuv/files/source/
H A Dvideo_common.cc22 uint32 alias; member in struct:libyuv::FourCCAliasEntry
43 if (kFourCCAliases[i].alias == fourcc) {
47 // Not an alias, so return it as-is.
/external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/
H A DKeyStore_Impl2Test.java93 String alias = "aaa";
95 assertNull("getKey must return null", keyS.getKey(alias, pass));
97 .getCertificate(alias));
99 .getCertificateChain(alias));
101 .getCreationDate(alias), new Date(0));
104 .isCertificateEntry(alias));
105 assertFalse("Incorrect result of isKeyEntry", keyS.isKeyEntry(alias));
107 .containsAlias(alias));
111 keyS.setCertificateEntry(alias, null);
116 keyS.setEntry(alias, nul
[all...]
/external/blktrace/
H A Dverify_blkparse.c13 int major, minor, cpu, nr, alias; local
33 alias = nr = 0;
53 fprintf(stdout, "alias on sequence %u\n", seq);
54 alias++;
62 fprintf(stdout, "Events %Lu: %d unordered, %d aliases\n", total_entries, nr, alias);
/external/clang/test/CodeGenCXX/
H A Dattr.cpp3 // CHECK: @test2 = alias i32 ()* @_Z5test1v
32 extern "C" int test2() __attribute__((alias("_Z5test1v")));

Completed in 577 milliseconds

12345678910