/external/proguard/src/proguard/classfile/constant/ |
D | IntegerConstant.java | 31 public class IntegerConstant extends Constant class 39 public IntegerConstant() in IntegerConstant() method in IntegerConstant 47 public IntegerConstant(int value) in IntegerConstant() method in IntegerConstant
|
/external/llvm-project/clang-tools-extra/clang-tidy/cppcoreguidelines/ |
D | NarrowingConversionsCheck.cpp | 86 if (auto IntegerConstant = E.getIntegerConstantExpr(Ctx)) in getConstantExprValue() local 87 return APValue(*IntegerConstant); in getConstantExprValue() 168 const llvm::APSInt &IntegerConstant, in isWideEnoughToHold() argument 171 return ToIntegerRange.Contains(IntegerConstant); in isWideEnoughToHold() 260 llvm::APSInt IntegerConstant; in handleIntegralCast() local 261 if (getIntegerConstantExprValue(Context, Rhs, IntegerConstant)) { in handleIntegralCast() 262 if (!isWideEnoughToHold(Context, IntegerConstant, *ToType)) in handleIntegralCast() 263 diagNarrowIntegerConstantToSignedInt(SourceLoc, Lhs, Rhs, IntegerConstant, in handleIntegralCast() 285 llvm::APSInt IntegerConstant; in handleIntegralToFloating() local 286 if (getIntegerConstantExprValue(Context, Rhs, IntegerConstant)) { in handleIntegralToFloating() [all …]
|
/external/proguard/src/proguard/optimize/peephole/ |
D | InstructionSequenceReplacer.java | 384 …((IntegerConstant)(programClass.getConstant(instructionSequenceMatcher.matchedConstantIndex(argume… in argumentAsString() 389 …((IntegerConstant)(programClass.getConstant(instructionSequenceMatcher.matchedConstantIndex(argume… in argumentAsString() 394 …((IntegerConstant)(programClass.getConstant(instructionSequenceMatcher.matchedConstantIndex(argume… in argumentAsString()
|
D | InstructionSequenceConstants.java | 228 new IntegerConstant(32768), 229 new IntegerConstant(65536), 230 new IntegerConstant(16777216), 232 new IntegerConstant(0x0000ff00), 233 new IntegerConstant(0x00ff0000), 234 new IntegerConstant(0xff000000), 235 new IntegerConstant(0x0000ffff), 236 new IntegerConstant(0xffff0000),
|
/external/proguard/src/proguard/classfile/constant/visitor/ |
D | ConstantVisitor.java | 35 …public void visitIntegerConstant( Clazz clazz, IntegerConstant integerConstan… in visitIntegerConstant()
|
/external/proguard/src/proguard/classfile/editor/ |
D | ComparableConstant.java | 126 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant) in visitIntegerConstant() 129 int otherValue = ((IntegerConstant)otherConstant).getValue(); in visitIntegerConstant()
|
D | ConstantPoolEditor.java | 66 IntegerConstant integerConstant = (IntegerConstant)constant; in addIntegerConstant() 74 return addConstant(new IntegerConstant(value)); in addIntegerConstant()
|
D | ConstantAdder.java | 93 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant) in visitIntegerConstant()
|
D | ConstantPoolRemapper.java | 105 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant) in visitIntegerConstant()
|
/external/proguard/src/proguard/classfile/io/ |
D | LibraryClassReader.java | 239 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant) in visitIntegerConstant() 346 case ClassConstants.CONSTANT_Integer: return new IntegerConstant(); in createConstant()
|
D | ProgramClassReader.java | 220 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant) in visitIntegerConstant() 966 case ClassConstants.CONSTANT_Integer: return new IntegerConstant(); in createConstant()
|
D | ProgramClassWriter.java | 174 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant) in visitIntegerConstant()
|
/external/proguard/src/proguard/classfile/util/ |
D | InstructionSequenceMatcher.java | 367 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant) in visitIntegerConstant() 369 IntegerConstant integerPatternConstant = (IntegerConstant)patternConstant; in visitIntegerConstant()
|
D | SimplifiedVisitor.java | 125 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant) in visitIntegerConstant()
|
/external/proguard/src/proguard/evaluation/ |
D | ConstantValueFactory.java | 66 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant) in visitIntegerConstant()
|
/external/proguard/src/proguard/classfile/instruction/ |
D | ConstantInstruction.java | 221 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant) {} in visitIntegerConstant()
|
/external/deqp/external/openglcts/modules/gles31/ |
D | es31cLayoutBindingTests.cpp | 358 class IntegerConstant class 379 IntegerConstant(Literals lit, int ai) : asInt(ai) in IntegerConstant() function in glcts::IntegerConstant 1477 std::vector<IntegerConstant> integerConstants; in binding_integer_constant() 1478 for (int idx = 0; idx < IntegerConstant::last; idx++) in binding_integer_constant() 1482 integerConstants.push_back(IntegerConstant((IntegerConstant::Literals)idx, (*it))); in binding_integer_constant() 1487 …for (std::vector<IntegerConstant>::iterator it = integerConstants.begin(); it != integerConstants.… in binding_integer_constant() 1526 …for (std::vector<IntegerConstant>::iterator it = integerConstants.begin(); it != integerConstants.… in binding_integer_constant()
|
/external/proguard/src/proguard/shrink/ |
D | UsageMarker.java | 384 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant) in visitIntegerConstant()
|
/external/llvm/lib/Support/ |
D | APFloat.cpp | 1885 APInt IntegerConstant(NextPowerOf2(semanticsPrecision(*semantics)), 1); in roundToIntegral() local 1886 IntegerConstant <<= semanticsPrecision(*semantics)-1; in roundToIntegral() 1888 fs = MagicConstant.convertFromAPInt(IntegerConstant, false, in roundToIntegral()
|
/external/proguard/src/proguard/classfile/visitor/ |
D | ClassPrinter.java | 193 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant) in visitIntegerConstant()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | APFloat.cpp | 1879 APInt IntegerConstant(NextPowerOf2(semanticsPrecision(*semantics)), 1); in roundToIntegral() local 1880 IntegerConstant <<= semanticsPrecision(*semantics)-1; in roundToIntegral() 1882 fs = MagicConstant.convertFromAPInt(IntegerConstant, false, in roundToIntegral()
|
/external/llvm-project/llvm/lib/Support/ |
D | APFloat.cpp | 2059 APInt IntegerConstant(NextPowerOf2(semanticsPrecision(*semantics)), 1); in roundToIntegral() local 2060 IntegerConstant <<= semanticsPrecision(*semantics)-1; in roundToIntegral() 2062 fs = MagicConstant.convertFromAPInt(IntegerConstant, false, in roundToIntegral()
|
/external/flatbuffers/src/ |
D | idl_parser.cpp | 204 TD(IntegerConstant, 258, "integer constant") \
|