HomeSort by relevance Sort by last modified time
    Searched defs:predicate (Results 51 - 75 of 332) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/tensorflow/tensorflow/python/framework/
test_util.py 1299 def predicate(e): function in function:TensorFlowTestCase.assertRaisesWithPredicateMatch
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/wm/
TaskSnapshotPersisterLoaderTest.java 72 private void assertTrueForFiles(File[] files, Predicate<File> predicate, String message) {
74 assertTrue(file.getName() + message, predicate.apply(file));
293 * Private predicate definition.
295 * This is needed because com.android.internal.util.Predicate is deprecated
297 * use java.util.function.Predicate because that is not present on all API
300 private interface Predicate<T> {
  /external/kotlinc/lib/
kotlin-runtime.jar 
kotlin-stdlib.jar 
  /prebuilts/gradle-plugin/org/jetbrains/kotlin/kotlin-stdlib/1.1.2-4/
kotlin-stdlib-1.1.2-4.jar 
  /prebuilts/gradle-plugin/org/jetbrains/kotlin/kotlin-stdlib/1.1.3/
kotlin-stdlib-1.1.3.jar 
  /prebuilts/gradle-plugin/org/jetbrains/kotlin/kotlin-stdlib/1.1.3-2/
kotlin-stdlib-1.1.3-2.jar 
  /prebuilts/sdk/tools/jetifier/jetifier-standalone/lib/
kotlin-stdlib-1.2.20.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.1.1/
kotlin-stdlib-1.1.1.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.1.3/
kotlin-stdlib-1.1.3.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.1.51/
kotlin-stdlib-1.1.51.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.2.0/
kotlin-stdlib-1.2.0.jar 
  /prebuilts/tools/common/m2/repository/org/jetbrains/kotlin/kotlin-stdlib/1.2.20/
kotlin-stdlib-1.2.20.jar 
  /prebuilts/ktlint/
ktlint-android-all.jar 
  /development/vndk/tools/header-checker/header-abi-util/src/
abi_diff_helpers.cpp 316 auto predicate = local
337 std::bind(predicate, std::placeholders::_1, new_fields_offset_map)),
342 std::bind(predicate, std::placeholders::_1, old_fields_offset_map)),
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
Compiler.java 656 * Compile a location step predicate expression.
660 * @return the contained predicate expression.
664 public Expression predicate(int opPos) throws TransformerException method in class:Compiler
941 * @param opPos The position of the first predicate the m_opMap array.
968 * @param opPos The position of the first predicate the m_opMap array.
992 * @param opPos The position of the first predicate the m_opMap array.
1004 predicates[i] = predicate(opPos);
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
RangeTest.java 26 import com.google.common.base.Predicate;
517 Predicate<Integer> predicate = Range.closed(2, 3); local
518 assertFalse(predicate.apply(1));
519 assertTrue(predicate.apply(2));
520 assertTrue(predicate.apply(3));
521 assertFalse(predicate.apply(4));
  /external/mesa3d/src/gallium/drivers/nouveau/codegen/
nv50_ir_target.h 199 unsigned int predicate : 1; member in struct:nv50_ir::Target::OpInfo
  /frameworks/base/cmds/statsd/tests/
statsd_test_util.cpp 198 Predicate CreateScheduledJobPredicate() {
199 Predicate predicate; local
200 predicate.set_id(StringToId("ScheduledJobRunningPredicate"));
201 predicate.mutable_simple_predicate()->set_start(StringToId("ScheduledJobStart"));
202 predicate.mutable_simple_predicate()->set_stop(StringToId("ScheduledJobFinish"));
203 return predicate;
206 Predicate CreateBatterySaverModePredicate() {
207 Predicate predicate; local
215 Predicate predicate; local
223 Predicate predicate; local
231 Predicate predicate; local
239 Predicate predicate; local
247 Predicate predicate; local
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
PredicatesTest.java 49 private static final Predicate<Integer> TRUE = Predicates.alwaysTrue();
50 private static final Predicate<Integer> FALSE = Predicates.alwaysFalse();
51 private static final Predicate<Integer> NEVER_REACHED =
52 new Predicate<Integer>() {
56 "This predicate should never have been evaluated");
60 /** Instantiable predicate with reasonable hashCode() and equals() methods. */
61 static class IsOdd implements Predicate<Integer>, Serializable {
79 * Generates a new Predicate per call.
81 * <p>Creating a new Predicate each time helps catch cases where code is
131 * Tests for Predicates.not(predicate)
306 Predicate<Object> predicate = Predicates.and(array); local
314 Predicate<Object> predicate = Predicates.and(list); local
328 Predicate<Object> predicate = Predicates.and(iterable); local
474 Predicate<Object> predicate = Predicates.or(array); local
482 Predicate<Object> predicate = Predicates.or(list); local
496 Predicate<Object> predicate = Predicates.or(iterable); local
642 Predicate<Class<?>> predicate = local
938 assertEvalsLike(isOdd(), predicate); local
    [all...]
  /bionic/linker/
linker.cpp 1142 auto predicate = [&](soinfo* si) { local
1169 auto predicate = [&](soinfo* si) { return strcmp(realpath, si->get_realpath()) == 0; }; local
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
syn.h 84 /* a predicate is defined to be a predicate action and a token tree with
115 ActionNode *source; /* where did this predicate come from? */
117 struct _anode *source; /* where did this predicate come from? */
121 char redundant; /* MR10 predicate tree simplification */
132 } Predicate;
217 int is_predicate; /* true if action is a <<...>>? predicate action */
220 char *pred_fail; /* what to do/print when predicate fails */
221 Predicate *guardpred; /* if '(context)? =>' was present, already done */
226 Predicate *ampersandPred; /* MR10 (g)? && <<p>>? expr */
365 Predicate *predicate;\/* predicate that can be used to disambiguate *\/ member in struct:Junction::_junct
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonExpandCondsets.cpp 268 bool predicate(MachineInstr &TfrI, bool Cond, std::set<unsigned> &UpdRegs);
608 /// destination register DstR:DstSR, and using the predicate register from
609 /// PredOp. The Cond argument specifies whether the predicate is to be
623 /// predicate.
651 MachineOperand &MP = MI.getOperand(1); // Predicate register
790 /// that depend on the same predicate register to allow moving instructions
944 bool HexagonExpandCondsets::predicate(MachineInstr &TfrI, bool Cond, function in class:HexagonExpandCondsets
    [all...]
  /external/swiftshader/src/Shader/
PixelProgram.cpp 117 bool predicate = instruction->predicate; local
417 if(predicate)
    [all...]
VertexProgram.cpp 135 bool predicate = instruction->predicate; local
454 if(predicate)
    [all...]

Completed in 613 milliseconds

1 23 4 5 6 7 8 91011>>