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

1 2 3 4 56 7 8 91011>>

  /external/droiddriver/src/io/appium/droiddriver/finders/
ByXPath.java 128 Predicate<? super UiElement> predicate) {
131 domNode = buildDomNode(uiElement, predicate);
137 Predicate<? super UiElement> predicate) {
170 if (!UiElement.VISIBLE.equals(predicate)) {
179 for (BaseUiElement<?, ?> child : uiElement.getChildren(predicate)) {
180 element.appendChild(getDomNode(child, predicate));
  /frameworks/base/cmds/statsd/tools/loadtest/src/com/android/statsd/loadtest/
ConfigFactory.java 22 import com.android.internal.os.StatsdConfigProto.Predicate;
137 for (Predicate predicate : mTemplate.getPredicateList()) {
138 addPredicate(predicate, i, config);
271 * Creates a {@link Predicate} based on the template. Makes sure that all names
272 * are appended with the provided suffix. Then adds that predicate to the config.
274 private void addPredicate(Predicate template, int suffix, StatsdConfig.Builder config) {
275 Predicate.Builder predicate = template.toBuilder() local
278 Predicate.Combination.Builder cb = template.getCombination().toBuilder(
    [all...]
  /bionic/libc/bionic/
pthread_atfork.cpp 77 void remove_if(F predicate) {
80 if (predicate(it)) {
grp_pwd_file.h 60 template <typename Line, typename Predicate>
61 bool Find(Line* line, Predicate predicate);
  /cts/tests/signature/api-check/src/java/android/signature/cts/api/
SignatureTest.java 30 import java.util.function.Predicate;
87 private static <T> Predicate<T> not(Predicate<T> predicate) {
88 return predicate.negate();
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugEventRepeater.java 68 public void semanticPredicate(boolean result, String predicate) { listener.semanticPredicate(result, predicate); }
BlankDebugEventListener.java 57 public void semanticPredicate(boolean result, String predicate) {}
DebugEventListener.java 120 * before starting a sem/syn predicate to get the
215 /** A semantic predicate was evaluate with this result and action text */
216 public void semanticPredicate(boolean result, String predicate);
  /external/autotest/server/cros/dynamic_suite/
dynamic_suite.py 68 A Suite instance represents a single test suite, defined by some predicate
232 predicate=None,
276 @param predicate: Optional argument. If present, should be a function
338 self._init_predicate(predicate)
362 def _init_predicate(self, predicate):
363 """Initialize predicate attribute."""
364 if predicate is None:
365 self.predicate = Suite.name_in_tag_predicate(self.name)
367 self.predicate = predicate
    [all...]
  /external/chromium-trace/catapult/systrace/atrace_helper/jni/
file_utils.cc 32 std::function<void(int)> predicate) {
39 predicate(atoi(child_dir->d_name));
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_vec4_cmod_propagation.cpp 50 inst->predicate != BRW_PREDICATE_NONE ||
73 if ((scan_inst->predicate && scan_inst->opcode != BRW_OPCODE_SEL) ||
  /external/guava/guava-tests/test/com/google/common/collect/
FilteredCollectionsTest.java 21 import com.google.common.base.Predicate;
42 private static final Predicate<Integer> EVEN = new Predicate<Integer>() {
49 private static final Predicate<Integer> PRIME_DIGIT =
72 abstract C filter(C elements, Predicate<? super Integer> predicate);
379 Iterable<Integer> filter(Iterable<Integer> elements, Predicate<? super Integer> predicate) {
380 return Iterables.filter(elements, predicate);
392 Collection<Integer> filter(Collection<Integer> elements, Predicate<? super Integer> predicate)
    [all...]
  /bionic/linker/
linked_list.h 173 void remove_if(F predicate) {
175 if (predicate(e->element)) {
204 T* find_if(F predicate) const {
206 if (predicate(e->element)) {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
IDebugEventListener.cs 138 * before starting a sem/syn predicate to get the
246 /** <summary>A semantic predicate was evaluate with this result and action text</summary> */
247 void SemanticPredicate(bool result, string predicate);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Debug/
IDebugEventListener.cs 140 * before starting a sem/syn predicate to get the
248 /** <summary>A semantic predicate was evaluate with this result and action text</summary> */
249 void SemanticPredicate( bool result, string predicate );
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
Dbg.stg 83 evalPredicate(p<name> ctx, ANTLR3_BOOLEAN result, const char * predicate)
85 DBG->semanticPredicate(DBG, result, predicate);
240 /** Force predicate validation to trigger an event */
  /external/droiddriver/src/io/appium/droiddriver/
UiElement.java 24 import io.appium.droiddriver.finders.Predicate;
39 Predicate<UiElement> VISIBLE =
40 new Predicate<UiElement>() {
163 * Gets an immutable {@link List} of immediate children that satisfy {@code predicate}. It always
179 List<? extends UiElement> getChildren(Predicate<? super UiElement> predicate);
  /external/llvm/lib/IR/
ConstantFold.h 47 Constant *ConstantFoldCompareInstruction(unsigned short predicate,
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_pm4.h 64 void si_pm4_cmd_end(struct si_pm4_state *state, bool predicate);
  /external/mesa3d/src/util/
set.h 84 int (*predicate)(struct set_entry *entry));
  /external/python/cpython3/Lib/
textwrap.py 467 def indent(text, prefix, predicate=None):
470 If 'predicate' is provided, 'prefix' will only be added to the lines
471 where 'predicate(line)' is True. If 'predicate' is not provided,
475 if predicate is None:
476 def predicate(line): function in function:indent
481 yield (prefix + line if predicate(line) else line)
  /external/swiftshader/third_party/LLVM/lib/VMCore/
ConstantFold.h 48 Constant *ConstantFoldCompareInstruction(unsigned short predicate,
  /external/tensorflow/tensorflow/python/kernel_tests/
numerics_test.py 107 predicate = array_ops.placeholder(dtypes.bool, shape=[])
108 _ = control_flow_ops.cond(predicate,
119 predicate = array_ops.placeholder(dtypes.bool, shape=[])
120 _ = control_flow_ops.while_loop(lambda _: predicate,
  /frameworks/base/services/core/java/com/android/server/job/controllers/
BackgroundJobsController.java 36 import java.util.function.Predicate;
79 final Predicate<JobStatus> predicate) {
83 mService.getJobStore().forEachJob(predicate, (jobStatus) -> {
113 Predicate<JobStatus> predicate) {
120 mService.getJobStore().forEachJob(predicate, (jobStatus) -> {
BatteryController.java 39 import java.util.function.Predicate;
228 Predicate<JobStatus> predicate) {
240 if (!predicate.test(js)) {
253 Predicate<JobStatus> predicate) {
269 if (!predicate.test(js)) {

Completed in 360 milliseconds

1 2 3 4 56 7 8 91011>>