HomeSort by relevance Sort by last modified time
    Searched full:linkage (Results 1 - 25 of 1039) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Index/
linkage.c 1 // RUN: c-index-test -test-print-linkage-source %s | FileCheck %s
22 // CHECK: EnumDecl=Baz:3:6 (Definition)linkage=External
23 // CHECK: EnumConstantDecl=Qux:3:12 (Definition)linkage=External
24 // CHECK: VarDecl=x:4:5linkage=External
25 // CHECK: FunctionDecl=foo:5:6linkage=External
26 // CHECK: VarDecl=w:6:12linkage=Internal
27 // CHECK: FunctionDecl=bar:7:6 (Definition)linkage=External
28 // CHECK: ParmDecl=y:7:14 (Definition)linkage=NoLinkage
29 // CHECK: VarDecl=z:8:14 (Definition)linkage=NoLinkage
30 // CHECK: VarDecl=k:9:7 (Definition)linkage=NoLinkag
    [all...]
  /external/llvm/include/llvm/IR/
GlobalValue.h 31 /// @brief An enumeration for the kinds of linkage for global values.
47 ExternalWeakLinkage,///< ExternalWeak linkage description.
60 LinkageTypes linkage, const Twine &Name)
61 : Constant(ty, vty, Ops, NumOps), Linkage(linkage),
67 // Linkage and Visibility from turning into negative values.
68 LinkageTypes Linkage : 5; // The linkage of this global
118 static bool isExternalLinkage(LinkageTypes Linkage) {
119 return Linkage == ExternalLinkage
    [all...]
  /external/clang/test/CXX/over/over.oper/over.literal/
p6.cpp 3 extern "C" void operator "" _a(const char *); // expected-error {{must have C++ linkage}}
4 extern "C" template<char...> void operator "" _b(); // expected-error {{must have C++ linkage}}
7 void operator "" _c(const char *); // expected-error {{must have C++ linkage}}
8 template<char...> void operator "" _d(); // expected-error {{must have C++ linkage}}
10 void operator "" _e(const char *); // expected-error {{must have C++ linkage}}
11 template<char...> void operator "" _f(); // expected-error {{must have C++ linkage}}
  /external/clang/test/CodeGenCXX/
2003-11-02-WeakLinkage.cpp 2 // The template should compile to linkonce linkage, not weak linkage.
  /external/llvm/test/Linker/
linkage.ll 1 ; RUN: llvm-as %S/Inputs/linkage.a.ll -o %t.1.bc
2 ; RUN: llvm-as %S/Inputs/linkage.b.ll -o %t.2.bc
  /external/clang/include/clang/Basic/
Linkage.h 1 //===--- Linkage.h - Linkage enumeration and utilities ----------*- C++ -*-===//
11 /// \brief Defines the Linkage enumeration and various utility functions.
19 /// \brief Describes the different kinds of linkage
21 enum Linkage {
22 /// \brief No linkage, which means that the entity is unique and
26 /// \brief Internal linkage, which indicates that the entity can
31 /// \brief External linkage within a unique namespace.
34 /// linkage. However, since they reside in an anonymous namespace,
36 /// equivalent to having internal linkage from the code-generatio
    [all...]
  /external/clang/test/CodeGen/
2010-12-01-CommonGlobal.c 2 // Don't crash on a common-linkage constant global.
  /external/linux-tools-perf/util/include/linux/
linkage.h 5 /* linkage.h ... for including arch/x86/lib/memcpy_64.S */
  /external/clang/test/SemaCXX/
linkage2.cpp 9 extern int x; // expected-error {{declaration of 'x' has a different language linkage}}
10 extern int y; // OK, has internal linkage, so no language linkage.
11 void f(); // expected-error {{declaration of 'f' has a different language linkage}}
15 // This is OK. Both test2_f don't have language linkage since they have
16 // internal linkage.
77 // This is OK. The variables have internal linkage and therefore no language
78 // linkage.
94 // FIXME: This should be invalid. The function has no language linkage, but
114 void __attribute__((overloadable)) test9_f(int c); // expected-error {{declaration of 'test9_f' has a different language linkage}}
    [all...]
attr-weak.cpp 3 static int test0 __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
4 static void test1() __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
10 int test3 __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
11 void test4() __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
20 static void test6() __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
function-extern-c.cpp 27 extern "C" U f3( void ); // expected-warning {{'f3' has C-linkage specified, but returns user-defined type 'U' which is incompatible with C}}
28 extern "C" S f0(void); // expected-warning {{'f0' has C-linkage specified, but returns user-defined type 'S' which is incompatible with C}}
29 extern "C" A f4( void ); // expected-warning {{'f4' has C-linkage specified, but returns user-defined type 'A' which is incompatible with C}}
40 extern "C" struct mypodstruct f12(); // expected-warning {{'f12' has C-linkage specified, but returns incomplete type 'struct mypodstruct' which could be incompatible with C}}
48 extern "C" A f(void); // expected-warning {{'f' has C-linkage specified, but returns incomplete type 'test2::A' which could be incompatible with C}}
74 #pragma clang diagnostic ignored "-Wreturn-type-c-linkage"
77 A bbb(); // expected-warning {{'bbb' has C-linkage specified, but returns user-defined type 'rdar13364028::A' which is incompatible with C}}
78 A ccc() { // expected-warning {{'ccc' has C-linkage specified, but returns user-defined type 'rdar13364028::A' which is incompatible with C}}
  /external/clang/test/Sema/
inline.c 13 inline int useStatic () { // expected-note 3 {{use 'static' to give inline function 'useStatic' internal linkage}}
14 staticFunction(); // expected-warning{{static function 'staticFunction' is used in an inline function with external linkage}}
15 (void)staticStruct.x; // expected-warning{{static variable 'staticStruct' is used in an inline function with external linkage}}
16 return staticVar; // expected-warning{{static variable 'staticVar' is used in an inline function with external linkage}}
20 staticFunction(); // expected-warning{{static function 'staticFunction' is used in an inline function with external linkage}}
21 return staticVar; // expected-warning{{static variable 'staticVar' is used in an inline function with external linkage}}
69 inline int useStaticAgain () { // expected-note 2 {{use 'static' to give inline function 'useStaticAgain' internal linkage}}
70 staticFunction(); // expected-warning{{static function 'staticFunction' is used in an inline function with external linkage}}
71 return staticVar; // expected-warning{{static variable 'staticVar' is used in an inline function with external linkage}}
attr-weak.c 14 static int x __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
21 extern int pr14946_x __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
24 void pr14946_f() __attribute__((weak)); // expected-error {{weak declaration cannot have internal linkage}}
  /external/chromium/testing/gmock/test/
gmock_link_test.h 241 // Tests the linkage of the ReturnVoid action.
249 // Tests the linkage of the Return action.
258 // Tests the linkage of the ReturnNull action.
266 // Tests the linkage of the ReturnRef action.
275 // Tests the linkage of the Assign action.
284 // Tests the linkage of the SetArgPointee action.
293 // Tests the linkage of the SetArrayArgument action.
306 // Tests the linkage of the SetErrnoAndReturn action.
318 // Tests the linkage of the Invoke(function) and Invoke(object, method) actions.
330 // Tests the linkage of the InvokeWithoutArgs action
    [all...]
  /dalvik/tests/087-gc-after-link/
info.txt 1 This test causes a linkage error, which calls dvmFreeClassInnards on
  /development/ndk/platforms/android-3/include/linux/
rwsem.h 15 #include <linux/linkage.h>
  /external/clang/test/CodeGenObjC/
debug-info-linkagename.m 3 // Linkage name should not use 001 prefix in debug info.
  /external/clang/test/Modules/Inputs/
cxx-linkage-cache.h 2 // we would try to compute the linkage of a declaration before we
  /external/kernel-headers/original/linux/
mutex-debug.h 4 #include <linux/linkage.h>
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
rwsem.h 15 #include <linux/linkage.h>
  /prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
rwsem.h 15 #include <linux/linkage.h>
  /prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
rwsem.h 15 #include <linux/linkage.h>
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/
semaphore_32.h 15 #include <linux/linkage.h>
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
rwsem.h 15 #include <linux/linkage.h>
  /prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
rwsem.h 15 #include <linux/linkage.h>

Completed in 930 milliseconds

1 2 3 4 5 6 7 8 91011>>