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

1 2 3 4 5 6 7 8 91011>>

  /art/test/476-checker-ctor-memory-barrier/
info.txt 1 Tests if we add memory barriers on constructors when needed (i.e when the
  /external/compiler-rt/test/BlocksRuntime/
copyconstructor.C 13 int constructors = 0; variable
36 ++constructors;
44 _version = ++constructors;
75 if (constructors == 0) {
76 printf("No copy constructors!!!\n");
79 if (constructors != destructors) {
80 printf("%d constructors but only %d destructors\n", constructors, destructors);
reference.C 17 int constructors = 0; variable
41 ++constructors;
49 _version = ++constructors;
  /external/clang/test/Modules/Inputs/merge-template-members/
b1.h 3 // Add update record for definition of A<int> and constructors.
b2.h 3 // Add update record for definition of A<int> and constructors.
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/lib/ldscripts/
i386linux.xu 1 /* Script for ld -Ur: link w/out relocation, do create constructors */
28 CONSTRUCTORS
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/lib/ldscripts/
i386linux.xu 1 /* Script for ld -Ur: link w/out relocation, do create constructors */
28 CONSTRUCTORS
  /external/guice/core/test/com/google/inject/
RequireAtInjectOnConstructorsTest.java 42 "1) Explicit @Inject annotations are required on constructors, but "
43 + NoCxtors.class.getName() + " has no constructors annotated with @Inject",
60 "1) Explicit @Inject annotations are required on constructors, but "
61 + NoCxtors.class.getName() + " has no constructors annotated with @Inject",
79 "1) Explicit @Inject annotations are required on constructors, but "
80 + NoCxtors.class.getName() + " has no constructors annotated with @Inject",
103 "1) Explicit @Inject annotations are required on constructors, but "
104 + NoCxtors.class.getName() + " has no constructors annotated with @Inject",
123 "1) Explicit @Inject annotations are required on constructors, but "
124 + NoCxtors.class.getName() + " has no constructors annotated with @Inject"
    [all...]
  /external/llvm/test/Bitcode/
upgrade-global-ctors.ll 4 ; Global constructors should no longer be upgraded when reading bitcode.
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Library/DxeSmmDriverEntryPoint/
DxeSmmDriverEntryPoint.uni 4 // Register driver in SMRAM and wrapper driver's library constructors and entry point.
20 #string STR_MODULE_DESCRIPTION #language en-US "Registers a driver in SMRAM, and wrappers the driver's library constructors and entry point."
  /external/clang/test/Profile/
cxx-structors.cpp 1 // Tests for instrumentation of C++ constructors and destructors.
21 // Profile data for complete constructors and destructors must absent.
  /external/clang/test/SemaCXX/
trivial-constructor.cpp 23 static_assert(__has_trivial_constructor(T5), "All the direct base classes of T5 have trivial constructors!");
30 static_assert(__has_trivial_constructor(T6), "All nonstatic data members of T6 have trivial constructors!");
  /prebuilts/gcc/darwin-x86/x86/x86_64-linux-android-4.9/x86_64-linux-android/lib/ldscripts/
i386linux.xu 1 /* Script for ld -Ur: link w/out relocation, do create constructors */
32 CONSTRUCTORS
  /prebuilts/gcc/linux-x86/x86/x86_64-linux-android-4.9/x86_64-linux-android/lib/ldscripts/
i386linux.xu 1 /* Script for ld -Ur: link w/out relocation, do create constructors */
32 CONSTRUCTORS
  /art/test/956-methodhandles/
expected.txt 7 String constructors done.
  /external/clang/test/Analysis/
base-init.cpp 1 // RUN: %clang_cc1 -analyze -analyzer-checker=core,debug.ExprInspection -analyzer-config c++-inlining=constructors -verify %s
  /external/compiler-rt/test/tsan/Linux/
check_preinit.cc 12 // constructors of the binary which are called after constructors of shared
19 // "volatile" is needed to avoid compiler optimize-out constructors.
  /external/guice/extensions/assistedinject/src/com/google/inject/assistedinject/
AssistedInject.java 29 * When used in tandem with {@link FactoryModuleBuilder}, constructors annotated with
30 * {@code @AssistedInject} indicate that multiple constructors can be injected, each with different
33 * the factory interface, but the parameters do not need to be in the same order. Constructors
38 * <strong>Obsolete Usage:</strong> When used in tandem with {@link FactoryProvider}, constructors
42 * constructors annotated with AssistedInject <b>are not</b> created by Guice and thus receive
  /external/clang/test/CodeGenCXX/
microsoft-abi-structors.cpp 42 // Tests that we can define constructors outside the class (PR12784).
219 namespace constructors { namespace
231 // CHECK: define x86_thiscallcc %"struct.constructors::B"* @"\01??0B@constructors@@QAE@XZ"(%"struct.constructors::B"* returned %this)
232 // CHECK: call x86_thiscallcc %"struct.constructors::A"* @"\01??0A@constructors@@QAE@XZ"(%"struct.constructors::A"* %{{.*}})
241 // CHECK: define x86_thiscallcc %"struct.constructors::C"* @"\01??0C@constructors@@QAE@XZ"(%"struct.constructors::C"* returned %this, i32 %is_most_derived
    [all...]
  /external/javassist/sample/evolve/
VersionManager.java 68 Constructor[] constructors = clazz.getConstructors(); local
69 int n = constructors.length;
72 return constructors[i].newInstance(args);
  /toolchain/binutils/binutils-2.25/ld/
ldctor.h 24 /* List of statements needed to handle constructors */
27 /* Whether the constructors should be sorted. Note that this is
29 CONSTRUCTORS command in the linker script. */
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p2.cpp 3 // constexpr functions and constexpr constructors are implicitly inline.
  /external/r8/src/main/java/com/android/tools/r8/ir/synthetic/
SingleBlockSourceCode.java 40 // Instruction constructors
41 private List<Consumer<IRBuilder>> constructors = new ArrayList<>(); field in class:SingleBlockSourceCode
61 constructors.add(constructor);
107 return constructors.size();
127 return (instructionIndex == constructors.size() - 1) ? instructionIndex : -1;
140 assert constructors.isEmpty();
142 assert !constructors.isEmpty();
147 constructors = null;
177 constructors.get(instructionIndex).accept(builder);
  /external/r8/src/test/examples/shaking12/
keep-rules.txt 11 # Keep the constructors that are used via newInstance.
  /external/skia/src/sksl/
SkSLCPP.h 20 // functions to make GLSL constructors work from C++ code

Completed in 717 milliseconds

1 2 3 4 5 6 7 8 91011>>