OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:variable
(Results
426 - 450
of
15203
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/external/clang/test/CodeGenObjCXX/
block-var-layout.mm
42
// CHECK: block
variable
layout for block: 0x01, 0x35, 0x10, 0x00
70
// CHECK: block
variable
layout for block: 0x01, 0x35, 0x30, 0x00
85
// CHECK: block
variable
layout for block: 0x01, 0x41, 0x11, 0x11, 0x00
123
// CHECK: block
variable
layout for block: 0x01, 0x41, 0x11, 0x12, 0x00
141
// CHECK: block
variable
layout for block: 0x01, 0x33, 0x00
154
// CHECK: block
variable
layout for block: 0x01, 0x00
/external/clang/test/OpenMP/
parallel_firstprivate_messages.cpp
62
#pragma omp parallel firstprivate (argc > 0 ? argv[1] : argv[2]) // expected-error {{expected
variable
name}}
65
#pragma omp parallel firstprivate (a, b, c, d, f) // expected-error {{firstprivate
variable
with incomplete type 'S1'}}
66
#pragma omp parallel firstprivate (argv[1]) // expected-error {{expected
variable
name}}
72
#pragma omp parallel firstprivate(e, g) // expected-error 2 {{firstprivate
variable
must have an accessible, unambiguous copy constructor}}
73
#pragma omp parallel firstprivate(h) // expected-error {{threadprivate or thread local
variable
cannot be firstprivate}}
74
#pragma omp parallel private(i), firstprivate(i) // expected-error {{private
variable
cannot be firstprivate}} expected-note{{defined as private}}
parallel_for_copyin_messages.cpp
70
#pragma omp parallel for copyin(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected
variable
name}}
73
#pragma omp parallel for copyin(l) // expected-error {{copyin
variable
must have an accessible, unambiguous copy assignment operator}}
79
#pragma omp parallel for copyin(argv[1]) // expected-error {{expected
variable
name}}
82
#pragma omp parallel for copyin(i) // expected-error {{copyin
variable
must be threadprivate}}
85
#pragma omp parallel for copyin(m) // expected-error {{copyin
variable
must have an accessible, unambiguous copy assignment operator}}
88
#pragma omp parallel for copyin(ST < int > ::s) // expected-error {{copyin
variable
must be threadprivate}}
parallel_for_reduction_messages.cpp
99
#pragma omp parallel for reduction(& : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{
variable
of type 'float' is not valid for specified reduction operation}}
102
#pragma omp parallel for reduction(| : argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{
variable
of type 'float' is not valid for specified reduction operation}}
105
#pragma omp parallel for reduction(|| : argc ? i : argc) // expected-error 2 {{expected
variable
name}}
117
#pragma omp parallel for reduction(+ : a, b, c, d, f) // expected-error {{reduction
variable
with incomplete type 'S1'}} expected-error 3 {{const-qualified
variable
cannot be reduction}}
120
#pragma omp parallel for reduction(min : a, b, c, d, f) // expected-error {{reduction
variable
with incomplete type 'S1'}} expected-error 2 {{arguments of OpenMP clause 'reduction' for 'min' or 'max' must be of arithmetic type}} expected-error 3 {{const-qualified
variable
cannot be reduction}}
123
#pragma omp parallel for reduction(max : qa[1]) // expected-error 2 {{expected
variable
name}}
126
#pragma omp parallel for reduction(+ : ba) // expected-error {{a reduction
variable
with array type 'const S2 [5]'}}
129
#pragma omp parallel for reduction(* : ca) // expected-error {{a reduction
variable
with array type 'const S3 [5]'}
[
all
...]
simd_reduction_messages.cpp
99
#pragma omp simd reduction(& : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{
variable
of type 'float' is not valid for specified reduction operation}}
102
#pragma omp simd reduction(| : argc, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{
variable
of type 'float' is not valid for specified reduction operation}}
105
#pragma omp simd reduction(|| : argc ? i : argc) // expected-error 2 {{expected
variable
name}}
117
#pragma omp simd reduction(+ : a, b, c, d, f) // expected-error {{reduction
variable
with incomplete type 'S1'}} expected-error 3 {{const-qualified
variable
cannot be reduction}}
120
#pragma omp simd reduction(min : a, b, c, d, f) // expected-error {{reduction
variable
with incomplete type 'S1'}} expected-error 2 {{arguments of OpenMP clause 'reduction' for 'min' or 'max' must be of arithmetic type}} expected-error 3 {{const-qualified
variable
cannot be reduction}}
123
#pragma omp simd reduction(max : qa[1]) // expected-error 2 {{expected
variable
name}}
126
#pragma omp simd reduction(+ : ba) // expected-error {{a reduction
variable
with array type 'const S2 [5]'}}
129
#pragma omp simd reduction(* : ca) // expected-error {{a reduction
variable
with array type 'const S3 [5]'}
[
all
...]
/external/clang/test/Sema/
inline.c
15
(void)staticStruct.x; // expected-warning{{static
variable
'staticStruct' is used in an inline function with external linkage}}
16
return staticVar; // expected-warning{{static
variable
'staticVar' is used in an inline function with external linkage}}
21
return staticVar; // expected-warning{{static
variable
'staticVar' is used in an inline function with external linkage}}
71
return staticVar; // expected-warning{{static
variable
'staticVar' is used in an inline function with external linkage}}
78
static int y = 0; // expected-warning {{non-constant static local
variable
in inline function may be different in different files}}
90
return staticVar; // expected-warning{{static
variable
'staticVar' is used in an inline function with external linkage}}
/external/clang/test/SemaObjCXX/
arc-0x.mm
41
(void) [p] {}; // expected-error {{cannot capture __autoreleasing
variable
in a lambda by copy}}
42
(void) [=] { (void) p; }; // expected-error {{cannot capture __autoreleasing
variable
in a lambda by copy}}
48
(void) [p] {}; // expected-error {{cannot capture __autoreleasing
variable
in a lambda by copy}}
49
(void) [=] { (void) p; }; // expected-error {{cannot capture __autoreleasing
variable
in a lambda by copy}}
55
(void) ^{ (void) v; }; // expected-error {{cannot capture __autoreleasing
variable
in a block}}
60
// warn when initializing an 'auto'
variable
with an 'id' initializer expression
/external/deqp/doc/testspecs/GLES31/
functional.compute.shared_var.txt
19
Shader Shared
Variable
Tests
26
+ Single shared
variable
42
Basic type test cases declare a single shared
variable
of the appropriate
50
shared
variable
. A shared memory barrier is issued, and after that all work
58
work group first invocation initializes shared
variable
to a certain value.
61
invocation per work group writes out the final shared
variable
value.
/external/deqp/framework/randomshaders/
rsgVariable.cpp
21
* \brief
Variable
class.
31
Variable
::
Variable
(const VariableType& type, Storage storage, const char* name)
39
Variable
::~
Variable
(void)
43
void
Variable
::tokenizeDeclaration (GeneratorState& state, TokenStream& str) const
/external/icu/icu4c/source/layout/
ContextualSubstSubtables.h
78
// NOTE: Multiple
variable
size arrays!!
107
// NOTE: Multiple
variable
size arrays!!
121
// NOTE: Multiple
variable
size arrays!!
157
// NOTE: Multiple
variable
size arrays!!
191
// NOTE: Multiple
variable
size arrays!!
208
// NOTE: Multiple
variable
size arrays!!
/external/lldb/test/functionalities/data-formatter/data-formatter-disabling/
TestDataFormatterDisabling.py
68
self.expect("frame
variable
numbers",
71
self.expect('frame
variable
string1', substrs = ['hello world'])
76
self.expect("frame
variable
numbers", matching=False,
79
self.expect('frame
variable
string1', matching=False, substrs = ['hello world'])
88
self.expect("frame
variable
numbers",
91
self.expect('frame
variable
string1', substrs = ['hello world'])
/external/lldb/test/lang/objc/hidden-ivars/
TestHiddenIvars.py
97
self.expect("frame
variable
j->_definer->foo", VARIABLES_DISPLAYED_CORRECTLY,
100
self.expect("frame
variable
j->_definer->bar", VARIABLES_DISPLAYED_CORRECTLY,
103
self.expect("frame
variable
*j->_definer", VARIABLES_DISPLAYED_CORRECTLY,
106
self.expect("frame
variable
k->foo", VARIABLES_DISPLAYED_CORRECTLY,
109
self.expect("frame
variable
k->bar", VARIABLES_DISPLAYED_CORRECTLY,
112
self.expect("frame
variable
*k", VARIABLES_DISPLAYED_CORRECTLY,
/external/llvm/test/CodeGen/SystemZ/
la-01.ll
20
; Test a load of a fully-aligned external
variable
.
28
; Test a load of a fully-aligned local
variable
.
36
; Test a load of a 2-byte-aligned external
variable
.
44
; Test a load of a 2-byte-aligned local
variable
.
52
; Test a load of an unaligned external
variable
, which must go via the GOT.
60
; Test a load of an unaligned local
variable
, which must go via the GOT.
/external/mesa3d/scons/
source_list.py
8
non-nested
variable
expansion
34
self._error('non-
variable
dereference')
38
self._error('unterminated
variable
dereference')
43
"""Perform
variable
expansion."""
59
"""Parse a
variable
definition line."""
63
self._error('not a
variable
definition')
/external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
VarInsnNode.java
37
* A node that represents a local
variable
instruction. A local
variable
39
*
variable
.
47
*
variable
.
54
* @param opcode the opcode of the local
variable
instruction to be
58
* is the index of a local
variable
.
/external/proguard/src/proguard/optimize/
ParameterShrinker.java
89
// Get the total size of the local
variable
frame.
100
// Create a
variable
map.
108
// Is the
variable
required as a parameter?
111
// Keep the
variable
as a parameter.
121
// Shift the
variable
to the unused parameter block,
122
// in case it is still used as a
variable
.
/external/valgrind/main/coregrind/
m_addrinfo.c
50
/* -- Perhaps the
variable
type/location data describes it? -- */
51
ai->Addr.
Variable
.descr1
54
ai->Addr.
Variable
.descr2
58
(void) VG_(get_data_description)( ai->Addr.
Variable
.descr1,
59
ai->Addr.
Variable
.descr2, a );
66
if (0 == VG_(strlen)( VG_(indexXA)( ai->Addr.
Variable
.descr1, 0 ))) {
67
VG_(deleteXA)( ai->Addr.
Variable
.descr1 );
68
ai->Addr.
Variable
.descr1 = NULL;
70
if (0 == VG_(strlen)( VG_(indexXA)( ai->Addr.
Variable
.descr2, 0 ))) {
71
VG_(deleteXA)( ai->Addr.
Variable
.descr2 )
[
all
...]
/dalvik/dx/src/com/android/dx/cf/attrib/
BaseLocalVariables.java
27
/** {@code non-null;} list of local
variable
entries */
34
* @param localVariables {@code non-null;} list of local
variable
entries
58
* Gets the list of "local
variable
" entries associated with this instance.
/developers/build/prebuilts/gradle/MediaRouter/Application/src/main/res/values/
strings.xml
29
<string name="variable_volume_basic_route_name">
Variable
Volume (Basic) Remote Playback Route</string>
30
<string name="variable_volume_queuing_route_name">
Variable
Volume (Queuing) Remote Playback Route</string>
31
<string name="variable_volume_session_route_name">
Variable
Volume (Session) Remote Playback Route</string>
/developers/samples/android/media/MediaRouter/Application/src/main/res/values/
strings.xml
29
<string name="variable_volume_basic_route_name">
Variable
Volume (Basic) Remote Playback Route</string>
30
<string name="variable_volume_queuing_route_name">
Variable
Volume (Queuing) Remote Playback Route</string>
31
<string name="variable_volume_session_route_name">
Variable
Volume (Session) Remote Playback Route</string>
/development/samples/browseable/MediaRouter/res/values/
strings.xml
29
<string name="variable_volume_basic_route_name">
Variable
Volume (Basic) Remote Playback Route</string>
30
<string name="variable_volume_queuing_route_name">
Variable
Volume (Queuing) Remote Playback Route</string>
31
<string name="variable_volume_session_route_name">
Variable
Volume (Session) Remote Playback Route</string>
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
t018llstar.g
28
:
variable
35
variable
61
variable
*
/external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/LL-star/
simplec.g
21
:
variable
28
variable
57
variable
*
/external/antlr/antlr-3.4/runtime/Python/tests/
t018llstar.g
29
:
variable
36
variable
62
variable
*
/external/chromium_org/chrome/browser/policy/
policy_path_parser_linux.cc
20
// Replaces all
variable
occurrences in the policy string with the respective
41
LOG(ERROR) << "Username
variable
can not be resolved. ";
50
LOG(ERROR) << "Machine name
variable
can not be resolved.";
Completed in 1401 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>