Searched refs:assigned (Results 1 - 25 of 66) sorted by relevance

123

/external/libcxx/test/support/
H A Demplace_constructible.h28 int assigned = 0; member in struct:EmplaceConstructibleAndMoveable
39 assigned = Other.assigned + 1;
48 int assigned = 0; member in struct:EmplaceConstructibleMoveableAndAssignable
61 assigned = Other.assigned + 1;
68 ++assigned;
H A Darchetypes.hpp36 static int assigned; member in struct:ArchetypeBases::TestBase
51 assigned = value_assigned = copy_assigned = move_assigned = destroyed = 0;
84 ++assigned; ++value_assigned;
105 ++assigned; ++copy_assigned;
111 ++assigned; ++move_assigned;
126 template <class D, bool E> int TestBase<D, E>::assigned = 0; member in class:TestBase
/external/junit/src/main/java/org/junit/experimental/theories/internal/
H A DAssignments.java22 private final List<PotentialAssignment> assigned; field in class:Assignments
28 private Assignments(List<PotentialAssignment> assigned, argument
31 this.assigned = assigned;
37 * assigned.
58 List<PotentialAssignment> assigned = new ArrayList<PotentialAssignment>(
59 this.assigned);
60 assigned.add(source);
62 return new Assignments(assigned, unassigned.subList(1,
70 values[i - start] = assigned
[all...]
/external/mesa3d/src/compiler/glsl/
H A Dlower_vector.cpp147 unsigned assigned; local
149 /* Write-mask in the destination that receives counted by 'assigned'.
157 * - All constant components can be assigned at once.
159 * unary operator can be assigned at once.
163 assigned = 0;
172 case GLSL_TYPE_UINT: d.u[assigned] = c->value.u[0]; break;
173 case GLSL_TYPE_INT: d.i[assigned] = c->value.i[0]; break;
174 case GLSL_TYPE_FLOAT: d.f[assigned] = c->value.f[0]; break;
175 case GLSL_TYPE_BOOL: d.b[assigned] = c->value.b[0]; break;
180 assigned
[all...]
H A Dlink_varyings.h116 return this->matched_candidate->toplevel_var->data.assigned;
219 * The vertex shader output location that the linker assigned for this
220 * variable. -1 if a location hasn't been assigned yet.
225 * Used to store the buffer assigned by xfb_buffer.
230 * Used to store the offset assigned by xfb_offset.
284 * StreamId assigned to this varying (defaults to 0). Can only be set to
H A Dlower_named_interface_blocks.cpp225 lhs_var->data.assigned = 1;
237 lhs_var->data.assigned = 1;
/external/libcxx/test/std/utilities/utility/pairs/pairs.pair/
H A Dassign_tuple.pass.cpp33 static int assigned; member in struct:CountingType
38 assigned = copy_assigned = move_assigned = 0;
46 ++assigned;
52 ++assigned;
63 int CountingType::assigned; member in class:CountingType
78 assert(C::assigned == 1);
92 assert(C::assigned == 1);
106 assert(C::assigned == 2);
120 assert(C::assigned == 2);
134 assert(C::assigned
[all...]
/external/icu/icu4c/source/test/intltest/
H A Dquantityformattertest.cpp98 QuantityFormatter assigned; local
99 assigned = fmt;
101 "assigned getByVariant",
102 assigned.getByVariant("other")->getTextWithNoArguments(),
105 "assigned getByVariant",
106 assigned.getByVariant("one")->getTextWithNoArguments(),
109 "assigned getByVariant",
110 assigned.getByVariant("few")->getTextWithNoArguments(),
/external/google-breakpad/src/processor/
H A Dpostfix_evaluator.h56 // treated as constants. Any results must be assigned into variables in the
58 // Evaluate, unless used in an expression prior to being assigned to. The
104 // variables in the dictionary in an indeterminate state. If assigned is
106 // will also be set to true in assigned, providing a way to determine if
108 bool Evaluate(const string &expression, DictionaryValidityType *assigned);
151 // Evaluate expression, updating *assigned if it is non-zero. Return
155 DictionaryValidityType *assigned);
159 DictionaryValidityType *assigned);
H A Dpostfix_evaluator-inl.h73 DictionaryValidityType *assigned) {
192 if (assigned)
193 (*assigned)[identifier] = true;
207 DictionaryValidityType *assigned) {
218 if (!EvaluateToken("=", expression, assigned)) {
222 if (!EvaluateToken(token.substr(1), expression, assigned)) {
225 } else if (!EvaluateToken(token, expression, assigned)) {
235 DictionaryValidityType *assigned) {
239 if (!EvaluateInternal(expression, assigned))
70 EvaluateToken( const string &token, const string &expression, DictionaryValidityType *assigned) argument
205 EvaluateInternal( const string &expression, DictionaryValidityType *assigned) argument
234 Evaluate(const string &expression, DictionaryValidityType *assigned) argument
H A Dpostfix_evaluator_unittest.cc240 PostfixEvaluator<unsigned int>::DictionaryValidityType assigned; local
249 &assigned);
294 // The value must be set in the "assigned" dictionary if it was a
295 // variable. It must not have been assigned if it was a constant.
299 iterator_assigned = assigned.find(identifier);
300 if (iterator_assigned != assigned.end()) {
/external/python/cpython2/Lib/
H A Dfunctools.py19 assigned = WRAPPER_ASSIGNMENTS,
25 assigned is a tuple naming the attributes assigned directly
32 for attr in assigned:
40 assigned = WRAPPER_ASSIGNMENTS,
51 assigned=assigned, updated=updated)
/external/toolchain-utils/crosperf/
H A Dsettings.py45 if not field.assigned and field.required:
53 if (not self.fields[name].assigned and self.parent and
54 name in self.parent.fields and self.parent.fields[name].assigned):
60 if name in self.fields and settings.fields[name].assigned:
66 if not self.fields[name].assigned and self.fields[name].required:
H A Dfield.py11 self.assigned = False
22 self.assigned = True
26 self.assigned = True
131 self.assigned = True
H A Dexperiment_file.py136 if field.assigned:
147 if field.assigned:
161 if autotest_field.assigned:
166 if not autotest_field.assigned:
/external/tensorflow/tensorflow/python/kernel_tests/
H A Dvariable_ops_test.py75 assigned = state_ops.assign(var, value)
76 self.assertShapeEqual(value, assigned)
82 assigned = state_ops.assign(var, value, validate_shape=False)
83 self.assertShapeEqual(value, assigned)
89 assigned = state_ops.assign(var, value)
90 self.assertShapeEqual(value, assigned)
96 assigned = state_ops.assign(var, value, validate_shape=False)
97 self.assertShapeEqual(value, assigned)
108 assigned = state_ops.assign(var, value)
110 self.assertEqual(shape, assigned
[all...]
/external/libcxx/test/std/utilities/optional/optional.object/optional.object.assign/
H A Dassign_value.pass.cpp95 assert(T::assigned == 0);
106 assert(T::assigned == 1);
120 assert(T::assigned == 0);
132 assert(T::assigned == 1);
146 assert(T::assigned == 0);
158 assert(T::assigned == 0);
H A Dconst_optional_U.pass.cpp95 assert(T::assigned == 0);
110 assert(T::assigned == 1);
126 assert(T::assigned == 0);
139 assert(T::assigned == 0);
H A Doptional_U.pass.cpp99 assert(T::assigned == 0);
114 assert(T::assigned == 1);
130 assert(T::assigned == 0);
143 assert(T::assigned == 0);
/external/v8/src/compiler/
H A Dcontrol-builders.cc37 void LoopBuilder::BeginLoop(BitVector* assigned, bool is_osr) { argument
38 loop_environment_ = environment()->CopyForLoop(assigned, is_osr);
41 assigned_ = assigned;
H A Dcontrol-builders.h70 void BeginLoop(BitVector* assigned, bool is_osr = false);
/external/libcxx/test/std/utilities/optional/optional.object/optional.object.ctor/
H A Dmove.pass.cpp101 assert(T::assigned == 0);
115 assert(T::assigned == 0);
127 assert(T::assigned == 0);
141 assert(T::assigned == 0);
H A Dcopy.pass.cpp91 assert(T::assigned == 0);
105 assert(T::assigned == 0);
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dhlo.proto193 // Assigned represents a single LogicalBuffer that is assigned to this
210 repeated Assigned assigned = 9;
/external/mesa3d/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_ssa.cpp219 // liveIn(bb) = usedBeforeAssigned(bb) U (liveOut(bb) - assigned(bb))
225 BitSet assigned(allLValues.getSize(), true);
247 if (i->getSrc(s)->asLValue() && !assigned.test(i->getSrc(s)->id))
250 assigned.set(i->getDef(d)->id);
256 if (!assigned.test(it->get()->id))
261 bb->liveSet.andNot(assigned);

Completed in 3152 milliseconds

123