HomeSort by relevance Sort by last modified time
    Searched full:variable (Results 401 - 425 of 15203) sorted by null

<<11121314151617181920>>

  /external/clang/test/CodeGenObjC/
arc-captured-block-var-layout.m 36 // Inline instruction for block variable layout: 0x0320 (3 strong 2 byref)
37 // CHECK-LP64: Inline instruction for block variable layout: 0x0320
48 // Inline instruction for block variable layout: 0x0331 (3 strong 3 byref 1 weak)
49 // CHECK-LP64: Inline instruction for block variable layout: 0x0331
70 // Inline instruction for block variable layout: 0x0401 (4 strong 0 byref 1 weak)
71 // CHECK-LP64: Inline instruction for block variable layout: 0x0401
112 // CHECK-LP64: block variable layout: BL_BYREF:1, BL_NON_OBJECT_WORD:1, BL_UNRETAINED:1, BL_NON_OBJECT_WORD:1, BL_UNRETAINED:1, BL_OPERATOR:0
127 // CHECK-LP64: block variable layout: BL_UNRETAINED:4, BL_OPERATOR:0
142 // CHECK-LP64: block variable layout: BL_NON_OBJECT_WORD:1, BL_UNRETAINED:4, BL_OPERATOR:0
157 // CHECK-LP64: block variable layout: BL_OPERATOR:
    [all...]
  /external/clang/test/OpenMP/
parallel_for_firstprivate_messages.cpp 84 #pragma omp parallel for firstprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
93 #pragma omp parallel for firstprivate(a, b) // expected-error {{firstprivate variable with incomplete type 'S1'}}
96 #pragma omp parallel for firstprivate(argv[1]) // expected-error {{expected variable name}}
99 #pragma omp parallel for firstprivate(e, g) // expected-error 2 {{firstprivate variable must have an accessible, unambiguous copy constructor}}
102 #pragma omp parallel for firstprivate(h) // expected-error {{threadprivate or thread local variable cannot be firstprivate}}
126 #pragma omp parallel for lastprivate(g) firstprivate(g) // expected-error {{firstprivate variable must have an accessible, unambiguous copy constructor}}
131 for (i = 0; i < argc; ++i) // expected-error {{loop iteration variable in the associated loop of 'omp parallel for' directive may not be firstprivate, predetermined as private}}
135 for (i = 0; i < argc; ++i) // expected-error {{loop iteration variable in the associated loop of 'omp parallel for' directive may not be firstprivate, predetermined as private}}
164 #pragma omp parallel for firstprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
173 #pragma omp parallel for firstprivate(a, b, c, d, f) // expected-error {{firstprivate variable with incomplete type 'S1'}
    [all...]
for_reduction_messages.cpp 107 #pragma omp for reduction(& : argc // expected-error {{expected ')'}} expected-note {{to match this '('}} expected-error {{variable of type 'float' is not valid for specified reduction operation}}
111 #pragma omp 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}}
115 #pragma omp for reduction(|| : argc ? i : argc) // expected-error 2 {{expected variable name}}
131 #pragma omp for reduction(+ : a, b, c, d, f) // expected-error {{reduction variable with incomplete type 'S1'}} expected-error 3 {{const-qualified variable cannot be reduction}}
135 #pragma omp 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}}
139 #pragma omp for reduction(max : qa[1]) // expected-error 2 {{expected variable name}}
143 #pragma omp for reduction(+ : ba) // expected-error {{a reduction variable with array type 'const S2 [5]'}}
147 #pragma omp for reduction(* : ca) // expected-error {{a reduction variable with array type 'const S3 [5]'}
    [all...]
  /external/lldb/test/functionalities/data-formatter/data-formatter-python-synth/
TestDataFormatterPythonSynth.py 74 # print the f00_1 variable without a synth
75 self.expect("frame variable f00_1",
85 self.expect("frame variable f00_1",
91 self.expect("frame variable f00_1", matching=False,
95 self.expect('frame variable f00_1.fake_a',
99 self.expect('frame variable f00_1[1]',
104 self.expect('frame variable f00_1',
107 self.expect('frame variable f00_1',
116 self.expect("frame variable f00_1",
123 self.expect("frame variable f00_1"
    [all...]
  /external/clang/test/Analysis/
dead-stores.c 1 // RUN: %clang_cc1 -Wunused-variable -analyze -analyzer-checker=core,deadcode.DeadStores -fblocks -verify -Wno-unreachable-code -analyzer-opt-analyze-nested-blocks %s
2 // RUN: %clang_cc1 -Wunused-variable -analyze -analyzer-checker=core,deadcode.DeadStores -analyzer-store=region -analyzer-constraints=range -fblocks -verify -Wno-unreachable-code -analyzer-opt-analyze-nested-blocks %s
5 int k, y; // expected-warning{{unused variable 'k'}} expected-warning{{unused variable 'y'}}
7 long idx=abc+3*5; // expected-warning {{never read}} expected-warning{{unused variable 'idx'}}
12 char *d = b+1; // expected-warning {{never read}} expected-warning{{unused variable 'd'}}
40 int *p = &x; // expected-warning{{never read}} expected-warning{{unused variable 'p'}}
108 int x = y; // expected-warning{{unused variable 'x'}}
148 int z[count]; // expected-warning{{unused variable 'z'}}
403 int shouldLog = (argc > 1); // expected-warning{{Value stored to 'shouldLog' during its initialization is never read}} expected-warning{{unused variable 'shouldLog'}
    [all...]
  /bionic/tests/
unistd_test.cpp 243 ASSERT_EQ(0, setenv("test-variable", "hello", 1));
244 ASSERT_STREQ("hello", getenv("test-variable"));
245 ASSERT_EQ(0, unsetenv("test-variable"));
246 ASSERT_TRUE(getenv("test-variable") == NULL);
274 ASSERT_EQ(0, unsetenv("test-variable"));
281 EXPECT_EQ(0, setenv("test-variable", a, 0));
282 EXPECT_STREQ(a, getenv("test-variable"));
285 EXPECT_EQ(0, setenv("test-variable", b, 0));
286 EXPECT_STREQ(a, getenv("test-variable"));
289 EXPECT_EQ(0, setenv("test-variable", c, 1))
    [all...]
  /external/lldb/source/Core/
ValueObjectVariable.cpp 27 #include "lldb/Symbol/Variable.h"
48 // Do not attempt to construct one of these objects with no variable!
121 Variable *variable = m_variable_sp.get(); local
122 DWARFExpression &expr = variable->LocationExpression();
124 if (variable->GetLocationIsConstantValueData())
126 // expr doesn't contain DWARF bytes, it contains the constant variable
129 m_value.SetContext(Value::eContextTypeVariable, variable);
150 variable->CalculateSymbolContext (&sc);
158 m_value.SetContext(Value::eContextTypeVariable, variable);
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
util.cpp 289 VarT variable; local
290 variable.name = name.c_str();
291 variable.arraySize = static_cast<unsigned int>(type.getArraySize());
295 variable.type = GLVariableType(type);
296 variable.precision = GLVariablePrecision(type);
301 variable.type = GL_STRUCT_ANGLEX;
302 variable.structName = structure->name().c_str();
309 traverse(*field->type(), field->name(), &variable.fields);
313 visitVariable(&variable);
316 output->push_back(variable);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
loop_analysis.h 74 * Loop whose variable state is being tracked by this structure
165 /** The variable in question. */
168 /** Is the variable read in the loop before it is written? */
174 /** Is there an assignment to the variable that is conditional? */
177 /** Reference to the first assignment to the variable in the loop body. */
180 /** Number of assignments to the variable in the loop body. */
188 * is a basic loop induction variable.
191 * then \c var is a basic loop induction variable.
209 * one assignment of the variable.
234 * Get the loop variable state data for a particular loo
    [all...]
lower_if_to_cond_assign.cpp 124 /* If the LHS of the assignment is a condition variable that was
126 * the variable.
190 /* Store the condition to a variable. Move all of the instructions from
191 * the then-clause of the if-statement. Use the condition variable as a
210 /* Add the new condition variable to the hash table. This allows us to
211 * find this variable when lowering other (enclosing) if-statements.
216 * condition to a variable. Move all of the instructions from the
217 * else-clause if the if-statement. Use the (inverse) condition variable
241 /* Add the new condition variable to the hash table. This allows us to
242 * find this variable when lowering other (enclosing) if-statements
    [all...]
  /external/lldb/source/Symbol/
Variable.cpp 1 //===-- Variable.cpp --------------------------------------------*- C++ -*-===//
10 #include "lldb/Symbol/Variable.h"
33 // Variable constructor
35 Variable::Variable
39 const char *mangled, // The mangled variable name for variables in namespaces
64 Variable::~Variable()
70 Variable::GetName() const
78 Variable::NameMatches (const RegularExpression& regex) cons
690 Variable *variable = variable_list->GetVariableAtIndex(i).get(); local
835 Variable *variable = variable_list->GetVariableAtIndex(i).get(); local
    [all...]
  /external/mesa3d/src/glsl/
loop_analysis.h 74 * Loop whose variable state is being tracked by this structure
165 /** The variable in question. */
168 /** Is the variable read in the loop before it is written? */
174 /** Is there an assignment to the variable that is conditional? */
177 /** Reference to the first assignment to the variable in the loop body. */
180 /** Number of assignments to the variable in the loop body. */
188 * is a basic loop induction variable.
191 * then \c var is a basic loop induction variable.
209 * one assignment of the variable.
234 * Get the loop variable state data for a particular loo
    [all...]
lower_if_to_cond_assign.cpp 124 /* If the LHS of the assignment is a condition variable that was
126 * the variable.
190 /* Store the condition to a variable. Move all of the instructions from
191 * the then-clause of the if-statement. Use the condition variable as a
210 /* Add the new condition variable to the hash table. This allows us to
211 * find this variable when lowering other (enclosing) if-statements.
216 * condition to a variable. Move all of the instructions from the
217 * else-clause if the if-statement. Use the (inverse) condition variable
241 /* Add the new condition variable to the hash table. This allows us to
242 * find this variable when lowering other (enclosing) if-statements
    [all...]
  /external/protobuf/gtest/test/
gtest_break_on_failure_unittest.py 35 either the GTEST_BREAK_ON_FAILURE environment variable or the
52 # The environment variable for enabling/disabling the break-on-failure mode.
58 # The environment variable for enabling/disabling the throw-on-failure mode.
61 # The environment variable for enabling/disabling the catch-exceptions mode.
73 """Sets an environment variable to a given value; unsets it when the
97 """Tests using the GTEST_BREAK_ON_FAILURE environment variable or
108 variable; None if the variable should be unset.
155 """Tests using the GTEST_BREAK_ON_FAILURE environment variable."""
175 """Tests that the flag overrides the environment variable.""
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest_break_on_failure_unittest.py 35 either the GTEST_BREAK_ON_FAILURE environment variable or the
52 # The environment variable for enabling/disabling the break-on-failure mode.
58 # The environment variable for enabling/disabling the throw-on-failure mode.
61 # The environment variable for enabling/disabling the catch-exceptions mode.
76 """Sets an environment variable to a given value; unsets it when the
100 """Tests using the GTEST_BREAK_ON_FAILURE environment variable or
111 variable; None if the variable should be unset.
158 """Tests using the GTEST_BREAK_ON_FAILURE environment variable."""
178 """Tests that the flag overrides the environment variable.""
    [all...]
  /external/chromium_org/third_party/icu/source/common/
rbbistbl.cpp 65 // looks up a variable name and returns a UnicodeString
68 // The variable name does NOT include the leading $.
85 exprNode = varRefNode->fLeftChild; // Root node of expression for variable
87 // The $variable refers to a single UnicodeSet
96 // The variable refers to something other than just a set.
110 // mechanism to get all references to the same $variable
130 // looks for a $variable name in the source text.
162 // RBBISymbolTable::lookupNode Given a key (a variable name), return the
183 // variable assignments.
211 // The "val" of a symbol table entry is a variable reference node
    [all...]
  /external/icu/icu4c/source/common/
rbbistbl.cpp 65 // looks up a variable name and returns a UnicodeString
68 // The variable name does NOT include the leading $.
85 exprNode = varRefNode->fLeftChild; // Root node of expression for variable
87 // The $variable refers to a single UnicodeSet
96 // The variable refers to something other than just a set.
110 // mechanism to get all references to the same $variable
130 // looks for a $variable name in the source text.
162 // RBBISymbolTable::lookupNode Given a key (a variable name), return the
183 // variable assignments.
211 // The "val" of a symbol table entry is a variable reference node
    [all...]
  /external/lldb/test/lang/c/bitfields/
TestBitfields.py 16 """Test 'frame variable ...' on a variable with bitfields."""
24 """Use Python APIs to inspect a bitfields variable."""
30 """Test 'frame variable ...' on a variable with bitfields."""
38 """Use Python APIs to inspect a bitfields variable."""
49 """Test 'frame variable ...' on a variable with bitfields."""
68 self.expect("frame variable --show-types bits", VARIABLES_DISPLAYED_CORRECTLY,
80 self.expect("frame variable --show-types", VARIABLES_DISPLAYED_CORRECTLY
    [all...]
  /external/lldb/test/lang/cpp/class_types/
TestClassTypes.py 1 """Test breakpoint on a class constructor; and variable list the this object."""
17 """Test 'frame variable this' when stopped on a class constructor."""
30 # "frame variable this" returns
34 """Test 'frame variable this' when stopped on a class constructor."""
50 """Test 'frame variable this' and 'expr this' when stopped inside a constructor."""
58 """Test 'frame variable this' and 'expr this' when stopped inside a constructor."""
69 """Test 'frame variable this' when stopped on a class constructor."""
95 self.expect("frame variable --show-types this", VARIABLES_DISPLAYED_CORRECTLY,
158 """Test 'frame variable this' and 'expr this' when stopped inside a constructor."""
187 # Verify that 'frame variable this' gets the data type correct
    [all...]
  /external/lldb/test/functionalities/completion/
TestCompletion.py 48 """Test that 'watchpoint set variable -w' completes to 'watchpoint set variable -w '."""
49 self.complete_from_to('watchpoint set variable -w', 'watchpoint set variable -w ')
52 """Test that 'watchpoint set variable -w ' completes to ['Available completions:', 'read', 'write', 'read_write']."""
53 self.complete_from_to('watchpoint set variable -w ', ['Available completions:', 'read', 'write', 'read_write'])
60 """Test that 'watchpoint set var' completes to 'watchpoint set variable '."""
61 self.complete_from_to('watchpoint set var', 'watchpoint set variable ')
64 """Test that 'watchpoint set variable -w read_' completes to 'watchpoint set variable -w read_write'.""
    [all...]
  /external/chromium_org/testing/
test_env.py 42 print 'Enabling sandbox. Setting environment variable:'
49 # The variable should be removed from the environment, making
50 # the variable empty silently disables the sandbox.
67 - environment variable CR_SOURCE_ROOT set to the root directory.
68 - environment variable LANGUAGE to en_US.UTF-8.
69 - environment variable CHROME_DEVEL_SANDBOX set if need
  /external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/npapi/npspy/extern/nspr/
prmon.h 47 ** condition variable.
57 ** condition variable and that the lock is not held.
77 ** Wait for a notify on the monitor's condition variable. Sleep for "ticks"
95 ** Notify a thread waiting on the monitor's condition variable. If a thread
96 ** is waiting on the condition variable (using PR_Wait) then it is awakened
102 ** Notify all of the threads waiting on the monitor's condition variable.
prpdce.h 65 ** Create a naked condition variable
67 ** A "naked" condition variable is one that is not created bound
69 ** that may be used in the subsequent "naked" condition variable
75 ** Destroy a naked condition variable
77 ** Destroy the condition variable created by PR_NewNakedCondVar.
84 ** Wait on the condition variable 'cvar'. It is asserted that
  /external/chromium_org/tools/gn/
function_foreach.cc 30 " The block does not introduce a new scope, so that variable assignments\n"
33 " The loop variable will temporarily shadow any existing variables with\n"
35 " the loop variable will no longer be in scope, and the previous value\n"
60 // Extract the loop variable.
97 // If the loop variable was previously defined in this scope, save it so we
117 // Loop variable was undefined before loop, delete it.

Completed in 994 milliseconds

<<11121314151617181920>>