HomeSort by relevance Sort by last modified time
    Searched refs:predicate (Results 251 - 275 of 781) sorted by null

<<11121314151617181920>>

  /frameworks/base/test-runner/src/android/test/suitebuilder/
TestSuiteBuilder.java 23 import com.android.internal.util.Predicate;
48 private final Set<Predicate<TestMethod>> predicates = new HashSet<Predicate<TestMethod>>();
124 public TestSuiteBuilder addRequirements(List<Predicate<TestMethod>> predicates) {
160 * call {@code addRequirements(com.android.internal.util.Predicate[])} to make it clear which
221 public final TestSuiteBuilder addRequirements(Predicate<TestMethod>... predicates) {
222 ArrayList<Predicate<TestMethod>> list = new ArrayList<Predicate<TestMethod>>();
249 for (Predicate<TestMethod> predicate : predicates)
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/picker/
LastAccessedProvider.java 46 import java.util.function.Predicate;
199 purgeByAuthority(new Predicate<String>() {
220 purgeByAuthority(new Predicate<String>() {
238 * {@link Predicate}.
240 private void purgeByAuthority(Predicate<String> predicate) {
252 if (stack.getRoot() != null && predicate.test(stack.getRoot().authority)) {
  /prebuilts/tools/common/m2/repository/com/parse/bolts/bolts-tasks/1.4.0/
bolts-tasks-1.4.0.jar 
  /test/vts/utils/python/controllers/
event_dispatcher.py 205 predicate,
209 """Wait for an event that satisfies a predicate to appear.
212 predicate until an event that satisfies the predicate is popped or
214 do not satisfy the predicate in the process.
218 predicate: A function that takes an event and returns True if the
219 predicate is satisfied, False otherwise.
221 *args: Optional positional args passed to predicate().
222 **kwargs: Optional keyword args passed to predicate().
225 The event that satisfies the predicate
    [all...]
  /external/tensorflow/tensorflow/compiler/tf2xla/
functionalize_control_flow.cc 609 explicit SwitchCluster(Node* predicate) : predicate(predicate) {}
611 return strings::StrCat(name, " predicate=", predicate->name(),
616 Node* predicate; member in struct:tensorflow::FunctionalizeCond::SwitchCluster
625 // nodes (linked by common predicate), from innermost to outermost, and
656 Status AddInputEdges(const CondArgNodes& cond_arg_nodes, Node* predicate,
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vec4.cpp 300 predicate != BRW_PREDICATE_NONE &&
400 inst->predicate == BRW_PREDICATE_NONE &&
957 * predicate:
970 return (inst->mlen || inst->predicate || inst->is_math());
    [all...]
brw_cfg.cpp 280 if (inst->predicate)
293 if (inst->predicate)
305 if (inst->predicate)
brw_vec4_visitor.cpp 46 this->predicate = BRW_PREDICATE_NONE;
193 vec4_visitor::IF(enum brw_predicate predicate)
198 inst->predicate = predicate;
    [all...]
brw_fs_sel_peephole.cpp 206 set_predicate_inv(if_inst->predicate, if_inst->predicate_inverse,
brw_shader.h 160 enum brw_predicate predicate; member in struct:backend_instruction::backend_instruction
  /external/guava/guava/src/com/google/common/base/
CharMatcher.java 32 * Determines a true or false value for any Java {@code char} value, just as {@link Predicate} does
57 public abstract class CharMatcher implements Predicate<Character> {
572 * Returns a matcher with identical behavior to the given {@link Character}-based predicate, but
575 public static CharMatcher forPredicate(final Predicate<? super Character> predicate) {
576 checkNotNull(predicate);
577 if (predicate instanceof CharMatcher) {
578 return (CharMatcher) predicate;
580 String description = "CharMatcher.forPredicate(" + predicate + ")";
583 return predicate.apply(c)
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
CharMatcher.java 30 * Determines a true or false value for any Java {@code char} value, just as {@link Predicate} does
55 public abstract class CharMatcher implements Predicate<Character> {
538 * Returns a matcher with identical behavior to the given {@link Character}-based predicate, but
541 public static CharMatcher forPredicate(final Predicate<? super Character> predicate) {
542 checkNotNull(predicate);
543 if (predicate instanceof CharMatcher) {
544 return (CharMatcher) predicate;
546 String description = "CharMatcher.forPredicate(" + predicate + ")";
549 return predicate.apply(c)
    [all...]
  /external/mesa3d/src/util/
disk_cache.c 359 /* Given a directory path and predicate function, count all entries in
360 * that directory for which the predicate returns true. Then choose a
369 bool (*predicate)(struct dirent *,
387 if (!predicate(entry, dir_path))
407 if (!predicate(entry, dir_path))
  /external/python/cpython3/Lib/multiprocessing/
synchronize.py 311 def wait_for(self, predicate, timeout=None):
312 result = predicate()
326 result = predicate()
  /external/doclava/src/com/google/doclava/
ClassInfo.java 39 import java.util.function.Predicate;
224 * doesn't make any sense, but it's useful for {@link Predicate} testing.
862 * Return superclass matching the given predicate. When a superclass doesn't
865 public ClassInfo filteredSuperclass(Predicate<MemberInfo> predicate) {
868 } else if (predicate.test(mRealSuperclass.asMemberInfo())) {
871 return mRealSuperclass.filteredSuperclass(predicate);
876 * Return interfaces matching the given predicate. When a superclass or
880 public Collection<ClassInfo> filteredInterfaces(Predicate<MemberInfo> predicate) {
    [all...]
  /external/guice/extensions/persist/lib/
commons-collections.jar 
  /prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.1/
commons-collections-3.2.1.jar 
  /prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.2/
commons-collections-3.2.2.jar 
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/Python/
Dbg.stg 115 def evalPredicate(self, result, predicate):
116 self._dbg.semanticPredicate(result, predicate)
322 /** Force predicate validation to trigger an event */
  /external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/
Node.java 46 import java.util.function.Predicate;
771 * Walks the AST with pre-order traversal, returning all nodes of type "nodeType" that match the predicate.
773 public <T extends Node> List<T> findAll(Class<T> nodeType, Predicate<T> predicate) {
776 if (predicate.test(n))
810 * Walks the AST with pre-order traversal, returning the first node of type "nodeType" that matches "predicate" or empty() if none is
813 public <N extends Node> Optional<N> findFirst(Class<N> nodeType, Predicate<N> predicate) {
817 if (predicate.test(castNode)) {
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/
util.h 178 // have the same size and all their elements compare equal using the predicate
429 template <typename Container, typename Predicate>
430 bool c_all_of(Container container, Predicate predicate) {
431 return std::all_of(std::begin(container), std::end(container), predicate);
446 UnaryPredicate predicate) {
448 output_iterator, predicate);
  /external/tensorflow/tensorflow/python/debug/wrappers/
framework_test.py 420 tf_inspect.getmembers(session.Session, predicate=tf_inspect.ismethod)
425 framework.BaseDebugWrapperSession, predicate=tf_inspect.ismethod)
436 predicate=tf_inspect.ismethod)
441 framework.BaseDebugWrapperSession, predicate=tf_inspect.ismethod)
  /frameworks/base/cmds/statsd/src/condition/
CombinationConditionTracker.cpp 42 bool CombinationConditionTracker::init(const vector<Predicate>& allConditionConfig,
46 VLOG("Combination predicate init() %lld", (long long)mConditionId);
65 for (auto child : combinationCondition.predicate()) {
69 ALOGW("Predicate %lld not found in the config", (long long)child);
  /frameworks/base/cmds/statsd/src/
statsd_config.proto 140 message Predicate {
146 repeated int64 predicate = 2;
347 repeated Predicate predicate = 8;
  /system/core/adb/
transport.h 250 void close_usb_devices(std::function<bool(const atransport*)> predicate);

Completed in 877 milliseconds

<<11121314151617181920>>