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

  /external/clang/lib/StaticAnalyzer/Checkers/
CStringSyntaxChecker.cpp 68 inline bool isOne(const Expr *E) {
120 if (isSizeof(L, DstArg) && isOne(R->IgnoreParenCasts()))
  /external/clang/include/clang/AST/
CharUnits.h 119 /// isOne - Test whether the quantity equals one.
120 bool isOne() const { return Quantity == 1; }
  /external/llvm/include/llvm/
Constants.h 169 bool isOne() const {
    [all...]
  /external/llvm/lib/VMCore/
ConstantFold.cpp 614 bool isOne = isa<ConstantInt>(Idx) && cast<ConstantInt>(Idx)->isOne();
615 if (Constant *C = getFoldedSizeOf(Ty, DestTy, !isOne)) {
627 if (CI->isOne() &&
    [all...]
  /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/Analysis/
ScalarEvolution.cpp 273 bool SCEV::isOne() const {
275 return SC->getValue()->isOne();
387 if (CI->isOne()) {
409 if (CI->isOne() &&
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h     [all...]

Completed in 1204 milliseconds