HomeSort by relevance Sort by last modified time
    Searched refs:Predicate (Results 101 - 125 of 317) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_build.c 590 instruction.Predicate = 0;
603 unsigned predicate,
618 instruction.Predicate = predicate;
946 full_instruction.Predicate = tgsi_default_instruction_predicate();
981 full_inst->Instruction.Predicate,
987 if (full_inst->Instruction.Predicate) {
997 tgsi_build_instruction_predicate(full_inst->Predicate.Index,
998 full_inst->Predicate.Negate,
999 full_inst->Predicate.SwizzleX
    [all...]
  /external/guava/guava/src/com/google/common/collect/
Multimaps.java 30 import com.google.common.base.Predicate;
    [all...]
Iterators.java 30 import com.google.common.base.Predicate;
202 * Removes every element that satisfies the provided predicate from the
207 * @param predicate a predicate that determines whether an element should
213 Iterator<T> removeFrom, Predicate<? super T> predicate) {
214 checkNotNull(predicate);
217 if (predicate.apply(removeFrom.next())) {
639 * Returns the elements of {@code unfiltered} that satisfy a predicate.
642 final Iterator<T> unfiltered, final Predicate<? super T> predicate)
    [all...]
Sets.java 28 import com.google.common.base.Predicate;
646 final Predicate<Object> inSet2 = Predicates.in(set2);
683 final Predicate<Object> notInSet2 = Predicates.not(Predicates.in(set2));
722 * Returns the elements of {@code unfiltered} that satisfy a predicate. The
728 * the predicate, the set's {@code add()} and {@code addAll()} methods throw
739 * to copy {@code Iterables.filter(unfiltered, predicate)} and use the copy.
741 * <p><b>Warning:</b> {@code predicate} must be <i>consistent with equals</i>,
742 * as documented at {@link Predicate#apply}. Do not provide a predicate such
749 Set<E> unfiltered, Predicate<? super E> predicate)
    [all...]
Range.java 24 import com.google.common.base.Predicate;
103 * <p>When evaluated as a {@link Predicate}, a range yields the same result as
113 implements Predicate<C>, Serializable {
210 * Predicate} interface. When using a reference of type {@code Range}, always
  /external/guava/guava-tests/test/com/google/common/collect/
MapsTest.java 29 import com.google.common.base.Predicate;
    [all...]
  /external/clang/test/Sema/
warn-documentation.cpp 1071 /// @class Predicate Predicate.h "lldb/Host/Predicate.h"
1079 class Predicate
1084 /// @class Predicate<int, char> Predicate.h "lldb/Host/Predicate.h"
1090 template<> class Predicate<int, char>
1095 /// @class Predicate<T, int> Predicate.h "lldb/Host/Predicate.h
    [all...]
  /external/guava/guava/src/com/google/common/base/
Functions.java 228 * Creates a function that returns the same boolean output as the given predicate for all inputs.
231 * Function#apply}) if and only if {@code predicate} is itself consistent with equals.
233 public static <T> Function<T, Boolean> forPredicate(Predicate<T> predicate) {
234 return new PredicateFunction<T>(predicate);
239 private final Predicate<T> predicate; field in class:Functions.PredicateFunction
241 private PredicateFunction(Predicate<T> predicate) {
242 this.predicate = checkNotNull(predicate)
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/config/
suffix.hpp 864 # define BOOST_NOEXCEPT_IF(Predicate)
868 # define BOOST_NOEXCEPT_IF(Predicate) noexcept((Predicate))
  /external/clang/lib/Analysis/
BodyFarm.cpp 179 const ParmVarDecl *Predicate = D->getParamDecl(0);
180 QualType PredicateQPtrTy = Predicate->getType();
194 // Everything checks out. Create a fakse body that checks the predicate,
197 // void dispatch_once(dispatch_once_t *predicate, dispatch_block_t block) {
198 // if (!*predicate) {
199 // *predicate = 1;
212 // (2) Create the assignment to the predicate.
220 M.makeDeclRefExpr(Predicate), PredicateQPtrTy),
236 M.makeDeclRefExpr(Predicate),
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Iterators.java 29 import com.google.common.base.Predicate;
200 * Removes every element that satisfies the provided predicate from the
205 * @param predicate a predicate that determines whether an element should
211 Iterator<T> removeFrom, Predicate<? super T> predicate) {
212 checkNotNull(predicate);
215 if (predicate.apply(removeFrom.next())) {
621 * Returns the elements of {@code unfiltered} that satisfy a predicate.
624 final Iterator<T> unfiltered, final Predicate<? super T> predicate)
    [all...]
Sets.java 27 import com.google.common.base.Predicate;
634 final Predicate<Object> inSet2 = Predicates.in(set2);
671 final Predicate<Object> notInSet2 = Predicates.not(Predicates.in(set2));
710 * Returns the elements of {@code unfiltered} that satisfy a predicate. The
716 * the predicate, the set's {@code add()} and {@code addAll()} methods throw
727 * to copy {@code Iterables.filter(unfiltered, predicate)} and use the copy.
729 * <p><b>Warning:</b> {@code predicate} must be <i>consistent with equals</i>,
730 * as documented at {@link Predicate#apply}. Do not provide a predicate such
737 Set<E> unfiltered, Predicate<? super E> predicate)
    [all...]
Multimaps.java 29 import com.google.common.base.Predicate;
    [all...]
  /external/lldb/include/lldb/Core/
InputReader.h 19 #include "lldb/Host/Predicate.h"
263 Predicate<bool> m_reader_done;
Listener.h 25 #include "lldb/Host/Predicate.h"
171 Predicate<bool> m_cond_wait;
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
RecentsProvider.java 41 import com.android.internal.util.Predicate;
265 purgeByAuthority(new Predicate<String>() {
286 purgeByAuthority(new Predicate<String>() {
304 * {@link Predicate}.
306 private void purgeByAuthority(Predicate<String> predicate) {
318 if (stack.root != null && predicate.apply(stack.root.authority)) {
334 if (predicate.apply(authority)) {
352 if (stack.root != null && predicate.apply(stack.root.authority)) {
  /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;
638 /// instruction which can clobber a predicate (e.g. condition code register).
644 bool AlreadyPredicated = !BBI.Predicate.empty();
700 // Predicate modification instruction should end the block (except for
702 // Predicate may have been modified, the subsequent (currently)
722 /// predicated by the specified predicate.
730 // If it is already predicated, check if the new predicate subsume
    [all...]
  /external/chromium_org/cc/base/
scoped_ptr_vector.h 141 template <typename Predicate>
142 iterator partition(Predicate predicate) {
145 return static_cast<iterator>(std::partition(first, last, predicate));
  /external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/src/gallium/auxiliary/tgsi/
tgsi_parse.c 189 if (inst->Instruction.Predicate) {
190 next_token(ctx, &inst->Predicate);
  /external/chromium_org/v8/src/
unicode-inl.h 14 template <class T, int s> bool Predicate<T, s>::get(uchar code_point) {
20 template <class T, int s> bool Predicate<T, s>::CalculateValue(
  /external/droiddriver/src/com/google/android/droiddriver/base/
BaseUiElement.java 27 import com.google.android.droiddriver.finders.Predicate;
238 public List<E> getChildren(Predicate<? super UiElement> predicate) {
243 if (predicate == null || predicate.equals(Predicates.any())) {
249 if (predicate.apply(child)) {
  /external/llvm/include/llvm/MC/
MCInstrDesc.h 41 Predicate,
82 /// the predicate operand that controls an isPredicable() instruction.
83 bool isPredicate() const { return Flags & (1 << MCOI::Predicate); }
96 /// implementation of the MCInstrDesc class. Clients should use the predicate
306 /// \brief Return true if this instruction has a predicate operand
309 /// control and modify the predicate in this instruction.
587 /// operand list that is used to represent the predicate. It returns -1 if
  /external/llvm/lib/Target/PowerPC/
PPCBranchSelector.cpp 164 // 0. PPC branch predicate
167 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);

Completed in 1546 milliseconds

1 2 3 45 6 7 8 91011>>