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

1234567891011>>

/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/chromium_org/extensions/common/permissions/
H A Dpermissions_provider.h18 // An alias for a given permission |name|.
21 const char* alias; member in struct:extensions::PermissionsProvider::AliasInfo
23 AliasInfo(const char* name, const char* alias) argument
24 : name(name), alias(alias) {
/external/clang/test/CodeGenCXX/
H A Dnew-alias.cpp5 // CHECK: @_Znwm = alias i8* (i64)* @something
6 void *operator new(size_t) __attribute__((alias("something")));
/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/chromium_org/third_party/mesa/src/src/mapi/glapi/gen/
H A Dmesadef.py190 for (name, alias, offset) in records:
199 def EmitEntry(name, returnType, argTypeList, argNameList, alias, offset):
200 if alias == '':
203 dispatchName = alias
208 # save this info in case we need to look up an alias later
/external/mesa3d/src/mapi/glapi/gen/
H A Dmesadef.py190 for (name, alias, offset) in records:
199 def EmitEntry(name, returnType, argTypeList, argNameList, alias, offset):
200 if alias == '':
203 dispatchName = alias
208 # save this info in case we need to look up an alias later
/external/chromium_org/v8/test/mjsunit/regress/
H A Dregress-900055.js28 var alias = eval; variable
29 function e(s) { return alias(s); }
/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/chromium_org/third_party/mesa/src/src/mapi/mapi/
H A Dmapi_glapi.c121 const struct mapi_stub *alias = NULL; local
126 /* find the missing stubs, and decide the alias */
142 if (alias && stub_get_slot(alias) != slot)
144 /* use the first existing stub as the alias */
145 if (!alias)
146 alias = stub;
164 stub_fix_dynamic(stub, alias);
165 if (!alias)
166 alias
[all...]
/external/mesa3d/src/mapi/mapi/
H A Dmapi_glapi.c121 const struct mapi_stub *alias = NULL; local
126 /* find the missing stubs, and decide the alias */
142 if (alias && stub_get_slot(alias) != slot)
144 /* use the first existing stub as the alias */
145 if (!alias)
146 alias = stub;
164 stub_fix_dynamic(stub, alias);
165 if (!alias)
166 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/chromium_org/third_party/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/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

Completed in 683 milliseconds

1234567891011>>