HomeSort by relevance Sort by last modified time
    Searched refs:Predicate (Results 151 - 175 of 774) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/llvm/lib/CodeGen/
IfConversion.cpp 91 /// instruction can clobber the 'would-be' predicate.
108 /// Predicate - Predicate used in the BB.
126 SmallVector<MachineOperand, 4> Predicate;
642 /// instruction which can clobber a predicate (e.g. condition code register).
648 bool AlreadyPredicated = !BBI.Predicate.empty();
704 // Predicate modification instruction should end the block (except for
706 // Predicate may have been modified, the subsequent (currently)
726 /// predicated by the specified predicate.
737 if (BBI.Predicate.size() && !BBI.IsBrAnalyzable
    [all...]
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RecentsProvider.java 42 import com.android.internal.util.Predicate;
270 purgeByAuthority(new Predicate<String>() {
291 purgeByAuthority(new Predicate<String>() {
309 * {@link Predicate}.
311 private void purgeByAuthority(Predicate<String> predicate) {
323 if (stack.root != null && predicate.apply(stack.root.authority)) {
339 if (predicate.apply(authority)) {
357 if (stack.root != null && predicate.apply(stack.root.authority)) {
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
MatchOpTest.java 44 import java.util.function.Predicate;
82 private static final Predicate<Integer>[] INTEGER_PREDICATES
83 = (Predicate<Integer>[]) new Predicate<?>[]{pTrue, pFalse, pEven, pOdd};
87 = new HashMap<Kind, Function<Predicate<Integer>, Function<Stream<Integer>, Boolean>>>() {{
94 private <T> Map<Kind, Function<Predicate<T>, Function<Stream<T>, Boolean>>> kinds() {
95 return (Map<Kind, Function<Predicate<T>, Function<Stream<T>, Boolean>>>) kinds;
98 private <T> void assertPredicates(List<T> source, Kind kind, Predicate<T>[] predicates, boolean... answers) {
122 for (Predicate<Integer> p : INTEGER_PREDICATES) {
  /external/llvm/lib/IR/
ConstantFold.cpp     [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
IterablesTest.java 30 import com.google.common.base.Predicate;
188 Predicate<String> predicate = Predicates.equalTo("pants");
190 assertFalse(Iterables.any(list, predicate));
192 assertFalse(Iterables.any(list, predicate));
194 assertTrue(Iterables.any(list, predicate));
199 Predicate<String> predicate = Predicates.equalTo("cool");
201 assertTrue(Iterables.all(list, predicate));
203 assertTrue(Iterables.all(list, predicate));
    [all...]
  /cts/tests/tests/shortcutmanager/src/android/content/pm/cts/shortcutmanager/
ShortcutManagerLauncherCallbackTest.java 37 import java.util.function.Predicate;
105 public synchronized boolean isShortcutById(String id, Predicate<ShortcutInfo> predicate) {
107 if (id.equals(si.getId()) && predicate.test(si)) {
  /development/tools/idegen/src/com/android/idegen/
DirectorySearch.java 20 import com.google.common.base.Predicate;
160 Collection<File> filteredDirs = Collections2.filter(dirs, new Predicate<File>() {
  /external/caliper/caliper/src/test/java/com/google/caliper/runner/
RuntimeInstrumentTest.java 33 import com.google.common.base.Predicate;
65 .filter(new Predicate<Method>() {
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
Binding.java 20 import com.google.common.base.Predicate;
59 enum Type implements Predicate<Binding> {
InjectBindingRegistry.java 21 import com.google.common.base.Predicate;
213 .filter(new Predicate<ExecutableElement>() {
  /external/guava/guava-tests/test/com/google/common/collect/
MultisetsCollectionTest.java 23 import com.google.common.base.Predicate;
95 .named("Multiset.filter[Multiset, Predicate]")
229 private static final Predicate<String> PREDICATE =
239 return Multisets.filter(multiset, PREDICATE);
  /external/guice/core/src/com/google/inject/internal/
BytecodeGen.java 91 net.sf.cglib.core.Predicate names) {
109 net.sf.cglib.core.Predicate names) {
  /external/llvm/include/llvm/ADT/
MapVector.h 161 /// \brief Remove the elements that match the predicate.
165 template <class Predicate> void remove_if(Predicate Pred);
  /external/llvm/include/llvm/MC/
MCInstrDesc.h 41 enum OperandFlags { LookupPtrRegClass = 0, Predicate, OptionalDef };
80 /// \brief Set if this is one of the operands that made up of the predicate
82 bool isPredicate() const { return Flags & (1 << MCOI::Predicate); }
94 /// MCInstrDesc class. Clients should use the predicate methods on MCInstrDesc,
260 /// \brief Return true if this instruction has a predicate operand
263 /// control and modify the predicate in this instruction.
535 /// operand list that is used to represent the predicate. It returns -1 if
  /external/llvm/lib/Target/PowerPC/
PPCBranchSelector.cpp 190 // 0. PPC branch predicate
193 PPC::Predicate Pred = (PPC::Predicate)I->getOperand(0).getImm();
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_tgsi_aos.c 285 * Predicate
288 if (inst->Instruction.Predicate) {
291 assert(inst->Predicate.Index < LP_MAX_TGSI_PREDS);
294 bld->preds[inst->Predicate.Index], "");
305 if (inst->Predicate.Negate) {
310 inst->Predicate.SwizzleX,
311 inst->Predicate.SwizzleY,
312 inst->Predicate.SwizzleZ,
313 inst->Predicate.SwizzleW);
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_parse.c 189 if (inst->Instruction.Predicate) {
190 next_token(ctx, &inst->Predicate);
  /external/robolectric/v3/
robolectric-processor-3.1-SNAPSHOT.jar 
  /external/smali/util/src/main/java/org/jf/util/
CollectionUtils.java 34 import com.google.common.base.Predicate;
51 public static <T> int lastIndexOf(@Nonnull Iterable<T> iterable, @Nonnull Predicate<? super T> predicate) {
55 if (predicate.apply(item)) {
  /frameworks/base/core/tests/coretests/src/com/android/internal/util/
ArrayUtilsTest.java 29 java.util.function.Predicate<Object> isNull = new java.util.function.Predicate<Object>() {
  /libcore/ojluni/src/main/java/java/util/stream/
MatchOps.java 32 import java.util.function.Predicate;
37 * quantified predicate matching on the elements of a stream. Supported variants
51 /** Do all elements match the predicate? */
54 /** Do any elements match the predicate? */
57 /** Do no elements match the predicate? */
71 * Constructs a quantified predicate matcher for a Stream.
74 * @param predicate the {@code Predicate} to apply to stream elements
79 public static <T> TerminalOp<T, Boolean> makeRef(Predicate<? super T> predicate,
    [all...]
ReferencePipeline.java 42 import java.util.function.Predicate;
161 public final Stream<P_OUT> filter(Predicate<? super P_OUT> predicate) {
162 Objects.requireNonNull(predicate);
175 if (predicate.test(u))
449 public final boolean anyMatch(Predicate<? super P_OUT> predicate) {
450 return evaluate(MatchOps.makeRef(predicate, MatchOps.MatchKind.ANY));
454 public final boolean allMatch(Predicate<? super P_OUT> predicate) {
    [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 122 CmpInst::Predicate Predicate,
130 uint32_t lookup_or_add_cmp(unsigned Opcode, CmpInst::Predicate Pred,
189 CmpInst::Predicate Predicate = C->getPredicate();
192 Predicate = CmpInst::getSwappedPredicate(Predicate);
194 e.opcode = (C->getOpcode() << 8) | Predicate;
205 CmpInst::Predicate Predicate,
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
ClassPool.java 35 import com.google.common.base.Predicate;
261 private static final Predicate<Field> HAS_INITIALIZER = new Predicate<Field>() {
356 private static final Predicate<MethodParameter> HAS_PARAMETER_ANNOTATIONS = new Predicate<MethodParameter>() {
  /packages/apps/Messaging/src/com/android/messaging/ui/conversation/
ConversationMessageView.java 73 import com.google.common.base.Predicate;
596 private void bindAttachmentsOfSameType(final Predicate<MessagePartData> attachmentTypeFilter,
    [all...]

Completed in 2937 milliseconds

1 2 3 4 5 67 8 91011>>