HomeSort by relevance Sort by last modified time
    Searched refs:kFalse (Results 1 - 25 of 37) sorted by null

1 2

  /frameworks/base/cmds/statsd/src/condition/
condition_util.cpp 56 if (childState == ConditionState::kFalse) {
71 newCondition = hasFalse ? ConditionState::kFalse : ConditionState::kTrue;
75 newCondition = hasTrue ? ConditionState::kTrue : ConditionState::kFalse;
79 newCondition = (conditionCache[children[0]] == ConditionState::kFalse)
81 : ConditionState::kFalse;
84 newCondition = hasFalse ? ConditionState::kTrue : ConditionState::kFalse;
87 newCondition = hasTrue ? ConditionState::kFalse : ConditionState::kTrue;
90 newCondition = ConditionState::kFalse;
condition_util.h 31 kFalse = 0,
SimpleConditionTracker.cpp 87 mInitialValue = ConditionState::kFalse;
135 (mInitialValue == ConditionState::kFalse && mSlicedConditionState.empty()) ? false
145 mInitialValue = ConditionState::kFalse;
147 conditionCache[mIndex] = ConditionState::kFalse;
149 mUnSlicedPart = ConditionState::kFalse;
186 newCondition = matchStart ? ConditionState::kTrue : ConditionState::kFalse;
191 } else if (mInitialValue != ConditionState::kFalse) {
202 newCondition = startedCount > 0 ? ConditionState::kTrue : ConditionState::kFalse;
220 newCondition = ConditionState::kFalse;
225 newCondition = ConditionState::kFalse;
    [all...]
StateTracker.cpp 63 mInitialValue = ConditionState::kFalse;
133 mSlicedState.size() > 0 ? ConditionState::kTrue : ConditionState::kFalse;
148 mSlicedState.size() > 0 ? ConditionState::kTrue : ConditionState::kFalse;
  /external/perfetto/src/base/
thread_checker_unittest.cc 32 void* const kFalse = nullptr;
49 return thread_checker.CalledOnValidThread() ? kTrue : kFalse;
52 ASSERT_EQ(kFalse, res);
60 return thread_checker.CalledOnValidThread() ? kTrue : kFalse;
72 return copied_thread_checker.CalledOnValidThread() ? kTrue : kFalse;
74 ASSERT_EQ(kFalse, res);
81 : kFalse;
  /frameworks/base/cmds/statsd/tests/condition/
CombinationConditionTracker_test.cpp 37 conditionResults.push_back(ConditionState::kFalse);
54 conditionResults.push_back(ConditionState::kFalse);
78 conditionResults.push_back(ConditionState::kFalse);
84 conditionResults.push_back(ConditionState::kFalse);
85 conditionResults.push_back(ConditionState::kFalse);
86 conditionResults.push_back(ConditionState::kFalse);
104 conditionResults.push_back(ConditionState::kFalse);
118 conditionResults.push_back(ConditionState::kFalse);
123 conditionResults.push_back(ConditionState::kFalse);
124 conditionResults.push_back(ConditionState::kFalse);
    [all...]
SimpleConditionTracker_test.cpp 179 EXPECT_EQ(ConditionState::kFalse, conditionCache[0]);
192 EXPECT_EQ(ConditionState::kFalse, conditionCache[0]);
263 EXPECT_EQ(ConditionState::kFalse, conditionCache[0]);
395 EXPECT_EQ(ConditionState::kFalse, conditionCache[0]);
496 EXPECT_EQ(ConditionState::kFalse, conditionCache[0]);
634 EXPECT_EQ(ConditionState::kFalse, conditionCache[0]);
642 EXPECT_EQ(ConditionState::kFalse, conditionCache[0]);
  /external/v8/src/compiler/
simplified-operator-reducer.cc 24 return IsSmiDouble(m.Value()) ? Decision::kTrue : Decision::kFalse;
26 if (m.IsAllocate()) return Decision::kFalse;
27 if (m.IsChangeBitToTagged()) return Decision::kFalse;
29 if (m.IsHeapConstant()) return Decision::kFalse;
168 if (DecideObjectIsSmi(input) == Decision::kFalse) {
200 case Decision::kFalse:
common-operator.h 28 enum class BranchHint : uint8_t { kNone, kTrue, kFalse };
35 return BranchHint::kFalse;
36 case BranchHint::kFalse:
common-operator-reducer.cc 26 return mcond.Value() ? Decision::kTrue : Decision::kFalse;
30 return mcond.Value()->BooleanValue() ? Decision::kTrue : Decision::kFalse;
84 DecideCondition(cond->InputAt(1)) == Decision::kFalse &&
116 Replace(use, (decision == Decision::kFalse) ? control : dead());
381 case Decision::kFalse:
wasm-compiler.cc 248 BranchHint hint = iftrue ? BranchHint::kFalse : BranchHint::kTrue;
    [all...]
common-operator.cc 27 case BranchHint::kFalse:
550 BranchOperator<BranchHint::kFalse> kBranchFalseOperator;
821 case BranchHint::kFalse:
    [all...]
graph-assembler.cc 187 hint = if_false->IsDeferred() ? BranchHint::kTrue : BranchHint::kFalse;
js-builtin-reducer.cc 361 graph()->NewNode(common()->Branch(BranchHint::kFalse), check0, control);
514 graph()->NewNode(common()->Branch(BranchHint::kFalse), check0, control);
754 graph()->NewNode(common()->Branch(BranchHint::kFalse), check, control);
    [all...]
graph-assembler.h 406 label->IsDeferred() ? BranchHint::kFalse : BranchHint::kNone;
  /external/v8/tools/clang/blink_gc_plugin/
RecordInfo.cpp 177 is_eagerly_finalized_ = kFalse;
209 is_stack_allocated_ = kFalse;
244 is_non_newable_ = (deleted && all_deleted) ? kTrue : kFalse;
264 is_only_placement_newable_ = (placement && new_deleted) ? kTrue : kFalse;
348 is_declaring_local_trace_ = trace_method_ ? kTrue : kFalse;
481 has_adjust_and_mark && has_is_heap_object_alive ? kTrue : kFalse;
518 record_->hasNonTrivialDestructor() ? kTrue : kFalse;
540 does_need_finalization_ = kFalse;
RecordInfo.h 141 enum CachedBool { kFalse = 0, kTrue = 1, kNotComputed = 2 };
  /external/skia/bench/
Benchmark.h 39 kFalse
  /external/skqp/bench/
Benchmark.h 39 kFalse
  /frameworks/base/cmds/statsd/tests/metrics/
EventMetricProducer_test.cpp 116 EXPECT_CALL(*wizard, query(_, key1, _, _, _, _)).WillOnce(Return(ConditionState::kFalse));
OringDurationTracker_test.cpp 196 .WillOnce(Return(ConditionState::kFalse));
235 .WillOnce(Return(ConditionState::kFalse))
276 .WillOnce(Return(ConditionState::kFalse));
  /frameworks/base/cmds/statsd/src/metrics/
DurationMetricProducer.cpp 195 if (mUnSlicedPartCondition == ConditionState::kFalse &&
196 unslicedPartState == ConditionState::kFalse) {
269 if (mUnSlicedPartCondition == ConditionState::kFalse &&
270 unslicedPartState == ConditionState::kFalse) {
    [all...]
  /external/boringssl/src/crypto/bytestring/
bytestring_test.cc 286 static const uint8_t kFalse[] = {0x0a, 3, CBS_ASN1_BOOLEAN, 1, 0x00};
300 CBS_init(&data, kFalse, sizeof(kFalse));
    [all...]
  /external/v8/src/
globals.h 518 enum class Decision : uint8_t { kUnknown, kTrue, kFalse };
530 case Decision::kFalse:
    [all...]
  /external/gflags/src/
gflags.cc 295 const char* kFalse[] = { "0", "f", "false", "n", "no" };
296 COMPILE_ASSERT(sizeof(kTrue) == sizeof(kFalse), true_false_equal);
301 } else if (strcasecmp(value, kFalse[i]) == 0) {
    [all...]

Completed in 615 milliseconds

1 2