/external/llvm/test/CodeGen/Hexagon/ |
D | ctor.ll | 2 ; RUN: llc -march=hexagon < %s -use-ctors | FileCheck -check-prefix=CTOR %s 10 ;CTOR: .section .ctors 14 ;INITARRAY-NOT: .section .ctors
|
/external/llvm/test/CodeGen/X86/ |
D | 2011-08-29-InitOrder.ll | 1 ; RUN: llc < %s -mtriple=i386-linux-gnu -use-ctors | FileCheck %s --check-prefix=CHECK-DEFAULT 6 ; CHECK-DEFAULT: .section .ctors.64535,"aw",@progbits 8 ; CHECK-DEFAULT: .section .ctors.63535,"aw",@progbits 10 ; CHECK-DEFAULT: .section .ctors.62535,"aw",@progbits
|
D | constructor.ll | 1 ; RUN: llc -mtriple x86_64-pc-linux -use-ctors < %s | FileCheck --check-prefix=CTOR %s 18 ; CTOR: .section .ctors.65520,"aGw",@progbits,v,comdat 21 ; CTOR-NEXT: .section .ctors,"aw",@progbits
|
/external/elfutils/src/ |
D | elf32-i386.script | 110 .ctors 121 KEEP (*crtbegin.o(.ctors)) 123 the crtend.o file until after the sorted ctors. 125 end of ctors marker and it must be last */ 126 KEEP (*(EXCLUDE_FILE (*crtend.o ) .ctors)) 127 KEEP (*(SORT(.ctors.*))) 128 KEEP (*(.ctors))
|
/external/llvm/test/Linker/ |
D | ctors.ll | 1 ; RUN: llvm-link %s %p/Inputs/ctors.ll -S -o - | \ 3 ; RUN: llvm-link %p/Inputs/ctors.ll %s -S -o - | \ 7 ; RUN: llvm-link %s %p/Inputs/ctors.ll -o %t.bc
|
/external/llvm/test/MC/COFF/ |
D | global_ctors_dtors.ll | 1 ; Test that global ctors are emitted into the proper COFF section for the 2 ; target. Mingw uses .ctors, whereas MSVC uses .CRT$XC*. 59 ; MINGW32: .section .ctors,"dw" 61 ; MINGW32: .section .ctors,"dw",associative,{{_?}}b
|
/external/llvm/test/CodeGen/ARM/ |
D | ctor_order.ll | 9 ; ELF: .section .ctors.65384,"aw",%progbits 11 ; ELF: .section .ctors.65383,"aw",%progbits
|
D | ctors_dtors.ll | 8 ; ELF: .section .ctors,"aw",%progbits
|
/external/doclava/src/com/google/doclava/ |
D | ClassInfo.java | 766 List<MethodInfo> ctors = new ArrayList<MethodInfo>(); in setRemovedConstructors() local 770 ctors.add(ctor); in setRemovedConstructors() 774 Collections.sort(ctors, MethodInfo.comparator); in setRemovedConstructors() 775 mRemovedConstructors = Collections.unmodifiableList(ctors); in setRemovedConstructors() 1060 ArrayList<MethodInfo> ctors = constructors(); in makeKeywordEntries() local 1088 for (MethodInfo m : ctors) { in makeKeywordEntries() 1097 for (MethodInfo m : ctors) { in makeKeywordEntries() 1107 for (MethodInfo m : ctors) { in makeKeywordEntries() 1117 for (MethodInfo m : ctors) { in makeKeywordEntries() 1214 ArrayList<MethodInfo> ctors = constructors(); in makeHDF() local [all …]
|
D | Converter.java | 380 ArrayList<MethodInfo> ctors = new ArrayList<MethodInfo>(); in convertNonWrittenConstructors() 384 ctors.add(methodInfo); in convertNonWrittenConstructors() 388 return ctors.toArray(new MethodInfo[ctors.size()]); in convertNonWrittenConstructors()
|
D | Stubs.java | 855 ArrayList<MethodInfo> ctors = base.constructors(); in superCtorCall() local 860 for (MethodInfo m : ctors) { in superCtorCall()
|
/external/llvm/test/CodeGen/Mips/ |
D | init-array.ll | 8 ; CHECK-NOT: .ctors
|
/external/llvm/test/CodeGen/SPARC/ |
D | 2008-10-10-InlineAsmRegOperand.ll | 5 module asm "\09.section\09\22.ctors\22,#alloc,#write"
|
/external/llvm/test/CodeGen/ARM/Windows/ |
D | structors.ll | 17 ; CHECK-GNU: .section .ctors,"dw"
|
/external/elfutils/tests/ |
D | run-elfputzdata.sh | 41 Cannot compress 18 .ctors 79 Cannot compress 18 .ctors 119 Cannot compress 17 .ctors 155 Cannot compress 17 .ctors
|
/external/v8/test/mjsunit/ |
D | migrations.js | 84 var ctors = [ variable 296 ctors.forEach(function(ctor) {
|
/external/clang/include/clang/Frontend/ |
D | CodeGenOptions.def | 40 CODEGENOPT(CXXCtorDtorAliases, 1, 0) ///< Emit complete ctors/dtors as linker 41 ///< aliases to base ctors when possible. 162 ///< .ctors.
|
/external/clang/test/CodeGenCXX/ |
D | const-init-cxx11.cpp | 111 extern const C ctors[3]; 112 constexpr C ctors[3]; variable
|
/external/doclava/res/assets/templates/ |
D | class.cs | 64 <?cs if:subcount(class.ctors.public) ?> 68 <?cs if:subcount(class.ctors.protected) ?>
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | VirtualCallChecker.cpp | 226 for (const auto *I : RD->ctors()) { in checkASTDecl()
|
/external/clang/lib/CodeGen/ |
D | CGCXXABI.cpp | 48 for (const CXXConstructorDecl *CD : RD->ctors()) { in canCopyArgument()
|
/external/clang/lib/StaticAnalyzer/ |
D | README.txt | 83 to the object region. In ctors, we synthesize 'this' region with
|
/external/jcommander/src/main/java/com/beust/jcommander/ |
D | JCommander.java | 1340 Constructor<IStringConverter<?>>[] ctors in instantiateConverter() local 1342 for (Constructor<IStringConverter<?>> c : ctors) { in instantiateConverter()
|
/external/llvm/docs/HistoricalNotes/ |
D | 2001-05-18-ExceptionHandling.txt | 82 A::A(%a) // These ctors & dtors could throw, but we ignore this
|
/external/clang/include/clang/AST/ |
D | DeclCXX.h | 774 ctor_range ctors() const { return ctor_range(ctor_begin(), ctor_end()); } in ctors() function
|