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

1 2 3 4 5 6 7 8 91011>>

  /art/test/096-array-copy-concurrent-gc/
expected.txt 0 Initializing...
  /art/test/033-class-init-deadlock/
expected.txt 2 A initializing...
3 B initializing...
  /art/test/471-uninitialized-locals/
info.txt 2 use values before initializing them.
  /external/clang/test/Sema/
string-init.c 11 char a3[] = u"a"; // expected-error{{initializing char array with wide string literal}}
12 char a4[] = U"a"; // expected-error{{initializing char array with wide string literal}}
13 char a5[] = L"a"; // expected-error{{initializing char array with wide string literal}}
15 wchar_t b1[] = "a"; // expected-error{{initializing wide char array with non-wide string literal}}
16 wchar_t b2[] = u8"a"; // expected-error{{initializing wide char array with non-wide string literal}}
17 wchar_t b3[] = u"a"; // expected-error{{initializing wide char array with incompatible wide string literal}}
18 wchar_t b4[] = U"a"; // expected-error{{initializing wide char array with incompatible wide string literal}}
21 char16_t c1[] = "a"; // expected-error{{initializing wide char array with non-wide string literal}}
22 char16_t c2[] = u8"a"; // expected-error{{initializing wide char array with non-wide string literal}}
24 char16_t c4[] = U"a"; // expected-error{{initializing wide char array with incompatible wide string literal}
    [all...]
initialize-noreturn.c 11 Fn_noret fn2 = &foo; // expected-warning {{incompatible pointer types initializing 'Fn_noret'}}
warn-write-strings.c 4 char* x = "foo"; // expected-warning {{initializing 'char *' with an expression of type 'const char [4]' discards qualifiers}}
block-call.c 16 const int (^CIC) () = IFP; // OK - initializing 'const int (^)()' with an expression of type 'int (^)()'}}
25 int * (^IPCC2) () = IPCC; // expected-error {{incompatible block pointer types initializing 'int *(^)()' with an expression of type 'int *const (^)()'}}
33 int (^IPCC6) (int, char (^CArg) (float)) = IPCC4; // expected-error {{incompatible block pointer types initializing 'int (^)(int, char (^)(float))' with an expression of type 'int (^)(int, char (^)(double))'}}
38 int (^y)() = 3; // expected-error {{invalid block pointer conversion initializing 'int (^)()' with an expression of type 'int'}}
40 int (^z)() = a+4; // expected-error {{invalid block pointer conversion initializing 'int (^)()' with an expression of type 'int'}}
wchar.c 22 WCHAR_T_TYPE t2[] = "x"; // expected-error {{initializing wide char array with non-wide string literal}}
23 char t3[] = L"x"; // expected-error {{initializing char array with wide string literal}}
struct-compat.c 16 struct x {char x;} s = r; // expected-error {{initializing 'struct x' with an expression of incompatible type 'struct x'}}
  /external/clang/test/SemaObjC/
NSString-type.m 5 void (^block)(void) = @"help"; // expected-error {{initializing 'void (^)(void)' with an expression of incompatible type 'NSString *'}}
7 void (^block2)(void) = @"help"; // expected-error {{initializing 'void (^)(void)' with an expression of incompatible type 'NSString *'}}
8 void (^block3)(void) = @"help"; // expected-error {{initializing 'void (^)(void)' with an expression of incompatible type 'NSString *'}}
warn-write-strings.m 4 char* x = "foo"; // expected-warning {{initializing 'char *' with an expression of type 'const char [4]' discards qualifiers}}
arc-nsconsumed-errors.m 6 blk a = ^void (__attribute((ns_consumed)) id arg1, __attribute((ns_consumed)) id arg2){}; // expected-error {{incompatible block pointer types initializing}}
10 blk c = ^void (__attribute((ns_consumed)) id arg1, __attribute((ns_consumed)) id arg2){}; // expected-error {{incompatible block pointer types initializing}}
12 blk d = ^void (id arg1, id arg2) {}; // expected-error {{incompatible block pointer types initializing}}
14 blk1 a1 = ^void (__attribute((ns_consumed)) id arg1, id arg2){}; // expected-error {{incompatible block pointer types initializing}}
16 blk1 b2 = ^void (id arg1, __attribute((ns_consumed)) id arg2){}; // expected-error {{incompatible block pointer types initializing}}
20 blk1 d4 = ^void (id arg1, id arg2) {}; // expected-error {{incompatible block pointer types initializing}}
comptypes-6.m 12 Derived *m = foo(); // expected-warning {{incompatible pointer types initializing 'Derived *' with an expression of type 'Object *'}}
method-lookup-5.m 10 // expected-warning {{ncompatible pointer to integer conversion initializing 'int' with an expression of type 'id'}}
comptypes-10.m 19 NSObject <NSCopying> *Init = bar; // expected-warning {{initializing 'NSObject<NSCopying> *' with an expression of incompatible type 'id<NSCopying>'}}
20 NSObject *Init1 = bar; // expected-warning {{initializing 'NSObject *' with an expression of incompatible type 'id<NSCopying>'}}
33 NSObject <NSCopying> *Init = bar; // expected-warning {{initializing 'NSObject<NSCopying> *' with an expression of incompatible type 'id<NSCopying,NSPROTO,NSPROTO2>'}}
  /external/clang/test/SemaCXX/
string-init.cpp 6 char a3[] = u"a"; // expected-error{{initializing char array with wide string literal}}
7 char a4[] = U"a"; // expected-error{{initializing char array with wide string literal}}
8 char a5[] = L"a"; // expected-error{{initializing char array with wide string literal}}
10 wchar_t b1[] = "a"; // expected-error{{initializing wide char array with non-wide string literal}}
11 wchar_t b2[] = u8"a"; // expected-error{{initializing wide char array with non-wide string literal}}
12 wchar_t b3[] = u"a"; // expected-error{{initializing wide char array with incompatible wide string literal}}
13 wchar_t b4[] = U"a"; // expected-error{{initializing wide char array with incompatible wide string literal}}
16 char16_t c1[] = "a"; // expected-error{{initializing wide char array with non-wide string literal}}
17 char16_t c2[] = u8"a"; // expected-error{{initializing wide char array with non-wide string literal}}
19 char16_t c4[] = U"a"; // expected-error{{initializing wide char array with incompatible wide string literal}
    [all...]
  /external/clang/test/CXX/class/class.union/
p8.cpp 8 int y = 1; // expected-error {{initializing multiple members of union}}
  /external/clang/test/CXX/dcl.dcl/dcl.enum/
p5.cpp 6 // the type of its initializing value:
7 // - If an initializer is specified for an enumerator, the initializing
17 // initializing value has an unspecified integral type.
23 // - Otherwise the type of the initializing value is the same as the type
24 // of the initializing value of the preceding enumerator unless the
  /external/clang/test/CXX/class/class.base/class.base.init/
p5-0x.cpp 12 b(2) { // expected-error{{initializing multiple members of union}}
24 c(3) { // expected-error{{initializing multiple members of union}}
  /external/clang/test/SemaOpenCL/
null_literal.cl 14 constant int* ptr4 = (global void*)0; // expected-error{{initializing '__constant int *' with an expression of type '__global void *' changes address space of pointer}}
21 global int* ptr6 = (local void*)0; // expected-error{{initializing '__global int *' with an expression of type '__local void *' changes address space of pointer}}
vector_literals_invalid.cl 12 int8 d = (int8)(a,(float4)(1)); // expected-error{{initializing 'int' with an expression of incompatible type 'float4'}}
  /art/test/303-verification-stress/
info.txt 2 classes, each one initializing a big array of string in its class initializer.
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-cdtest/
cdtest.dat 5 Initializing Foo(5) "default-foo" with Foo(4)
  /external/clang/test/CXX/special/class.init/class.base.init/
p8-0x.cpp 20 char b = 'x'; // expected-error {{initializing multiple members of union}}
26 b('y') {} // expected-error{{initializing multiple members of union}}
  /external/v8/test/mjsunit/regress/
regress-4388.js 8 // a non-initializing assignments to a {let} variable.
23 // a non-initializing assignments to a {const} variable.

Completed in 464 milliseconds

1 2 3 4 5 6 7 8 91011>>