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

  /external/fonttools/Lib/fontTools/ttLib/tables/
otConverters.py 91 class IntValue(SimpleValue):
95 class Long(IntValue):
127 class Short(IntValue):
133 class UShort(IntValue):
139 class UInt24(IntValue):
286 class ValueFormat(IntValue):
  /external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/
EquivalenceTest.java 85 private static class IntValue {
88 IntValue(int value) {
99 .addEquivalenceGroup(new IntValue(1), new IntValue(1))
100 .addEquivalenceGroup(new IntValue(2))
  /external/guava/guava-tests/test/com/google/common/base/
EquivalenceTest.java 95 private static class IntValue {
98 IntValue(int value) {
109 .addEquivalenceGroup(new IntValue(1), new IntValue(1))
110 .addEquivalenceGroup(new IntValue(2))
  /external/llvm/lib/MC/
MCObjectStreamer.cpp 174 int64_t IntValue;
175 if (Value->evaluateAsAbsolute(IntValue, getAssembler())) {
176 EmitULEB128IntValue(IntValue);
183 int64_t IntValue;
184 if (Value->evaluateAsAbsolute(IntValue, getAssembler())) {
185 EmitSLEB128IntValue(IntValue);
MCAsmStreamer.cpp 706 int64_t IntValue;
707 if (!Value->evaluateAsAbsolute(IntValue))
726 uint64_t ValueToEmit = IntValue >> (ByteOffset * 8);
748 int64_t IntValue;
749 if (Value->evaluateAsAbsolute(IntValue)) {
750 EmitULEB128IntValue(IntValue);
759 int64_t IntValue;
760 if (Value->evaluateAsAbsolute(IntValue)) {
761 EmitSLEB128IntValue(IntValue);
    [all...]
  /external/tinyxml/
tinyxml.cpp 1266 int TiXmlAttribute::IntValue() const
    [all...]
  /external/google-breakpad/src/testing/test/
gmock-matchers_test.cc 473 class IntValue {
476 // IntValue.
477 explicit IntValue(int a_value) : value_(a_value) {}
485 bool IsPositiveIntValue(const IntValue& foo) {
497 Matcher<IntValue> m3 = Truly(IsPositiveIntValue);
500 // to IntValue objects, and then tested by the IsPositiveIntValue()
    [all...]
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp     [all...]
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp     [all...]
  /external/tinyxml2/
tinyxml2.h 781 int IntValue() const { int i=0; QueryIntValue( &i ); return i; }
    [all...]
  /external/gmock/test/
gmock-matchers_test.cc 533 class IntValue {
536 // IntValue.
537 explicit IntValue(int a_value) : value_(a_value) {}
545 bool IsPositiveIntValue(const IntValue& foo) {
557 Matcher<IntValue> m3 = Truly(IsPositiveIntValue);
560 // to IntValue objects, and then tested by the IsPositiveIntValue()
    [all...]
  /external/llvm/lib/Target/Hexagon/AsmParser/
HexagonAsmParser.cpp     [all...]
  /external/clang/lib/Analysis/
CFG.cpp 660 llvm::APInt IntValue = IntLiteral->getValue();
661 if ((IntValue == 1) || (IntValue == 0))
665 !IntValue.isNegative();
722 llvm::APInt IntValue = IntLiteral->getValue();
723 if ((IntValue == 1) || (IntValue == 0)) {
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]

Completed in 522 milliseconds