HomeSort by relevance Sort by last modified time
    Searched defs:Predicate (Results 26 - 50 of 387) sorted by null

12 3 4 5 6 7 8 91011>>

  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/CodeGen/GlobalISel/
InstructionSelectorImpl.h 156 int64_t Predicate = MatchTable[CurrentIdx++];
158 << "], Predicate=" << Predicate << ")\n");
162 assert(Predicate > GIPFP_I64_Invalid && "Expected a valid predicate");
171 if (!MatcherInfo.I64ImmPredicateFns[Predicate](Value))
178 int64_t Predicate = MatchTable[CurrentIdx++];
180 << InsnID << "], Predicate=" << Predicate << ")\n");
183 assert(Predicate > GIPFP_APInt_Invalid && "Expected a valid predicate")
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/CodeGen/GlobalISel/
InstructionSelectorImpl.h 156 int64_t Predicate = MatchTable[CurrentIdx++];
158 << "], Predicate=" << Predicate << ")\n");
162 assert(Predicate > GIPFP_I64_Invalid && "Expected a valid predicate");
171 if (!MatcherInfo.I64ImmPredicateFns[Predicate](Value))
178 int64_t Predicate = MatchTable[CurrentIdx++];
180 << InsnID << "], Predicate=" << Predicate << ")\n");
183 assert(Predicate > GIPFP_APInt_Invalid && "Expected a valid predicate")
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
SemanticContext.java 40 * an NFA configuration is valid. It's either a single predicate or
52 * I have scoped the AND, NOT, OR, and Predicate subclasses of
65 public static final SemanticContext EMPTY_SEMANTIC_CONTEXT = new Predicate(Predicate.INVALID_PRED_VALUE);
87 public static class Predicate extends SemanticContext {
88 /** The AST node in tree created from the grammar holding the predicate */
91 /** Is this a {...}?=> gating predicate or a normal disambiguating {..}?
92 * If any predicate in expression is gated, then expression is considered
95 * The simple Predicate object's predicate AST's type is used to se
309 CommutativePredicate predicate = (CommutativePredicate)a; local
316 CommutativePredicate predicate = (CommutativePredicate)b; local
328 CommutativePredicate predicate = (CommutativePredicate)context; local
    [all...]
  /external/clang/lib/Analysis/
BodyFarm.cpp 177 const ParmVarDecl *Predicate = D->getParamDecl(0);
178 QualType PredicateQPtrTy = Predicate->getType();
192 // Everything checks out. Create a fakse body that checks the predicate,
195 // void dispatch_once(dispatch_once_t *predicate, dispatch_block_t block) {
196 // if (!*predicate) {
197 // *predicate = 1;
210 // (2) Create the assignment to the predicate.
218 M.makeDeclRefExpr(Predicate), PredicateQPtrTy),
232 M.makeDeclRefExpr(Predicate),
  /external/llvm/lib/Target/Hexagon/MCTargetDesc/
HexagonMCCompound.cpp 153 // that predicate register will match. Nevertheless,
181 const MCOperand &Predicate = HMCI.getOperand(0);
182 unsigned PredReg = Predicate.getReg();
  /external/llvm/lib/Transforms/Utils/
FlattenCFG.cpp 247 CmpInst::Predicate Predicate = CI->getPredicate();
249 if ((Predicate == CmpInst::ICMP_NE) || (Predicate == CmpInst::FCMP_ONE)) {
250 CI->setPredicate(ICmpInst::getInversePredicate(Predicate));
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_parse.h 91 struct tgsi_instruction_predicate Predicate;
tgsi_ureg.h 82 unsigned Predicate : 1;
604 boolean predicate,
742 dst.Predicate, \
767 dst.Predicate, \
793 dst.Predicate, \
821 dst.Predicate, \
850 dst.Predicate, \
    [all...]
  /external/v8/src/
unicode.h 28 class Predicate {
30 inline Predicate() { }
  /external/swiftshader/third_party/LLVM/include/llvm/
InstrTypes.h 645 /// predicate values are not overlapping between the classes.
646 enum Predicate {
686 /// Construct a compare instruction, given the opcode, the predicate and
692 unsigned short predicate, Value *S1,
696 /// Construct a compare instruction, given the opcode, the predicate and the
700 static CmpInst *Create(OtherOps Op, unsigned short predicate, Value *S1,
708 /// @brief Return the predicate for this instruction.
709 Predicate getPredicate() const {
710 return Predicate(getSubclassDataFromInstruction());
713 /// @brief Set the predicate for this instruction to the specified value
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/wm/
TaskSnapshotPersisterLoaderTest.java 72 private void assertTrueForFiles(File[] files, Predicate<File> predicate, String message) {
74 assertTrue(file.getName() + message, predicate.apply(file));
293 * Private predicate definition.
295 * This is needed because com.android.internal.util.Predicate is deprecated
297 * use java.util.function.Predicate because that is not present on all API
300 private interface Predicate<T> {
  /external/clang/test/Sema/
warn-documentation.cpp 1077 /// @class Predicate Predicate.h "lldb/Host/Predicate.h"
1085 class Predicate
1090 /// @class Predicate<int, char> Predicate.h "lldb/Host/Predicate.h"
1096 template<> class Predicate<int, char>
1101 /// @class Predicate<T, int> Predicate.h "lldb/Host/Predicate.h
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
XCldrStub.java 405 public interface Predicate<T> {
407 * Evaluates this predicate on the given argument.
410 * @return {@code true} if the input argument matches the predicate,
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
XCldrStub.java 403 public interface Predicate<T> {
405 * Evaluates this predicate on the given argument.
408 * @return {@code true} if the input argument matches the predicate,
  /external/llvm/lib/Fuzzer/
FuzzerTraceState.cpp 100 enum Predicate {
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCInstrDesc.h 38 Predicate,
79 /// the predicate operand that controls an isPredicable() instruction.
80 bool isPredicate() const { return Flags & (1 << MCOI::Predicate); }
93 /// implementation of the MCInstrDesc class. Clients should use the predicate
302 /// operand list that is used to represent the predicate. It returns -1 if
353 // isPredicable - Return true if this instruction has a predicate operand that
356 /// control and modify the predicate in this instruction.
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
PatternMatch.h 139 /// that satisfy a specified predicate.
140 template<typename Predicate>
141 struct cst_pred_ty : public Predicate {
154 /// that satisfy a specified predicate, and bind them to an APInt.
155 template<typename Predicate>
156 struct api_pred_ty : public Predicate {
449 PredicateTy &Predicate;
454 : Predicate(Pred), L(LHS), R(RHS) {}
460 Predicate = I->getPredicate();
468 inline CmpClass_match<LHS, RHS, ICmpInst, ICmpInst::Predicate>
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/result/
BugreportCollector.java 45 /** A predefined predicate which fires after each failed testcase */
46 public static final Predicate AFTER_FAILED_TESTCASES =
48 /** A predefined predicate which fires as the first invocation begins */
49 public static final Predicate AT_START =
83 * A full predicate describing when to capture a bugreport. Has the following required elements
87 public static class Predicate {
91 public Predicate(Relation rp, Freq fp, Noun n) throws IllegalArgumentException {
99 public Predicate(Relation rp, Freq fp, Noun fpN, Filter filterP, Noun filterPN)
117 "Illegal predicate: %s %s isn't valid since we can only check " +
126 "Illegal predicate: Since there is only one invocation, please use "
    [all...]
  /tools/tradefederation/core/tests/src/com/android/tradefed/result/
BugreportCollectorTest.java 23 import com.android.tradefed.result.BugreportCollector.Predicate;
85 Predicate foo = new Predicate(Relation.AFTER, Freq.EACH, Noun.TESTCASE);
90 Predicate foo = new Predicate(Relation.AFTER, Freq.EACH, Noun.TESTCASE);
91 Predicate bar = new Predicate(Relation.AFTER, Freq.EACH, Noun.TESTCASE);
92 Predicate baz = new Predicate(Relation.AFTER, Freq.EACH, Noun.INVOCATION);
101 Predicate shortP = new Predicate(Relation.AFTER, Freq.EACH, Noun.INVOCATION)
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/antlr/
syn.h 84 /* a predicate is defined to be a predicate action and a token tree with
115 ActionNode *source; /* where did this predicate come from? */
117 struct _anode *source; /* where did this predicate come from? */
121 char redundant; /* MR10 predicate tree simplification */
132 } Predicate;
217 int is_predicate; /* true if action is a <<...>>? predicate action */
220 char *pred_fail; /* what to do/print when predicate fails */
221 Predicate *guardpred; /* if '(context)? =>' was present, already done */
226 Predicate *ampersandPred; /* MR10 (g)? && <<p>>? expr */
365 Predicate *predicate;\/* predicate that can be used to disambiguate *\/ member in struct:Junction::_junct
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/compiler/
XPathParser.java     [all...]
  /external/llvm/include/llvm/IR/
InstrTypes.h     [all...]
  /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/include/llvm/Target/
TargetInstrInfo.h 95 /// predicate must return false if the instruction has any side effects other
178 /// not, return 0. This predicate must return 0 if the instruction has
205 /// not, return 0. This predicate must return 0 if the instruction has
477 /// Represents a predicate at the MachineFunction level. The control flow a
480 /// Reg <def>= LHS `Predicate` RHS == ConditionDef
490 ComparePredicate Predicate;
503 : Predicate(PRED_INVALID), LHS(MachineOperand::CreateImm(0)),
616 /// Return true if it's profitable to predicate
    [all...]
  /external/llvm/lib/IR/
ConstantFold.cpp     [all...]

Completed in 1291 milliseconds

12 3 4 5 6 7 8 91011>>