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

1 23 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
PlatformHookLib.h 4 platform initialization.
21 Performs platform specific initialization required for the CPU to access
27 @retval RETURN_SUCCESS The platform specific initialization succeeded.
28 @retval RETURN_DEVICE_ERROR The platform specific initialization could not be completed.
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Protocol/
NonDiscoverableDevice.h 43 Perform device specific initialization before the device is started
47 @retval EFI_SUCCESS Initialization successful, the device may be used
48 @retval Other Initialization failed, device should not be started
66 // Initialization function for the device
  /external/clang/test/Analysis/
complex-init-list.cpp 4 // Do not crash on initialization to complex numbers.
  /external/clang/test/CXX/class/class.union/class.union.anon/
p4.cpp 4 int x = 0; // expected-note {{previous initialization is here}}
  /external/clang/test/CXX/dcl.decl/dcl.init/
p6.cpp 5 // If a program calls for the default initialization of an object of a
13 const NoUserDefault x1; // expected-error{{default initialization of an object of const type 'const NoUserDefault' without a user-provided default constructor}}
15 const int x3; // expected-error{{default initialization of an object of const type 'const int'}}
21 const struct s0 s1::foo; // expected-error{{default initialization of an object of const type 'const struct s0' without a user-provided default constructor}}
  /external/clang/test/CodeGenCXX/
apple-kext-guard-variable.cpp 8 static int x = foo(); // expected-error {{this initialization requires a guard variable, which the kernel does not support}}
  /external/clang/test/PCH/
thread-local.cpp 13 _Thread_local int a; // expected-error {{thread-local declaration of 'a' with static initialization follows declaration with dynamic initialization}}
15 thread_local int b; // expected-error {{thread-local declaration of 'b' with dynamic initialization follows declaration with static initialization}}
  /kernel/tests/net/test/
ping6_test.sh 3 # Minimal network initialization.
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug13343.go 10 a, b = f() // ERROR "initialization loop|depends upon itself"
bug413.go 11 var i = func() int {a := f(i); return a}() // ERROR "initialization loop|depends upon itself"
issue23093.go 9 var f = func() { f() } // ERROR "initialization loop"
issue6703a.go 16 var x = fx // ERROR "initialization loop|depends upon itself"
issue6703b.go 16 var x = fx() // ERROR "initialization loop|depends upon itself"
  /prebuilts/go/linux-x86/test/fixedbugs/
bug13343.go 10 a, b = f() // ERROR "initialization loop|depends upon itself"
bug413.go 11 var i = func() int {a := f(i); return a}() // ERROR "initialization loop|depends upon itself"
issue23093.go 9 var f = func() { f() } // ERROR "initialization loop"
issue6703a.go 16 var x = fx // ERROR "initialization loop|depends upon itself"
issue6703b.go 16 var x = fx() // ERROR "initialization loop|depends upon itself"
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-mmix/
b-badm.d 6 #error: invalid mmo file: initialization value for .255 is not `Main'
b-post1.s 2 % correspond to a LOP_POST for an initialization of $255 with 4. A
  /external/clang/test/SemaCXX/
uninitialized.cpp 23 int a = a; // no-warning: used to signal intended lack of initialization.
24 int b = b + 1; // expected-warning {{variable 'b' is uninitialized when used within its own initialization}}
25 int c = (c + c); // expected-warning 2 {{variable 'c' is uninitialized when used within its own initialization}}
26 int e = static_cast<long>(e) + 1; // expected-warning {{variable 'e' is uninitialized when used within its own initialization}}
27 int f = foo(f); // expected-warning {{variable 'f' is uninitialized when used within its own initialization}}
37 int l = k ? l : l; // expected-warning 2{{variable 'l' is uninitialized when used within its own initialization}}
38 int m = 1 + (k ? m : m); // expected-warning 2{{variable 'm' is uninitialized when used within its own initialization}}
39 int n = -n; // expected-warning {{variable 'n' is uninitialized when used within its own initialization}}
40 int o = std::move(o); // expected-warning {{variable 'o' is uninitialized when used within its own initialization}}
41 const int p = std::move(p); // expected-warning {{variable 'p' is uninitialized when used within its own initialization}}
    [all...]
  /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...]
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/
ForStmt.java 51 * <li><i>initialization</i> is a list of expressions.
71 private NodeList<Expression> initialization; field in class:ForStmt
85 public ForStmt(final NodeList<Expression> initialization, final Expression compare, final NodeList<Expression> update, final Statement body) {
86 this(null, initialization, compare, update, body);
93 public ForStmt(TokenRange tokenRange, NodeList<Expression> initialization, Expression compare, NodeList<Expression> update, Statement body) {
95 setInitialization(initialization);
126 return initialization;
168 public ForStmt setInitialization(final NodeList<Expression> initialization) {
169 assertNotNull(initialization);
170 if (initialization == this.initialization)
    [all...]
  /system/chre/core/include/chre/core/
init.h 23 * Performs initialization of CHRE. The CHRE is designed to be portable and as
24 * such the order of initialization must be as follows:
26 * 1) [optional] Perform platform initialization if needed.
27 * 2) [required] Perform CHRE initialization by invoking this function. All
31 * platform-specific code to be invoked as part of CHRE initialization. (as an
33 * directory must be available). If any platform specific initialization is

Completed in 1022 milliseconds

1 23 4 5 6 7 8 91011>>