HomeSort by relevance Sort by last modified time
    Searched refs:m_Type (Results 1 - 25 of 45) sorted by null

1 2

  /frameworks/compile/mclinker/include/mcld/Target/
ELFAttributeValue.h 40 ELFAttributeValue() : m_Type(Uninitialized), m_IntValue(0), m_StringValue() {}
45 unsigned int type() const { return m_Type; }
47 void setType(unsigned int pType) { m_Type = pType; }
69 inline bool isUninitialized() const { return (m_Type == Uninitialized); }
73 inline bool isIntValue() const { return (m_Type & Int); }
75 inline bool isStringValue() const { return (m_Type & String); }
77 inline bool hasNoDefault() const { return (m_Type & NoDefault); }
98 m_Type = Uninitialized;
105 unsigned int m_Type;
  /frameworks/compile/mclinker/lib/Script/
InputToken.cpp 16 InputToken::InputToken() : m_Type(Unknown), m_bAsNeeded(false) {
20 : StrToken(StrToken::Input, pName), m_Type(pType), m_bAsNeeded(pAsNeeded) {
  /frameworks/compile/mclinker/include/mcld/Script/
InputToken.h 31 Type type() const { return m_Type; }
40 Type m_Type;
Assignment.h 44 Type type() const { return m_Type; }
65 Type m_Type;
OutputSectDesc.h 52 void setType(Type pType) { m_Type = pType; }
54 Type type() const { return m_Type; }
86 if (m_Type != pRHS.m_Type)
100 Type m_Type;
  /external/pdfium/core/fxge/
cfx_cliprgn.h 23 ClipType GetType() const { return m_Type; }
36 ClipType m_Type;
cfx_cliprgn.cpp 15 : m_Type(RectI), m_Box(0, 0, width, height) {}
18 m_Type = src.m_Type;
26 m_Type = RectI;
32 if (m_Type == RectI) {
36 if (m_Type == MaskF) {
45 m_Type = MaskF;
49 m_Type = RectI;
75 if (m_Type == RectI) {
79 if (m_Type == MaskF)
    [all...]
cfx_pathdata.h 24 return m_Type == type && !m_CloseFigure;
28 FXPT_TYPE m_Type;
40 FXPT_TYPE GetType(int index) const { return m_Points[index].m_Type; }
cfx_pathdata.cpp 163 : m_Point(point), m_Type(type), m_CloseFigure(close) {}
306 if (m_Points.size() == 3 && m_Points[0].m_Type == FXPT_TYPE::MoveTo &&
307 m_Points[1].m_Type == FXPT_TYPE::LineTo &&
308 m_Points[2].m_Type == FXPT_TYPE::LineTo &&
339 m_Points[mid - i - 1].m_Type != FXPT_TYPE::BezierTo &&
340 m_Points[mid + i + 1].m_Type != FXPT_TYPE::BezierTo)) {
359 FXPT_TYPE point_type = m_Points[i].m_Type;
364 if (m_Points[next].m_Type != FXPT_TYPE::BezierTo &&
365 m_Points[next].m_Type != FXPT_TYPE::MoveTo) {
396 } else if (m_Points[i - 1].m_Type == FXPT_TYPE::MoveTo &
    [all...]
  /frameworks/compile/mclinker/lib/MC/
Input.cpp 20 : m_Type(Unknown),
32 : m_Type(Unknown),
47 : m_Type(pType),
63 : m_Type(pType),
  /external/pdfium/core/fpdfdoc/
cpdf_structelement.cpp 19 : m_Type(Invalid),
35 m_Type(pDict->GetStringFor("S")),
38 ByteString mapped = pTree->GetRoleMap()->GetStringFor(m_Type);
40 m_Type = mapped;
52 return m_Kids[index].m_Type == CPDF_StructKid::Element
84 pKid->m_Type = CPDF_StructKid::Invalid;
92 pKid->m_Type = CPDF_StructKid::PageContent;
111 pKid->m_Type = CPDF_StructKid::StreamContent;
120 pKid->m_Type = CPDF_StructKid::Object;
127 pKid->m_Type = CPDF_StructKid::Element
    [all...]
cpdf_structelement.h 28 enum { Invalid, Element, PageContent, StreamContent, Object } m_Type;
42 const ByteString& GetType() const { return m_Type; }
62 ByteString m_Type;
cpdf_formfield.cpp 92 : m_Type(Unknown),
117 m_Type = RadioButton;
123 m_Type = PushButton;
125 m_Type = CheckBox;
129 m_Type = File;
131 m_Type = RichText;
133 m_Type = Text;
146 m_Type = ComboBox;
150 m_Type = ListBox;
156 m_Type = Sign
    [all...]
  /frameworks/compile/mclinker/include/mcld/MC/
Input.h 71 void setType(unsigned int pType) { m_Type = pType; }
73 unsigned int type() const { return m_Type; }
75 bool isRecognized() const { return (m_Type != Unknown); }
110 unsigned int m_Type;
  /frameworks/compile/mclinker/include/mcld/Fragment/
Stub.h 37 : m_Offset(pOffset), m_Addend(pAddend), m_Type(pType) {}
45 Type type() const { return m_Type; }
50 Type m_Type;
Relocation.h 69 Type type() const { return m_Type; }
109 /// m_Type - the type of the relocation entries
110 Type m_Type;
  /frameworks/compile/mclinker/lib/Fragment/
Relocation.cpp 63 : m_Type(0x0), m_TargetData(0x0), m_pSymInfo(NULL), m_Addend(0x0) {
70 : m_Type(pType),
127 m_Type = pType;
139 return pRelocator.getSize(m_Type);
  /frameworks/compile/mclinker/lib/Target/
ELFAttributeValue.cpp 53 if ((pValue.type() != m_Type) || isUninitialized())
  /external/pdfium/core/fpdfapi/page/
cpdf_streamcontentparser.cpp 296 if (m_ParamBuf[m_ParamStartPos].m_Type == ContentParam::OBJECT)
312 param.m_Type = ContentParam::OBJECT;
316 param.m_Type = ContentParam::NAME;
330 param.m_Type = ContentParam::NUMBER;
337 param.m_Type = ContentParam::OBJECT;
344 if (m_ParamBuf[index].m_Type == ContentParam::OBJECT)
363 if (param.m_Type == ContentParam::NUMBER) {
364 param.m_Type = ContentParam::OBJECT;
371 if (param.m_Type == ContentParam::NAME) {
372 param.m_Type = ContentParam::OBJECT
    [all...]
cpdf_function.cpp 60 : m_pDomains(nullptr), m_pRanges(nullptr), m_Type(type) {}
138 return m_Type == Type::kType0Sampled
144 return m_Type == Type::kType2ExpotentialInterpolation
150 return m_Type == Type::kType3Stitching
cpdf_function.h 61 const Type m_Type;
  /frameworks/compile/mclinker/include/mcld/LD/
ELFSegment.h 59 uint32_t type() const { return m_Type; }
90 if (llvm::ELF::PT_TLS != m_Type)
106 uint32_t m_Type; // Type of segment
LDSection.h 72 uint32_t type() const { return m_Type; }
130 void setType(uint32_t type) { m_Type = type; }
185 uint32_t m_Type;
  /frameworks/compile/mclinker/lib/LD/
ELFSegment.cpp 28 : m_Type(llvm::ELF::PT_NULL),
40 : m_Type(pType),
LDSection.cpp 27 m_Type(0x0),
47 m_Type(pType),

Completed in 327 milliseconds

1 2