Esempio n. 1
0
bool cellLess(const Cell* cell, int64_t val) {
  return cellRelOp(Lt(), cell, val);
}
Esempio n. 2
0
bool cellGreater(Cell cell, const ArrayData* val) {
    return cellRelOp(Gt(), cell, val);
}
Esempio n. 3
0
bool cellGreater(Cell cell, const ResourceData* val) {
    return cellRelOp(Gt(), cell, val);
}
Esempio n. 4
0
bool cellGreater(Cell cell, bool val) {
    return cellRelOp(Gt(), cell, val);
}
Esempio n. 5
0
bool cellGreater(Cell cell, double val) {
    return cellRelOp(Gt(), cell, val);
}
Esempio n. 6
0
bool cellLess(Cell cell, const ArrayData* val) {
    return cellRelOp(Lt(), cell, val);
}
Esempio n. 7
0
bool cellLess(Cell cell, const ResourceData* val) {
    return cellRelOp(Lt(), cell, val);
}
Esempio n. 8
0
bool cellEqual(Cell cell, int64_t val) {
    return cellRelOp(Eq(), cell, val);
}
Esempio n. 9
0
bool cellEqual(Cell cell, double val) {
    return cellRelOp(Eq(), cell, val);
}
Esempio n. 10
0
bool cellGreater(const Cell* c1, const Cell* c2) {
  return cellRelOp(Gt(), c1, c2);
}
Esempio n. 11
0
bool cellEqual(Cell cell, bool val) {
    return cellRelOp(Eq(), cell, val);
}
Esempio n. 12
0
bool cellGreater(const Cell* cell, bool val) {
  return cellRelOp(Gt(), cell, val);
}
Esempio n. 13
0
bool cellLess(const Cell* c1, const Cell* c2) {
  return cellRelOp(Lt(), c1, c2);
}
Esempio n. 14
0
bool cellLess(const Cell* cell, double val) {
  return cellRelOp(Lt(), cell, val);
}
Esempio n. 15
0
bool cellLess(Cell cell, double val) {
    return cellRelOp(Lt(), cell, val);
}
Esempio n. 16
0
bool cellEqual(Cell cell, const StringData* val) {
    return cellRelOp(Eq(), cell, val);
}
Esempio n. 17
0
bool cellLess(Cell cell, const StringData* val) {
    return cellRelOp(Lt(), cell, val);
}
Esempio n. 18
0
bool cellEqual(Cell cell, const ArrayData* val) {
    return cellRelOp(Eq(), cell, val);
}
Esempio n. 19
0
bool cellLess(Cell cell, const ObjectData* val) {
    return cellRelOp(Lt(), cell, val);
}
Esempio n. 20
0
bool cellEqual(Cell cell, const ObjectData* val) {
    return cellRelOp(Eq(), cell, val);
}
Esempio n. 21
0
bool cellLess(Cell c1, Cell c2) {
    return cellRelOp(Lt(), c1, c2);
}
Esempio n. 22
0
bool cellEqual(Cell cell, const ResourceData* val) {
    return cellRelOp(Eq(), cell, val);
}
Esempio n. 23
0
bool cellGreater(Cell cell, int64_t val) {
    return cellRelOp(Gt(), cell, val);
}
Esempio n. 24
0
bool cellEqual(Cell c1, Cell c2) {
    return cellRelOp(Eq(), c1, c2);
}
Esempio n. 25
0
bool cellGreater(Cell cell, const StringData* val) {
    return cellRelOp(Gt(), cell, val);
}
Esempio n. 26
0
bool cellLess(Cell cell, bool val) {
    return cellRelOp(Lt(), cell, val);
}
Esempio n. 27
0
bool cellGreater(Cell cell, const ObjectData* val) {
    return cellRelOp(Gt(), cell, val);
}
Esempio n. 28
0
bool cellLess(Cell cell, int64_t val) {
    return cellRelOp(Lt(), cell, val);
}
Esempio n. 29
0
bool cellGreater(Cell c1, Cell c2) {
    return cellRelOp(Gt(), c1, c2);
}
Esempio n. 30
0
bool cellEqual(const Cell* c1, const Cell* c2) {
  return cellRelOp(Eq(), c1, c2);
}