HomeSort by relevance Sort by last modified time
    Searched full:init_priority (Results 1 - 15 of 15) sorted by null

  /external/clang/test/SemaCXX/
init-priority-attr.cpp 20 Two foo __attribute__((init_priority(101))) ( 5, 6 );
22 Two goo __attribute__((init_priority(2,3))) ( 5, 6 ); // expected-error {{'init_priority' attribute takes one argument}}
24 Two coo[2] __attribute__((init_priority(3))); // expected-error {{'init_priority' attribute requires integer constant between 101 and 65535 inclusive}}
26 Two koo[4] __attribute__((init_priority(1.13))); // expected-error {{'init_priority' attribute requires an integer constant}}
28 Two func() __attribute__((init_priority(1001))); // expected-error {{'init_priority' attribute only applies to variables}}
30 int i __attribute__((init_priority(1001))); // expected-error {{can only use 'init_priority' attribute on file-scope definitions of o (…)
    [all...]
  /external/clang/test/CodeGenCXX/
init-priority-attr.cpp 50 A1 a1 __attribute__((init_priority (300)));
51 A a __attribute__((init_priority (300)));
52 B b __attribute__((init_priority (200)));
  /external/clang/lib/CodeGen/
CGDeclCXX.cpp 333 // FIXME: Should we support init_priority for thread_local?
CodeGenModule.h 408 /// init_priority attribute.
    [all...]
  /toolchain/binutils/binutils-2.25/ld/
ldlang.c 371 /* Return the numerical value of the init_priority attribute from
378 unsigned long init_priority; local
380 /* GCC uses the following section names for the init_priority
385 decimal numerical value of the init_priority attribute.
389 decimal numerical value of the init_priority attribute.
396 init_priority = strtoul (name + 12, &end, 10);
397 return *end ? 0 : init_priority;
402 init_priority = strtoul (name + 7, &end, 10);
403 return *end ? 0 : 65535 - init_priority;
    [all...]
NEWS 71 sorting sections by numerical value of the GCC init_priority attribute
ChangeLog-0001     [all...]
ld.texinfo     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/
defaults.h 339 /* If the target supports init_priority C++ attribute, give
    [all...]
  /external/clang/include/clang/Basic/
Attr.td     [all...]
DiagnosticSemaKinds.td     [all...]
  /external/clang/test/Index/
recursive-cxx-member-calls.cpp 176 .Case("init_priority", AT_init_priority)
    [all...]
  /external/clang/lib/Sema/
SemaDeclAttr.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/info/
gccint.info     [all...]
ld.info     [all...]

Completed in 1094 milliseconds