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

  /external/sfntly/cpp/src/test/autogenerated/
cmap_basic_test.cc 90 ASSERT_LE(cmaps->size(), (size_t)num_cmaps_attr->IntValue());
93 int32_t platform_id = GetAttribute(*it, "platform_id")->IntValue();
94 int32_t encoding_id = GetAttribute(*it, "encoding_id")->IntValue();
99 GetAttribute(*it, "format")->IntValue());
113 int32_t glyph_id = GetAttribute(*jt, "gid")->IntValue();
  /external/guava/guava-tests/test/com/google/common/base/
EquivalenceTest.java 86 private static class IntValue {
89 IntValue(int value) {
100 .addEquivalenceGroup(new IntValue(1), new IntValue(1))
101 .addEquivalenceGroup(new IntValue(2))
  /external/llvm/lib/MC/
MCObjectStreamer.cpp 147 int64_t IntValue;
148 if (Value->EvaluateAsAbsolute(IntValue, getAssembler())) {
149 EmitULEB128IntValue(IntValue);
157 int64_t IntValue;
158 if (Value->EvaluateAsAbsolute(IntValue, getAssembler())) {
159 EmitSLEB128IntValue(IntValue);
MCAsmStreamer.cpp 679 int64_t IntValue;
680 if (!Value->EvaluateAsAbsolute(IntValue))
683 EmitIntValue((uint32_t)(IntValue >> 0 ), 4);
684 EmitIntValue((uint32_t)(IntValue >> 32), 4);
686 EmitIntValue((uint32_t)(IntValue >> 32), 4);
687 EmitIntValue((uint32_t)(IntValue >> 0 ), 4);
698 int64_t IntValue;
699 if (Value->EvaluateAsAbsolute(IntValue)) {
700 EmitULEB128IntValue(IntValue);
709 int64_t IntValue;
    [all...]
ELFObjectWriter.cpp 480 int64_t IntValue;
481 if (Value->EvaluateAsAbsolute(IntValue, Layout))
482 return (uint64_t)IntValue;
    [all...]
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]
  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.cpp 1272 int TiXmlAttribute::IntValue() const
    [all...]
tinyxml.h 816 int IntValue() const; ///< Return the value of this attribute, converted to an integer.
823 IntValue() method with richer error checking.
    [all...]
  /external/tinyxml/
tinyxml.cpp 1266 int TiXmlAttribute::IntValue() const
    [all...]
tinyxml.h 728 int IntValue() const; ///< Return the value of this attribute, converted to an integer.
732 IntValue() method with richer error checking.
    [all...]
  /external/llvm/lib/Target/ARM/
ARMAsmPrinter.cpp 112 unsigned IntValue;
201 Streamer.EmitULEB128IntValue(item.IntValue);
    [all...]
  /external/chromium/testing/gmock/test/
gmock-matchers_test.cc 469 class IntValue {
472 // IntValue.
473 explicit IntValue(int a_value) : value_(a_value) {}
481 bool IsPositiveIntValue(const IntValue& foo) {
493 Matcher<IntValue> m3 = Truly(IsPositiveIntValue);
496 // to IntValue objects, and then tested by the IsPositiveIntValue()
    [all...]
  /external/tinyxml2/
tinyxml2.h 781 int IntValue() const { int i=0; QueryIntValue( &i ); return i; }
    [all...]

Completed in 590 milliseconds