HomeSort by relevance Sort by last modified time
    Searched full:iftrue (Results 1 - 25 of 231) sorted by null

1 2 3 4 5 6 7 8 910

  /external/skia/src/sksl/ast/
SkSLASTTernaryExpression.h 16 * A ternary expression (test ? ifTrue : ifFalse).
20 std::unique_ptr<ASTExpression> ifTrue,
24 , fIfTrue(std::move(ifTrue))
SkSLASTIfStatement.h 20 std::unique_ptr<ASTStatement> ifTrue, std::unique_ptr<ASTStatement> ifFalse)
24 , fIfTrue(std::move(ifTrue))
  /external/skia/src/sksl/ir/
SkSLTernaryExpression.h 17 * A ternary expression (test ? ifTrue : ifFalse).
21 std::unique_ptr<Expression> ifTrue, std::unique_ptr<Expression> ifFalse)
22 : INHERITED(position, kTernary_Kind, ifTrue->fType)
24 , fIfTrue(std::move(ifTrue))
SkSLIfStatement.h 21 std::unique_ptr<Statement> ifTrue, std::unique_ptr<Statement> ifFalse)
25 , fIfTrue(std::move(ifTrue))
  /frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
TernaryExpr.java 30 TernaryExpr(Expr pred, Expr ifTrue, Expr ifFalse) {
31 super(pred, ifTrue, ifFalse);
67 final Expr ifTrue = getIfTrue();
69 if (isNullLiteral(ifTrue)) {
72 return ifTrue.getResolvedType();
109 ExecutionPath ifTrue = path.addBranch(getPred(), true);
110 if (ifTrue != null) {
111 result.addAll(getIfTrue().toExecutionPath(ifTrue));
138 final Expr ifTrue = getIfTrue().generateInverse(model, value, bindingClassName);
140 return model.ternary(pred, ifTrue, ifFalse)
    [all...]
  /packages/services/Car/obd2-lib/src/com/android/car/obd2/
IntegerArrayStream.java 54 public <T> T hasAtLeast(int n, Function<IntegerArrayStream, T> ifTrue) {
55 return hasAtLeast(n, ifTrue, null);
60 Function<IntegerArrayStream, T> ifTrue,
63 return ifTrue.apply(this);
  /external/llvm/test/CodeGen/AArch64/
flags-multiuse.ll 27 br i1 %test, label %iftrue, label %iffalse
31 iftrue:
regress-fp128-livein.ll 3 ; Regression test for NZCV reg live-in not being added to fp128csel IfTrue BB,
  /external/llvm/bindings/go/llvm/
executionengine_test.go 34 iftrue := AddBasicBlock(fac, "iftrue")
43 builder.CreateCondBr(If, iftrue, iffalse)
45 builder.SetInsertPointAtEnd(iftrue)
59 phi_blocks := []BasicBlock{iftrue, iffalse}
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/
standard_policies.hpp 95 typedef hash_exponential_size_policy<size_type> iftrue; typedef in struct:__gnu_pbds::detail::default_resize_policy
97 typedef __conditional_type<same_type::value, iftrue, iffalse> cond_type;
123 typedef linear_probe_fn<size_type> iftrue; typedef in struct:__gnu_pbds::detail::default_probe_fn
125 typedef __conditional_type<same_type::value, iftrue, iffalse> cond_type;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/
standard_policies.hpp 95 typedef hash_exponential_size_policy<size_type> iftrue; typedef in struct:__gnu_pbds::detail::default_resize_policy
97 typedef __conditional_type<same_type::value, iftrue, iffalse> cond_type;
123 typedef linear_probe_fn<size_type> iftrue; typedef in struct:__gnu_pbds::detail::default_probe_fn
125 typedef __conditional_type<same_type::value, iftrue, iffalse> cond_type;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/
standard_policies.hpp 95 typedef hash_exponential_size_policy<size_type> iftrue; typedef in struct:__gnu_pbds::detail::default_resize_policy
97 typedef __conditional_type<same_type::value, iftrue, iffalse> cond_type;
123 typedef linear_probe_fn<size_type> iftrue; typedef in struct:__gnu_pbds::detail::default_probe_fn
125 typedef __conditional_type<same_type::value, iftrue, iffalse> cond_type;
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/
standard_policies.hpp 95 typedef hash_exponential_size_policy<size_type> iftrue; typedef in struct:__gnu_pbds::detail::default_resize_policy
97 typedef __conditional_type<same_type::value, iftrue, iffalse> cond_type;
123 typedef linear_probe_fn<size_type> iftrue; typedef in struct:__gnu_pbds::detail::default_probe_fn
125 typedef __conditional_type<same_type::value, iftrue, iffalse> cond_type;
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/
standard_policies.hpp 95 typedef hash_exponential_size_policy<size_type> iftrue; typedef in struct:__gnu_pbds::detail::default_resize_policy
97 typedef __conditional_type<same_type::value, iftrue, iffalse> cond_type;
123 typedef linear_probe_fn<size_type> iftrue; typedef in struct:__gnu_pbds::detail::default_probe_fn
125 typedef __conditional_type<same_type::value, iftrue, iffalse> cond_type;
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/pb_ds/detail/
standard_policies.hpp 95 typedef hash_exponential_size_policy<size_type> iftrue; typedef in struct:__gnu_pbds::detail::default_resize_policy
97 typedef __conditional_type<same_type::value, iftrue, iffalse> cond_type;
123 typedef linear_probe_fn<size_type> iftrue; typedef in struct:__gnu_pbds::detail::default_probe_fn
125 typedef __conditional_type<same_type::value, iftrue, iffalse> cond_type;
  /external/clang/unittests/ASTMatchers/Dynamic/
VariantValueTest.cpp 108 bool IfTrue = false;
110 IfTrue = true;
112 EXPECT_FALSE(IfTrue);
116 IfTrue = false;
118 IfTrue = true;
120 EXPECT_TRUE(IfTrue);
  /external/llvm/lib/Target/Hexagon/
HexagonEarlyIfConv.cpp 172 unsigned getCondStoreOpcode(unsigned Opc, bool IfTrue) const;
174 MachineInstr *MI, unsigned PredR, bool IfTrue);
177 unsigned PredR, bool IfTrue);
655 bool IfTrue) const {
660 return IfTrue ? S2_pstorerbt_io : S2_pstorerbf_io;
662 return IfTrue ? S4_pstorerbt_rr : S4_pstorerbf_rr;
665 return IfTrue ? S4_pstorerbt_abs : S4_pstorerbf_abs;
667 return IfTrue ? S4_storeirbt_io : S4_storeirbf_io;
669 return IfTrue ? S2_pstorerht_io : S2_pstorerhf_io;
671 return IfTrue ? S4_pstorerht_rr : S4_pstorerhf_rr
    [all...]
  /external/v8/src/compiler/
diamond.h 30 if_true = graph->NewNode(common->IfTrue(), branch);
common-operator-reducer.cc 77 // Swap IfTrue/IfFalse on {branch} if {cond} is a BooleanNot and use the input
92 NodeProperties::ChangeOp(use, common()->IfTrue());
167 // b) the {Merge} has two inputs, one {IfTrue} and one {IfFalse}, which are
169 // c) and the {IfTrue} and {IfFalse} nodes point to the same {Branch}.
control-flow-optimizer.cc 90 if_true = matcher.IfTrue();
  /external/swiftshader/src/Reactor/
Nucleus.hpp 70 static void createCondBr(Value *cond, BasicBlock *ifTrue, BasicBlock *ifFalse);
147 static Value *createSelect(Value *C, Value *ifTrue, Value *ifFalse);
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
ControlStructuresTest.java 39 assertLine("iftrue", ICounter.FULLY_COVERED, 1, 1);
  /frameworks/data-binding/compiler/src/main/kotlin/android/databinding/tool/expr/
ExprWriters.kt 54 val chosen = if (knownValues[myExpr.pred]!!) myExpr.ifTrue else myExpr.ifFalse
  /art/compiler/optimizing/
induction_var_analysis_test.cc 129 HBasicBlock* ifTrue = new (&allocator_) HBasicBlock(graph_);
132 graph_->AddBlock(ifTrue);
136 cond->AddSuccessor(ifTrue);
138 ifTrue->AddSuccessor(loop_body_[d]);
141 *ifT = ifTrue;
349 HBasicBlock* ifTrue;
351 HPhi* k_body = BuildIf(0, &ifTrue, &ifFalse);
355 ifTrue->AddInstruction(inc1);
382 HBasicBlock* ifTrue;
384 HPhi* k = BuildIf(0, &ifTrue, &ifFalse)
    [all...]
  /frameworks/data-binding/compiler/src/test/java/android/databinding/tool/
ExpressionVisitorTest.java 133 SymbolExpr ifTrue = (SymbolExpr) parsed.getIfTrue();
135 assertEquals("5", ifTrue.getText());

Completed in 1007 milliseconds

1 2 3 4 5 6 7 8 910