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

1 2 3 4 5

  /packages/services/Car/obd2-lib/src/com/android/car/obd2/
IntegerArrayStream.java 61 Function<IntegerArrayStream, T> ifFalse) {
65 if (ifFalse != null) {
66 return ifFalse.apply(this);
  /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);
68 final Expr ifFalse = getIfFalse();
70 return ifFalse.getResolvedType();
71 } else if (isNullLiteral(ifFalse)) {
113 ExecutionPath ifFalse = path.addBranch(getPred(), false);
114 if (ifFalse != null) {
115 result.addAll(getIfFalse().toExecutionPath(ifFalse));
139 final Expr ifFalse = getIfFalse().generateInverse(model, value, bindingClassName);
140 return model.ternary(pred, ifTrue, ifFalse);
    [all...]
ExprModel.java 184 public TernaryExpr ternary(Expr pred, Expr ifTrue, Expr ifFalse) {
185 return register(new TernaryExpr(pred, ifTrue, ifFalse));
  /external/skia/src/sksl/ast/
SkSLASTIfStatement.h 20 std::unique_ptr<ASTStatement> ifTrue, std::unique_ptr<ASTStatement> ifFalse)
25 , fIfFalse(std::move(ifFalse)) {}
SkSLASTTernaryExpression.h 16 * A ternary expression (test ? ifTrue : ifFalse).
21 std::unique_ptr<ASTExpression> ifFalse)
25 , fIfFalse(std::move(ifFalse)) {}
  /external/skia/src/sksl/ir/
SkSLIfStatement.h 21 std::unique_ptr<Statement> ifTrue, std::unique_ptr<Statement> ifFalse)
26 , fIfFalse(std::move(ifFalse)) {}
SkSLTernaryExpression.h 17 * A ternary expression (test ? ifTrue : ifFalse).
21 std::unique_ptr<Expression> ifTrue, std::unique_ptr<Expression> ifFalse)
25 , fIfFalse(std::move(ifFalse)) {
  /external/skqp/src/sksl/ast/
SkSLASTIfStatement.h 20 std::unique_ptr<ASTStatement> ifTrue, std::unique_ptr<ASTStatement> ifFalse)
25 , fIfFalse(std::move(ifFalse)) {}
SkSLASTTernaryExpression.h 16 * A ternary expression (test ? ifTrue : ifFalse).
21 std::unique_ptr<ASTExpression> ifFalse)
25 , fIfFalse(std::move(ifFalse)) {}
  /external/skqp/src/sksl/ir/
SkSLIfStatement.h 21 std::unique_ptr<Statement> ifTrue, std::unique_ptr<Statement> ifFalse)
26 , fIfFalse(std::move(ifFalse)) {}
SkSLTernaryExpression.h 17 * A ternary expression (test ? ifTrue : ifFalse).
21 std::unique_ptr<Expression> ifTrue, std::unique_ptr<Expression> ifFalse)
25 , fIfFalse(std::move(ifFalse)) {
  /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
  /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);
Reactor.hpp     [all...]
  /frameworks/data-binding/compiler/src/test/java/android/databinding/tool/
ExpressionVisitorTest.java 134 SymbolExpr ifFalse = (SymbolExpr) parsed.getIfFalse();
136 assertEquals("4", ifFalse.getText());
  /art/compiler/optimizing/
induction_var_analysis_test.cc 128 HBasicBlock* ifFalse = new (GetAllocator()) HBasicBlock(graph_);
131 graph_->AddBlock(ifFalse);
135 cond->AddSuccessor(ifFalse);
137 ifFalse->AddSuccessor(loop_body_[d]);
140 *ifF = ifFalse;
346 HBasicBlock* ifFalse;
347 HPhi* k_body = BuildIf(0, &ifTrue, &ifFalse);
355 ifFalse->AddInstruction(inc2);
379 HBasicBlock* ifFalse;
380 HPhi* k = BuildIf(0, &ifTrue, &ifFalse);
    [all...]
  /external/skia/src/sksl/
SkSLIRGenerator.cpp 347 std::unique_ptr<Statement> ifFalse;
349 ifFalse = this->convertStatement(*s.fIfFalse);
350 if (!ifFalse) {
359 return ifFalse;
368 std::move(ifTrue), std::move(ifFalse)));
    [all...]
SkSLParser.cpp     [all...]
SkSLSPIRVCodeGenerator.cpp     [all...]
  /external/skqp/src/sksl/
SkSLIRGenerator.cpp 348 std::unique_ptr<Statement> ifFalse;
350 ifFalse = this->convertStatement(*s.fIfFalse);
351 if (!ifFalse) {
360 return ifFalse;
369 std::move(ifTrue), std::move(ifFalse)));
    [all...]
SkSLParser.cpp     [all...]
SkSLSPIRVCodeGenerator.cpp     [all...]
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0-alpha3/
compiler-2.1.0-alpha3.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.1.0-alpha4/
compiler-2.1.0-alpha4.jar 
  /prebuilts/gradle-plugin/com/android/databinding/compiler/2.2.0-alpha6/
compiler-2.2.0-alpha6.jar 

Completed in 405 milliseconds

1 2 3 4 5