HomeSort by relevance Sort by last modified time
    Searched full:initialization (Results 51 - 75 of 5500) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/clang/test/SemaCXX/
aggregate-initialization.cpp 27 NonAggr1 na1 = { 17 }; // expected-error{{no matching constructor for initialization of 'NonAggr1'}}
28 NonAggr2 na2 = { 17 }; // expected-error{{no matching constructor for initialization of 'NonAggr2'}}
29 NonAggr3 na3 = { 17 }; // expected-error{{no matching constructor for initialization of 'NonAggr3'}}
30 NonAggr4 na4 = { 17 }; // expected-error{{no matching constructor for initialization of 'NonAggr4'}}
36 // Vector initialization.
40 // Array initialization.
43 // Struct initialization.
complex-init-list.cpp 5 // of a complex number individually using an initialization list. Basically,
8 // initialization.
decltype.cpp 83 // expected-warning@+3 {{subobject initialization overrides}}
84 // expected-note@+2 {{previous initialization}}
88 // expected-warning@+3 {{subobject initialization overrides}}
89 // expected-note@+2 {{previous initialization}}
93 // expected-warning@+3 {{subobject initialization overrides}}
94 // expected-note@+2 {{previous initialization}}
98 // expected-warning@+3 {{subobject initialization overrides}}
99 // expected-note@+2 {{previous initialization}}
libstdcxx_explicit_init_list_hack.cpp 21 struct { int a, b; std::__debug::vector<int> c; } e[] = { {1, 1} }; // expected-note{{used in initialization here}}
23 decltype(new std::__debug::vector<int>[1]{}) x; // expected-note{{used in initialization here}}
  /external/compiler-rt/test/asan/TestCases/
initialization-nobug.cc 1 // A collection of various initializers which shouldn't trip up initialization
4 // RUN: %clangxx_asan -O0 %s %p/Helpers/initialization-nobug-extra.cc -o %t
6 // RUN: %clangxx_asan -O1 %s %p/Helpers/initialization-nobug-extra.cc -o %t
8 // RUN: %clangxx_asan -O2 %s %p/Helpers/initialization-nobug-extra.cc -o %t
10 // RUN: %clangxx_asan -O3 %s %p/Helpers/initialization-nobug-extra.cc -o %t
  /external/clang/test/Sema/
designated-initializers.c 48 [4 ... 5].y = 2.0, // expected-note 2 {{previous initialization is here}}
49 [4 ... 6] = { .x = 3, .y = 4.0 } // expected-warning 2 {{subobject initialization overrides initialization of other fields within its enclosing subobject}}
132 [0] = (struct X){1, 2}, // expected-note 2 {{previous initialization is here}}
133 [0].c = 3, // expected-warning{{subobject initialization overrides initialization of other fields within its enclosing subobject}}
134 (struct X) {4, 5, 6}, // expected-note{{previous initialization is here}}
135 [1].b = get8(), // expected-warning{{subobject initialization overrides initialization of other fields within its enclosing subobject}}
136 [0].b = 8 // expected-warning{{subobject initialization overrides initialization of other fields within its enclosing subobject}
    [all...]
  /art/test/964-default-iface-init-generated/
info.txt 1 Smali-based tests for interface initialization.
3 This tests that interface initialization order is correct.
  /external/ImageMagick/Magick++/lib/Magick++/
Functions.h 28 // C library initialization routine
34 // C library initialization routine
  /external/clang/test/CXX/class/class.base/class.base.init/
p5-0x.cpp 11 E() : a(1), // expected-note{{previous initialization is here}}
22 F() : a(1), // expected-note{{previous initialization is here}}
  /external/clang/test/CXX/expr/expr.unary/expr.new/
p2-cxx0x.cpp 16 new auto {1,2,3}; // expected-error{{new expression for type 'auto' cannot use list-initialization}}
17 new auto ({1,2,3}); // expected-error{{new expression for type 'auto' cannot use list-initialization}}
  /external/srtp/crypto/include/
prng.h 27 rand_source_func_t rand; /* random source for re-initialization */
44 rand_source_func_t rand; /* random source for re-initialization */
  /external/v8/test/mjsunit/regress/
regress-3138.js 24 // var initialization is intercepted by with scope.
34 // const initialization is not intercepted by with scope.
  /external/curl/tests/data/
test509 26 initialization with memory callbacks and actual usage
  /external/jemalloc/test/unit/
lg_chunk.c 5 * program will fail a debug assertion during initialization and abort (rather
  /external/llvm/include/llvm-c/
Initialization.h 1 /*===-- llvm-c/Initialization.h - Initialization C Interface ------*- C -*-===*\
10 |* This header declares the C interface to LLVM initialization routines, *|
26 * @defgroup LLVMCInitialization Initialization Routines
  /external/tpm2/
_TPM_Init.c 27 // Set initialization state
  /external/valgrind/none/tests/solaris/
resolv.c 1 /* Tests initialization of the resolver library.
  /ndk/tests/device/test-stlport_shared-exception/jni/
init7.cpp 5 // The initialization of a static local variable must be retried if a
  /ndk/tests/device/test-stlport_static-exception/jni/
init7.cpp 5 // The initialization of a static local variable must be retried if a
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue6703c.go 18 var x = T.m // ERROR "initialization loop|depends upon itself"
issue6703d.go 18 var x = T.m(0) // ERROR "initialization loop|depends upon itself"
issue6703e.go 18 var x = T(0).m // ERROR "initialization loop|depends upon itself"
issue6703f.go 18 var x = T(0).m() // ERROR "initialization loop|depends upon itself"
issue6703g.go 20 var x = E.m // ERROR "initialization loop|depends upon itself"
issue6703h.go 20 var x = E.m(E{0}) // ERROR "initialization loop|depends upon itself"

Completed in 7348 milliseconds

1 23 4 5 6 7 8 91011>>