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

1 2 3 4 5 6 7 8 91011>>

  /external/mesa3d/src/gallium/include/pipe/
p_shader_tokens.h 449 * If Predicate is TRUE, tgsi_instruction_predicate token immediately follows.
462 unsigned Predicate : 1; /* BOOL */
  /external/llvm/tools/llvm-objdump/
llvm-objdump.cpp 189 : Predicate(P), Iterator(I), End(E) {
204 while (Iterator != End && !Predicate(*Iterator)) {
208 FilterPredicate Predicate;
216 : Predicate(P), Object(O) {}
218 return SectionFilterIterator(Predicate, Object.section_begin(),
222 return SectionFilterIterator(Predicate, Object.section_end(),
227 FilterPredicate Predicate;
    [all...]
  /external/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 430 // Returns true if predicate matches were emitted, false otherwise.
871 // The predicate function is just a big switch statement based on the
872 // input predicate index.
880 for (const auto &Predicate : Predicates) {
882 OS.indent(Indentation+2) << "return (" << Predicate << ");\n";
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
MapsTest.java 32 import com.google.common.base.Predicate;
1499 Predicate<Object> predicate = Predicates.alwaysFalse(); local
1510 Predicate<Entry<?, ?>> predicate = new Predicate<Entry<?, ?>>() { local
    [all...]
  /prebuilts/devtools/tools/lib/
monkeyrunner.jar 
  /prebuilts/gradle-plugin/com/android/tools/monkeyrunner/24.4.0-beta6/
monkeyrunner-24.4.0-beta6.jar 
  /prebuilts/gradle-plugin/com/android/tools/monkeyrunner/24.5.0/
monkeyrunner-24.5.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/monkeyrunner/25.0.0-alpha1/
monkeyrunner-25.0.0-alpha1.jar 
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
BindingGraphValidator.java 25 import com.google.common.base.Predicate;
199 new Predicate<TypeElement>() {
631 new Predicate<TypeElement>() {
    [all...]
ProducerFactoryGenerator.java 22 import com.google.common.base.Predicate;
162 new Predicate<DependencyRequest>() {
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 120 static bool isSignBitCheck(ICmpInst::Predicate pred, ConstantInt *RHS,
146 /// to zero and updates the predicate accordingly.
148 static bool isSignTest(ICmpInst::Predicate &pred, const ConstantInt *RHS) {
377 // predicate is expensive, only check it every 8 elements. This is only
601 ICmpInst::Predicate Cond,
    [all...]
InstCombineInternal.h 281 ICmpInst::Predicate Pred);
283 ICmpInst::Predicate Cond, Instruction &I);
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
IteratorsTest.java 28 import com.google.common.base.Predicate;
259 new Predicate<String>() {
273 Predicate<String> predicate = Predicates.equalTo("pants"); local
275 assertFalse(Iterators.any(list.iterator(), predicate)); local
277 assertFalse(Iterators.any(list.iterator(), predicate)); local
279 assertTrue(Iterators.any(list.iterator(), predicate)); local
284 Predicate<String> predicate = Predicates.equalTo("cool"); local
286 assertTrue(Iterators.all(list.iterator(), predicate)); local
288 assertTrue(Iterators.all(list.iterator(), predicate)); local
290 assertFalse(Iterators.all(list.iterator(), predicate)); local
    [all...]
  /external/testng/src/main/java/org/testng/internal/
Invoker.java 83 /** Predicate to filter methods */
84 private static Predicate<ITestNGMethod, IClass> CAN_RUN_FROM_CLASS = new CanRunFromClassPredicate();
85 /** Predicate to filter methods */
86 private static final Predicate<ITestNGMethod, IClass> SAME_CLASS = new SameClassNamePredicate();
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp     [all...]
  /art/compiler/utils/
intrusive_forward_list.h 278 template <typename Predicate>
279 void remove_if(Predicate pred) {
  /external/google-breakpad/src/testing/gtest/src/
gtest-internal-inl.h 278 // the given predicate.
279 template <class Container, typename Predicate>
280 inline int CountIf(const Container& c, Predicate predicate) {
285 if (predicate(*it))
341 // A predicate that checks the key of a TestProperty against a known key.
    [all...]
  /external/gtest/src/
gtest-internal-inl.h 280 // the given predicate.
281 template <class Container, typename Predicate>
282 inline int CountIf(const Container& c, Predicate predicate) {
287 if (predicate(*it))
343 // A predicate that checks the key of a TestProperty against a known key.
    [all...]
  /external/guava/guava/src/com/google/common/collect/
TreeRangeMap.java 28 import com.google.common.base.Predicate;
491 private boolean removeEntryIf(Predicate<? super Entry<Range<K>, V>> predicate) {
494 if (predicate.apply(entry)) {
  /external/guava/guava-testlib/src/com/google/common/testing/
ArbitraryInstances.java 28 import com.google.common.base.Predicate;
213 .put(Predicate.class, Predicates.alwaysTrue())
  /external/guice/extensions/throwingproviders/src/com/google/inject/throwingproviders/
ThrowingProviderBinder.java 21 import com.google.common.base.Predicate;
563 private static class NotSyntheticOrBridgePredicate implements Predicate<Method> {
  /external/llvm/include/llvm/Target/
TargetInstrInfo.h 93 /// predicate must return false if the instruction has any side effects other
176 /// not, return 0. This predicate must return 0 if the instruction has
203 /// not, return 0. This predicate must return 0 if the instruction has
463 /// Represents a predicate at the MachineFunction level. The control flow a
466 /// Reg <def>= LHS `Predicate` RHS == ConditionDef
476 ComparePredicate Predicate;
489 : Predicate(PRED_INVALID), LHS(MachineOperand::CreateImm(0)),
579 /// Return true if it's profitable to predicate
    [all...]
  /external/llvm/lib/CodeGen/
Analysis.cpp 163 ISD::CondCode llvm::getFCmpCondCode(FCmpInst::Predicate Pred) {
181 default: llvm_unreachable("Invalid FCmp predicate opcode!");
200 ISD::CondCode llvm::getICmpCondCode(ICmpInst::Predicate Pred) {
213 llvm_unreachable("Invalid ICmp predicate opcode!");
  /external/llvm/lib/Target/PowerPC/
PPCInstrInfo.cpp 752 default: llvm_unreachable("invalid predicate for isel");
    [all...]
  /external/llvm/lib/Transforms/Scalar/
LoopDistribute.cpp 510 /// the \p Predicate.
512 void mergeAdjacentPartitionsIf(UnaryPredicate Predicate) {
515 auto DoesMatch = Predicate(&*I);

Completed in 1569 milliseconds

1 2 3 4 5 6 7 8 91011>>