/external/clang/test/Misc/ |
H A D | serialized-diags-really-long-text.cpp | 6 typedef class AReallyLooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooongName {} alias; typedef in typeref:class:AReallyLooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooongName 10 typedef MyTS<N-1, alias, alias, alias, alias, alias, alias, alias, alias, alias, alia [all...] |
/external/clang/test/Sema/ |
H A D | attr-self-alias.c | 3 int self_alias(void) __attribute__((weak, alias("self_alias"))); // expected-error {{alias definition is part of a cycle}}
|
H A D | attr-alias-elf.c | 3 void f1(void) __attribute__((alias("g1"))); 7 void f2(void) __attribute__((alias("g2"))); // expected-error {{alias must point to a defined variable or function}} 10 void f3(void) __attribute__((alias("g3"))); // expected-error {{alias must point to a defined variable or function}} 14 void f4() __attribute__((alias("g4"))); 16 void h4() __attribute__((alias("f4"))); 18 void f5() __attribute__((alias("g5"))); 19 void h5() __attribute__((alias("f5"))); 23 void f6() __attribute__((alias("g [all...] |
H A D | attr-alias.c | 8 void f() __attribute__((alias("g"))); //expected-error {{only weak aliases are supported}}
|
H A D | alias-redefinition.c | 4 void fun0(void) __attribute((alias("f0"))); 8 void fun1(void) __attribute((alias("f1"))); // expected-error {{redefinition of 'fun1'}} 11 void fun2(void) __attribute((alias("f2"))); // expected-note {{previous definition}} 15 void fun3(void) __attribute((alias("f3"))); // expected-note {{previous definition}} 16 void fun3(void) __attribute((alias("f3"))); // expected-error {{redefinition of 'fun3'}} 19 void fun4(void) __attribute((alias("f4"))); 24 void __attribute((alias("f5"))) fun5(void) {} // expected-error {{redefinition of 'fun5'}} // expected-note {{previous definition}} 26 int var1 __attribute((alias("v1"))); // expected-error {{definition 'var1' cannot also be an alias}} 27 static int var2 __attribute((alias("v [all...] |
H A D | pragma-weak.c | 5 void both3(void) __attribute((alias("__both3"))); // expected-error {{redefinition of 'both3'}} 10 void a3(void) __attribute((alias("__a3"))); // expected-error {{redefinition of 'a3'}}
|
/external/clang/test/CodeGen/ |
H A D | 2008-11-02-WeakAlias.c | 5 void init_IRQ(void) __attribute__((weak, alias("native_init_IRQ")));
|
H A D | alias.c | 18 // PR24379: alias variable expected to have same size as aliasee even when types differ 23 extern const int __mod_usb_device_table __attribute__ ((alias("wacom_usb_ids"))); 24 // CHECKBASIC-DAG: @__mod_usb_device_table = alias i32, getelementptr inbounds ([8 x i32], [8 x i32]* @wacom_usb_ids, i32 0, i32 0) 30 extern int g1 __attribute((alias("g0"))); 31 // CHECKBASIC-DAG: @g1 = alias i32, i32* @g0 36 extern __thread int __libc_errno __attribute__ ((alias ("TL_WITH_ALIAS"))); 37 // CHECKBASIC-DAG: @__libc_errno = thread_local alias i32, i32* @TL_WITH_ALIAS 44 extern void f1(void) __attribute((alias("f0"))); 45 // CHECKBASIC-DAG: @f1 = alias void (), void ()* @f0 46 // CHECKBASIC-DAG: @test8_foo = weak alias voi [all...] |
H A D | 2008-07-29-override-alias-decl.c | 8 int f() __attribute__((weak, alias("x"))); 10 /* Test that we link to the alias correctly instead of making a new
|
H A D | hidden-alias-to-internal-function.c | 4 void bar(void) __attribute__((alias("foo"))) 7 // CHECK: @bar = hidden alias void (), void ()* @foo
|
/external/llvm/test/MC/ELF/ |
H A D | ifunc-reloc.s | 4 alias: label 5 .global alias 6 .type alias, @function 7 .set sym, alias
|
/external/clang/test/CodeGenCXX/ |
H A D | new-alias.cpp | 8 // CHECK: @_Znwm = alias i8* (i64), i8* (i64)* @something 9 void *operator new(size_t) __attribute__((alias("something")));
|
/external/conscrypt/platform/src/main/java/org/conscrypt/ |
H A D | TrustedCertificateKeyStoreSpi.java | 39 public Key engineGetKey(String alias, char[] password) { argument 40 if (alias == null) { 41 throw new NullPointerException("alias == null"); 47 public Certificate[] engineGetCertificateChain(String alias) { argument 48 if (alias == null) { 49 throw new NullPointerException("alias == null"); 55 public Certificate engineGetCertificate(String alias) { argument 56 return store.getCertificate(alias); 60 public Date engineGetCreationDate(String alias) { argument 61 return store.getCreationDate(alias); 65 engineSetKeyEntry( String alias, Key key, char[] password, Certificate[] chain) argument 71 engineSetKeyEntry(String alias, byte[] key, Certificate[] chain) argument 76 engineSetCertificateEntry(String alias, Certificate cert) argument 84 engineDeleteEntry(String alias) argument 94 engineContainsAlias(String alias) argument 104 engineIsKeyEntry(String alias) argument 112 engineIsCertificateEntry(String alias) argument [all...] |
/external/clang/include/clang/Sema/ |
H A D | Weak.h | 26 IdentifierInfo *alias; // alias (optional) member in class:clang::WeakInfo 31 : alias(nullptr), 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/clang/test/SemaCXX/ |
H A D | attr-weakref.cpp | 6 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}} 36 static int v __attribute__((weakref(a1), alias("foo"))); // expected-error {{'weakref' attribute requires a string}}
|
/external/dtc/tests/ |
H A D | get_alias.c | 31 static void check_alias(void *fdt, const char *path, const char *alias) argument 35 aliaspath = fdt_get_alias(fdt, alias); 38 FAIL("fdt_get_alias(%s) failed\n", alias); 42 alias, aliaspath, path);
|
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/xpath/ |
H A D | XMPPathSegment.java | 24 /** 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-trace/catapult/common/py_utils/py_utils/refactor/annotated_symbol/ |
H A D | import_statement.py | 74 def alias(self): member in class:AsName 79 @alias.setter 80 def alias(self, value): member in class:AsName 86 # If we currently have no alias, add one. 92 # We already have an alias. Just update the value. 95 # Removing the alias. Strip the "as foo". 108 alias == 'd' 112 alias if there is one, the full module path in "full" imports, and the 142 def alias(self): member in class:Import 143 """The alias, i 147 def alias(self, value): member in class:Import 201 def alias(self): member in class:ImportName 205 def alias(self, value): # pylint: disable=arguments-differ member in class:ImportName 303 def alias(self): member in class:ImportFrom 311 def alias(self, value): # pylint: disable=arguments-differ member in class:ImportFrom [all...] |
/external/elfutils/backends/ |
H A D | i386_auxv.c | 52 __attribute__ ((alias ("i386_auxv_info")));
|
H A D | ppc_auxv.c | 55 __attribute__ ((alias ("ppc_auxv_info")));
|
/external/libchrome/base/allocator/ |
H A D | allocator_shim_internals.h | 23 #define SHIM_ALIAS_SYMBOL(fn) __attribute__((alias(#fn)))
|
/external/libxml2/ |
H A D | elfgcchack.h | 69 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/bouncycastle/bcpkix/src/main/java/org/bouncycastle/openssl/ |
H A D | CertificateTrustBlock.java | 22 private String alias; field in class:CertificateTrustBlock 29 public CertificateTrustBlock(String alias, Set<ASN1ObjectIdentifier> uses) argument 31 this(alias, uses, null); 34 public CertificateTrustBlock(String alias, Set<ASN1ObjectIdentifier> uses, Set<ASN1ObjectIdentifier> prohibitions) argument 36 this.alias = alias; 59 this.alias = DERUTF8String.getInstance(obj).getString(); 66 return alias; 125 if (alias != null) 127 v.add(new DERUTF8String(alias)); [all...] |
/external/mesa3d/src/mapi/ |
H A D | mapi_glapi.c | 121 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/google-breakpad/src/third_party/libdisasm/ |
H A D | ia32_reg.c | 34 unsigned char alias; /* id of register this is an alias for */ member in struct:__anon7075 71 unsigned int alias; member in struct:__anon7076 200 unsigned int alias; local 212 alias = ia32_reg_table[id].alias; 213 if ( alias ) { 214 reg->alias = ia32_reg_aliases[alias].alias; [all...] |