OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:uninitialized
(Results
1 - 25
of
1221
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/e2fsprogs/tests/m_uninit/
script
1
DESCRIPTION="
uninitialized
group feature"
/external/clang/test/SemaCXX/
uninit-variables-conditional.cpp
1
// RUN: %clang_cc1 -fsyntax-only -Wconditional-
uninitialized
-fsyntax-only %s -verify
14
// This case flags a false positive under -Wconditional-
uninitialized
because
22
return x; // expected-warning {{variable 'x' may be
uninitialized
when used here}}
uninitialized.cpp
9
//
uninitialized
.
11
int b = b + 1; // expected-warning {{variable 'b' is
uninitialized
when used within its own initialization}}
12
int c = (c + c); // expected-warning 2 {{variable 'c' is
uninitialized
when used within its own initialization}}
14
int d = ({ d + d ;}); // expected-warning {{variable 'd' is
uninitialized
when used within its own initialization}}
16
int e = static_cast<long>(e) + 1; // expected-warning {{variable 'e' is
uninitialized
when used within its own initialization}}
17
int f = foo(f); // expected-warning {{variable 'f' is
uninitialized
when used within its own initialization}}
32
S(bool (*)[1]) : x(x) {} // expected-warning {{field is
uninitialized
when used here}}
33
S(bool (*)[2]) : x(x + 1) {} // expected-warning {{field is
uninitialized
when used here}}
34
S(bool (*)[3]) : x(x + x) {} // expected-warning {{field is
uninitialized
when used here}}
35
S(bool (*)[4]) : x(static_cast<long>(x) + 1) {} // expected-warning {{field is
uninitialized
when used here}
[
all
...]
defaulted-ctor-loop.cpp
12
: b(b) // expected-warning{{field is
uninitialized
}}
uninit-variables.cpp
30
(void)typeid(*a); // expected-warning{{variable 'a' is
uninitialized
when used here }}
58
return x; // expected-warning{{variable 'x' is
uninitialized
when used here}}
66
return a; // expected-warning{{variable 'a' is
uninitialized
when used here}}
91
// Don't warn about
uninitialized
variables in unreachable code.
/cts/tools/signature-tools/src/signature/model/impl/
Uninitialized.java
37
public class
Uninitialized
{
39
private static final Object
UNINITIALIZED
;
42
UNINITIALIZED
= Proxy.newProxyInstance(
Uninitialized
.class
51
return "
Uninitialized
";
61
return (T)
UNINITIALIZED
;
65
return o !=
UNINITIALIZED
&& o != Kind.
UNINITIALIZED
;
SigExecutableMember.java
35
private List<IParameter> parameters =
Uninitialized
.unset();
36
private Set<ITypeReference> exceptions =
Uninitialized
.unset();
37
private Set<Modifier> modifiers =
Uninitialized
.unset();
38
private List<ITypeVariableDefinition> typeParameters =
Uninitialized
40
private IClassDefinition declaringClass =
Uninitialized
.unset();
SigClassDefinition.java
41
private Kind kind = Kind.
UNINITIALIZED
;
42
private ITypeReference superClass =
Uninitialized
.unset();
43
private Set<ITypeReference> interfaces =
Uninitialized
.unset();
44
private Set<Modifier> modifiers =
Uninitialized
.unset();
45
private Set<IMethod> methods =
Uninitialized
.unset();
46
private Set<IConstructor> constructors =
Uninitialized
.unset();
47
private Set<IClassDefinition> innerClasses =
Uninitialized
.unset();
48
private Set<IAnnotationField> annotationFields =
Uninitialized
.unset();
49
private Set<IField> fields =
Uninitialized
.unset();
50
private Set<IEnumConstant> enumConstants =
Uninitialized
.unset()
[
all
...]
/external/valgrind/main/drd/tests/
pth_uninitialized_cond.c
1
/* Test program to verify whether DRD only complains about
uninitialized
20
fprintf(stderr, "
Uninitialized
condition variable.\n");
pth_uninitialized_cond.stderr.exp
3
Uninitialized
condition variable.
/external/v8/src/
builtins.h
71
V(ArgumentsAdaptorTrampoline, BUILTIN,
UNINITIALIZED
, \
73
V(JSConstructCall, BUILTIN,
UNINITIALIZED
, \
75
V(JSConstructStubCountdown, BUILTIN,
UNINITIALIZED
, \
77
V(JSConstructStubGeneric, BUILTIN,
UNINITIALIZED
, \
79
V(JSConstructStubApi, BUILTIN,
UNINITIALIZED
, \
81
V(JSEntryTrampoline, BUILTIN,
UNINITIALIZED
, \
83
V(JSConstructEntryTrampoline, BUILTIN,
UNINITIALIZED
, \
85
V(LazyCompile, BUILTIN,
UNINITIALIZED
, \
87
V(LazyRecompile, BUILTIN,
UNINITIALIZED
, \
89
V(NotifyDeoptimized, BUILTIN,
UNINITIALIZED
, \
[
all
...]
/external/clang/test/Analysis/
uninit-vals-ps-region.m
20
// Test
uninitialized
value due to part of the structure being
uninitialized
.
51
test_uninit_struct_arg_aux(x); // expected-warning{{Passed-by-value struct argument contains
uninitialized
data (e.g., field: 'x')}}
59
[o passVal:x]; // expected-warning{{Passed-by-value struct argument contains
uninitialized
data (e.g., field: 'x')}}
62
// Test case from <rdar://problem/7780304>. That shows an
uninitialized
value
67
b.x |= 1; // expected-warning{{The left expression of the compound assignment is an
uninitialized
value. The computed value will also be garbage}}
71
// The flip side of PR10163 -- float arrays that are actually
uninitialized
76
test_PR10163(x[1]); // expected-warning{{
uninitialized
value}}
/external/clang/test/Sema/
uninit-variables-vectors.c
10
x = _mm_xor_ps(x,x); // expected-warning {{variable 'x' is
uninitialized
when used here}}
11
y = _mm_xor_ps(y,y); // expected-warning {{variable 'y' is
uninitialized
when used here}}
12
z = _mm_xor_ps(z,z); // expected-warning {{variable 'z' is
uninitialized
when used here}}
13
w = _mm_xor_ps(w,w); // expected-warning {{variable 'w' is
uninitialized
when used here}}
uninit-variables.c
1
// RUN: %clang_cc1 -fsyntax-only -Wuninitialized -Wconditional-
uninitialized
-fsyntax-only -fblocks %s -verify
5
return x; // expected-warning{{variable 'x' is
uninitialized
when used here}}
21
++x; // expected-warning{{variable 'x' is
uninitialized
when used here}}
27
x = y; // expected-warning{{variable 'y' is
uninitialized
when used here}}
33
x += 2; // expected-warning{{variable 'x' is
uninitialized
when used here}}
41
return x; // expected-warning{{variable 'x' may be
uninitialized
when used here}}
60
return x; // expected-warning{{variable 'x' may be
uninitialized
when used here}}
68
return x; // expected-warning{{variable 'x' may be
uninitialized
when used here}}
76
return x; // expected-warning{{variable 'x' may be
uninitialized
when used here}}
80
for (unsigned i ; n ; ++i) ; // expected-warning{{variable 'i' may be
uninitialized
when used here}} expected-note{{variable 'i' is declared here}} expected-note{{add initialization (…)
[
all
...]
/external/e2fsprogs/tests/f_uninit_last_uninit/
expect.1
1
Last group block bitmap
uninitialized
. Fix? yes
/external/llvm/test/FrontendC/
2002-01-24-ComplexSpaceInType.c
4
// %Array =
uninitialized
global [10 x %complex int]
/external/llvm/test/Transforms/Mem2Reg/
2002-03-28-UninitializedVal.ll
0
;
Uninitialized
values are not handled correctly.
/cts/tools/signature-tools/src/signature/model/
Kind.java
24
"enum"),
UNINITIALIZED
("
UNINITIALIZED
");
/external/clang/include/clang/Basic/
DiagnosticAnalysisKinds.td
12
// CHECK: use of
uninitialized
values
13
def warn_uninit_val : Warning<"use of
uninitialized
variable">;
/external/webkit/LayoutTests/http/tests/appcache/resources/
fail-on-update.php
14
return "
Uninitialized
";
30
} else if ($state == "
Uninitialized
") {
/ndk/sources/host-tools/sed-4.2.1/lib/
memchr.valgrind
1
# Suppress a valgrind message about use of
uninitialized
memory in memchr().
/cts/tools/dx-tests/src/dxc/junit/verify/t482_4/
Test_t482_4.java
28
* @title attempt to access
uninitialized
int
41
* @title attempt to access
uninitialized
double
54
* @title attempt to access
uninitialized
reference
/external/e2fsprogs/lib/ext2fs/
ext3_extents.h
83
* particular extent is an initialized extent or an
uninitialized
(i.e.
86
*
uninitialized
extent.
88
*
uninitialized
one. In other words, if MSB of ee_len is set, it is an
89
*
uninitialized
extent with only one special scenario when ee_len = 0x8000.
90
* In this case we can not have an
uninitialized
extent of zero length and
94
* extent is 2^15 (32768) and in an *
uninitialized
* extent is 2^15-1 (32767).
/external/skia/src/images/
SkMovie.cpp
11
fInfo.fDuration = UNINITIALIZED_MSEC; //
uninitialized
12
fCurrTime = UNINITIALIZED_MSEC; //
uninitialized
64
if (fCurrTime == UNINITIALIZED_MSEC) //
uninitialized
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ObjCMessage.h
68
assert(isValid() && "This ObjCMessage is
uninitialized
!");
80
assert(isValid() && "This ObjCMessage is
uninitialized
!");
90
assert(isValid() && "This ObjCMessage is
uninitialized
!");
103
assert(isValid() && "This ObjCMessage is
uninitialized
!");
110
assert(isValid() && "This ObjCMessage is
uninitialized
!");
115
assert(isValid() && "This ObjCMessage is
uninitialized
!");
122
assert(isValid() && "This ObjCMessage is
uninitialized
!");
131
assert(isValid() && "This ObjCMessage is
uninitialized
!");
142
assert(isValid() && "This ObjCMessage is
uninitialized
!");
Completed in 643 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>