HomeSort by: relevance | last modified time | path
    Searched refs:IsInt (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-rc/
ResourceScriptStmt.h 137 bool IsInt;
141 IntOrString(uint32_t Value) : Data(Value), IsInt(1) {}
142 IntOrString(RCInt Value) : Data(Value), IsInt(1) {}
143 IntOrString(StringRef Value) : Data(Value), IsInt(0) {}
145 : Data(Token), IsInt(Token.kind() == RCToken::Kind::Int) {}
148 return !IsInt && Data.String.equals_lower(Str);
151 bool isInt() const { return IsInt; }
154 assert(IsInt);
159 assert(!IsInt);
    [all...]
ResourceScriptStmt.cpp 20 if (Item.IsInt)
  /src/external/apache2/llvm/dist/clang/lib/AST/
DeclCXX.cpp 3286 auto IsInt = [&Ctx](unsigned N) {
3324 return IsStruct({IsInt(32), IsInt(16), IsInt(16), IsArray(IsInt(8), 8)})(T);
ExprConstant.cpp 1511 bool IsInt;
1519 void makeComplexFloat() { IsInt = false; }
1520 bool isComplexFloat() const { return !IsInt; }
1524 void makeComplexInt() { IsInt = true; }
1525 bool isComplexInt() const { return IsInt; }
2640 if (!Value.isInt()) {
2662 if (SVal.isInt()) {
2680 if (Elt.isInt()) {
3856 if (!NewVal.isInt()) {
4345 if (RHS.isInt()) {
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
CombinerHelper.cpp 3136 bool IsInt = false;
3151 IsInt = true;
3155 if (IsInt)
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
TargetInfo.cpp 4719 bool isInt = !Ty->isFloatingType();
4730 if (isInt || IsSoftFloatABI) {
4767 if (!(isInt || IsSoftFloatABI)) {
4774 CharUnits RegSize = CharUnits::fromQuantity((isInt || IsSoftFloatABI) ? 4 : 8);
10553 bool IsInt = Ty->isIntegralOrEnumerationType();
10556 if (IsInt || IsFloat) {
10558 if (IsInt && Size > XLen)
10567 if (IsInt && Field1Ty && Field1Ty->isIntegerTy())

Completed in 32 milliseconds