HomeSort by relevance Sort by last modified time
    Searched defs:isOne (Results 1 - 10 of 10) sorted by null

  /external/clang/lib/StaticAnalyzer/Checkers/
CStringSyntaxChecker.cpp 68 inline bool isOne(const Expr *E) {
121 if (isSizeof(L, DstArg) && isOne(R->IgnoreParenCasts()))
  /external/clang/include/clang/AST/
CharUnits.h 118 /// isOne - Test whether the quantity equals one.
119 bool isOne() const { return Quantity == 1; }
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
file_tasks.js 462 var isOne = function(e) {
466 return props.filter(isOne).length === props.length;
  /external/llvm/include/llvm/IR/
Constants.h 168 bool isOne() const {
    [all...]
  /external/llvm/include/llvm/Support/
ScaledNumber.h 546 bool isOne() const {
  /external/guava/guava-tests/test/com/google/common/base/
PredicatesTest.java 508 Predicate<Integer> isOne = Predicates.equalTo(1);
510 assertTrue(isOne.apply(1));
511 assertFalse(isOne.apply(2));
512 assertFalse(isOne.apply(null));
  /external/llvm/lib/IR/
ConstantFold.cpp 621 bool isOne = isa<ConstantInt>(Idx) && cast<ConstantInt>(Idx)->isOne();
622 if (Constant *C = getFoldedSizeOf(Ty, DestTy, !isOne)) {
634 if (CI->isOne() &&
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 279 bool SCEV::isOne() const {
281 return SC->getValue()->isOne();
393 if (CI->isOne()) {
415 if (CI->isOne() &&
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp 63 bool isOne() const { return isInt() && IntVal == 1; }
296 if (That.isOne())
421 if (!BreakNum || Coeff.isOne())
573 return CE.isOne() ? Opnd0.getSymVal() : nullptr;
827 if (!CE.isMinusOne() && !CE.isOne())
854 if (Coeff.isMinusOne() || Coeff.isOne()) {
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h     [all...]

Completed in 487 milliseconds