Home
last modified time | relevance | path

Searched defs:condition (Results 1 – 25 of 687) sorted by relevance

12345678910>>...28

/external/tensorflow/tensorflow/python/ops/ragged/
Dragged_where_op.py31 def where_v2(condition, x=None, y=None, name=None): argument
92 def where(condition, x=None, y=None, name=None): argument
173 def _elementwise_where(condition, x, y): argument
199 def _elementwise_where_v2(condition, x, y): argument
225 def _coordinate_where(condition): argument
Dragged_where_op_test.py191 def testRaggedWhere(self, condition, expected, x=None, y=None): argument
209 def testRaggedWhereErrors(self, condition, error, message, x=None, y=None): argument
355 def testRaggedWhere(self, condition, expected, x=None, y=None): argument
373 def testRaggedWhereErrors(self, condition, error, message, x=None, y=None): argument
/external/cpuinfo/src/cpuinfo/
Dcommon.h15 #define CPUINFO_LIKELY(condition) (__builtin_expect(!!(condition), 1)) argument
16 #define CPUINFO_UNLIKELY(condition) (__builtin_expect(!!(condition), 0)) argument
18 #define CPUINFO_LIKELY(condition) (!!(condition)) argument
19 #define CPUINFO_UNLIKELY(condition) (!!(condition)) argument
/external/grpc-grpc/src/csharp/Grpc.Core/Utils/
DGrpcPreconditions.cs32 public static void CheckArgument(bool condition) in CheckArgument()
45 public static void CheckArgument(bool condition, string errorMessage) in CheckArgument()
84 public static void CheckState(bool condition) in CheckState()
97 public static void CheckState(bool condition, string errorMessage) in CheckState()
/external/libchrome/base/
Dlogging.h407 #define LAZY_STREAM(stream, condition) \ argument
421 #define LOG_IF(severity, condition) \ argument
431 #define VLOG_IF(verbose_level, condition) \ argument
448 #define VPLOG_IF(verbose_level, condition) \ argument
454 #define LOG_ASSERT(condition) \ argument
471 #define PLOG_IF(severity, condition) \ argument
621 #define CHECK(condition) \ argument
628 #define PCHECK(condition) \ argument
644 #define CHECK(condition) \ argument
649 #define PCHECK(condition) \ argument
[all …]
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/stmt/
DDoStmt.java37 private Expression condition; field in DoStmt
42 public DoStmt(final Statement body, final Expression condition) { in DoStmt()
47 public DoStmt(Range range, final Statement body, final Expression condition) { in DoStmt()
77 public DoStmt setCondition(final Expression condition) { in setCondition()
DWhileStmt.java35 private Expression condition; field in WhileStmt
42 public WhileStmt(final Expression condition, final Statement body) { in WhileStmt()
47 public WhileStmt(Range range, final Expression condition, final Statement body) { in WhileStmt()
77 public WhileStmt setCondition(final Expression condition) { in setCondition()
DIfStmt.java34 private Expression condition; field in IfStmt
43 public IfStmt(final Expression condition, final Statement thenStmt, final Statement elseStmt) { in IfStmt()
50 final Expression condition, final Statement thenStmt, final Statement elseStmt) { in IfStmt()
77 public IfStmt setCondition(final Expression condition) { in setCondition()
/external/jsoncpp/include/json/
Dassertions.h23 #define JSON_ASSERT(condition) \ argument
40 #define JSON_ASSERT(condition) assert(condition) argument
54 #define JSON_ASSERT_MESSAGE(condition, message) \ argument
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/stmt/
DDoStmt.java35 private Expression condition; field in DoStmt
40 public DoStmt(final Statement body, final Expression condition) { in DoStmt()
46 final Statement body, final Expression condition) { in DoStmt()
73 public void setCondition(final Expression condition) { in setCondition()
DWhileStmt.java33 private Expression condition; field in WhileStmt
40 public WhileStmt(final Expression condition, final Statement body) { in WhileStmt()
46 final Expression condition, final Statement body) { in WhileStmt()
73 public void setCondition(final Expression condition) { in setCondition()
DIfStmt.java33 private Expression condition; field in IfStmt
42 public IfStmt(final Expression condition, final Statement thenStmt, final Statement elseStmt) { in IfStmt()
49 final Expression condition, final Statement thenStmt, final Statement elseStmt) { in IfStmt()
76 public void setCondition(final Expression condition) { in setCondition()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/expr/
DConditionalExpr.java33 private Expression condition; field in ConditionalExpr
42 public ConditionalExpr(Expression condition, Expression thenExpr, Expression elseExpr) { in ConditionalExpr()
48 …public ConditionalExpr(Range range, Expression condition, Expression thenExpr, Expression elseExpr… in ConditionalExpr()
77 public ConditionalExpr setCondition(Expression condition) { in setCondition()
/external/openscreen/util/
Dosp_logging.h53 #define OSP_LAZY_STREAM(condition, stream) \ argument
73 #define OSP_VLOG_IF(condition) !(condition) ? (void)0 : OSP_VLOG argument
74 #define OSP_LOG_IF(level, condition) !(condition) ? (void)0 : OSP_LOG_##level argument
76 #define OSP_CHECK(condition) \ argument
92 #define OSP_DCHECK(condition) OSP_CHECK(condition) argument
105 #define OSP_DCHECK(condition) OSP_EAT_STREAM << !(condition) argument
119 #define OSP_DVLOG_IF(condition) OSP_VLOG_IF(OSP_DCHECK_IS_ON() && (condition)) argument
120 #define OSP_DLOG_IF(level, condition) \ argument
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/expr/
DConditionalExpr.java32 private Expression condition; field in ConditionalExpr
41 public ConditionalExpr(Expression condition, Expression thenExpr, Expression elseExpr) { in ConditionalExpr()
47 …lExpr(int beginLine, int beginColumn, int endLine, int endColumn, Expression condition, Expression… in ConditionalExpr()
76 public void setCondition(Expression condition) { in setCondition()
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/
DWhileStmt.java49 private Expression condition; field in WhileStmt
58 public WhileStmt(final Expression condition, final Statement body) { in WhileStmt()
66 public WhileStmt(TokenRange tokenRange, Expression condition, Statement body) { in WhileStmt()
110 public WhileStmt setCondition(final Expression condition) { in setCondition()
DDoStmt.java51 private Expression condition; field in DoStmt
58 public DoStmt(final Statement body, final Expression condition) { in DoStmt()
66 public DoStmt(TokenRange tokenRange, Statement body, Expression condition) { in DoStmt()
110 public DoStmt setCondition(final Expression condition) { in setCondition()
/external/XNNPACK/src/xnnpack/
Dcommon.h178 #define XNN_LIKELY(condition) (__builtin_expect(!!(condition), 1)) argument
179 #define XNN_UNLIKELY(condition) (__builtin_expect(!!(condition), 0)) argument
181 #define XNN_LIKELY(condition) (!!(condition)) argument
182 #define XNN_UNLIKELY(condition) (!!(condition)) argument
186 #define XNN_UNPREDICTABLE(condition) (__builtin_unpredictable(!!(condition))) argument
188 #define XNN_UNPREDICTABLE(condition) (__builtin_expect_with_probability(!!(condition), 0, 0.5)) argument
190 #define XNN_UNPREDICTABLE(condition) (!!(condition)) argument
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/concretesyntaxmodel/
DCsmConditional.java33 private final Condition condition; field in CsmConditional
86 …public CsmConditional(ObservableProperty property, Condition condition, CsmElement thenElement, Cs… in CsmConditional()
93 …public CsmConditional(List<ObservableProperty> properties, Condition condition, CsmElement thenEle… in CsmConditional()
103 … public CsmConditional(ObservableProperty property, Condition condition, CsmElement thenElement) { in CsmConditional()
/external/pigweed/pw_assert/public/pw_assert/
Dassert.h40 #define PW_ASSERT(condition) \ argument
57 #define PW_DASSERT(condition) \ argument
/external/guava/guava/src/com/google/common/math/
DMathPreconditions.java80 static void checkRoundingUnnecessary(boolean condition) { in checkRoundingUnnecessary()
86 static void checkInRangeForRoundingInputs(boolean condition, double input, RoundingMode mode) { in checkInRangeForRoundingInputs()
93 static void checkNoOverflow(boolean condition, String methodName, int a, int b) { in checkNoOverflow()
99 static void checkNoOverflow(boolean condition, String methodName, long a, long b) { in checkNoOverflow()
/external/guava/android/guava/src/com/google/common/math/
DMathPreconditions.java80 static void checkRoundingUnnecessary(boolean condition) { in checkRoundingUnnecessary()
86 static void checkInRangeForRoundingInputs(boolean condition, double input, RoundingMode mode) { in checkInRangeForRoundingInputs()
93 static void checkNoOverflow(boolean condition, String methodName, int a, int b) { in checkNoOverflow()
99 static void checkNoOverflow(boolean condition, String methodName, long a, long b) { in checkNoOverflow()
/external/clang/test/Analysis/
Dcfref_rdar6080742.c37 #define Assert(condition)if (!(condition)) { DebugStop("Assertion failure: %s [File: %s, Line: %lu]… argument
38 #define AssertMsg(condition, message)if (!(condition)) { DebugStop("Assertion failure: %s (%s) [Fil… argument
39 #define Require(condition)if (!(condition)) { DebugStop("Assertion failure: %s [File: %s, Line: %lu… argument
40 #define RequireAction(condition, action)if (!(condition)) { DebugStop("Assertion failure: %s [File:… argument
41 #define RequireActionSilent(condition, action)if (!(condition)) { action } argument
/external/llvm-project/clang/test/Analysis/
Dcfref_rdar6080742.c37 #define Assert(condition)if (!(condition)) { DebugStop("Assertion failure: %s [File: %s, Line: %lu]… argument
38 #define AssertMsg(condition, message)if (!(condition)) { DebugStop("Assertion failure: %s (%s) [Fil… argument
39 #define Require(condition)if (!(condition)) { DebugStop("Assertion failure: %s [File: %s, Line: %lu… argument
40 #define RequireAction(condition, action)if (!(condition)) { DebugStop("Assertion failure: %s [File:… argument
41 #define RequireActionSilent(condition, action)if (!(condition)) { action } argument
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/expr/
DConditionalExpr.java46 private Expression condition; field in ConditionalExpr
57 public ConditionalExpr(Expression condition, Expression thenExpr, Expression elseExpr) { in ConditionalExpr()
65 …public ConditionalExpr(TokenRange tokenRange, Expression condition, Expression thenExpr, Expressio… in ConditionalExpr()
101 public ConditionalExpr setCondition(final Expression condition) { in setCondition()

12345678910>>...28