Searched refs:IntValue (Results 1 - 10 of 10) sorted by relevance

/external/guava/guava-tests/test/com/google/common/base/
H A DEquivalenceTest.java86 private static class IntValue { class in class:EquivalenceTest
89 IntValue(int value) { method in class:EquivalenceTest.IntValue
100 .addEquivalenceGroup(new IntValue(1), new IntValue(1))
101 .addEquivalenceGroup(new IntValue(2))
/external/llvm/lib/MC/
H A DMCObjectStreamer.cpp142 int64_t IntValue; local
143 if (Value->EvaluateAsAbsolute(IntValue, getAssembler())) {
144 EmitULEB128IntValue(IntValue);
152 int64_t IntValue; local
153 if (Value->EvaluateAsAbsolute(IntValue, getAssembler())) {
154 EmitSLEB128IntValue(IntValue);
H A DMCAsmStreamer.cpp687 int64_t IntValue; local
688 if (!Value->EvaluateAsAbsolute(IntValue))
691 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
692 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
694 EmitIntValue((uint32_t)(IntValue >> 32), 4, AddrSpace);
695 EmitIntValue((uint32_t)(IntValue >> 0 ), 4, AddrSpace);
706 int64_t IntValue; local
707 if (Value->EvaluateAsAbsolute(IntValue)) {
708 EmitULEB128IntValue(IntValue);
717 int64_t IntValue; local
[all...]
H A DELFObjectWriter.cpp480 int64_t IntValue; local
481 if (Value->EvaluateAsAbsolute(IntValue, Layout))
482 return (uint64_t)IntValue;
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp2224 uint64_t IntValue = MCE->getValue(); local
2225 if (!isUIntN(8 * Size, IntValue) && !isIntN(8 * Size, IntValue))
2227 getStreamer().EmitIntValue(IntValue, Size, DEFAULT_ADDRSPACE);
4014 uint64_t IntValue = MCE->getValue();
4015 if (!isUIntN(8, IntValue) && !isIntN(8, IntValue))
4030 uint64_t IntValue = MCE->getValue();
4031 if (!isPowerOf2_64(IntValue))
4035 Log2_64(IntValue)));
[all...]
/external/tinyxml/
H A Dtinyxml.cpp1266 int TiXmlAttribute::IntValue() const function in class:TiXmlAttribute
H A Dtinyxml.h728 int IntValue() const; ///< Return the value of this attribute, converted to an integer.
732 IntValue() method with richer error checking.
/external/llvm/lib/Target/ARM/
H A DARMAsmPrinter.cpp112 unsigned IntValue; member in struct:__anon9653::ObjectAttributeEmitter::AttributeItemType
201 Streamer.EmitULEB128IntValue(item.IntValue);
/external/chromium/testing/gmock/test/
H A Dgmock-matchers_test.cc469 class IntValue { class in namespace:testing::gmock_matchers_test
472 // IntValue.
473 explicit IntValue(int a_value) : value_(a_value) {} function in class:testing::gmock_matchers_test::IntValue
481 bool IsPositiveIntValue(const IntValue& foo) {
493 Matcher<IntValue> m3 = Truly(IsPositiveIntValue);
496 // to IntValue objects, and then tested by the IsPositiveIntValue()
/external/tinyxml2/
H A Dtinyxml2.h781 int IntValue() const { int i=0; QueryIntValue( &i ); return i; } function in class:tinyxml2::XMLAttribute

Completed in 398 milliseconds