Home
last modified time | relevance | path

Searched refs:eType (Results 1 – 25 of 92) sorted by relevance

1234

/external/pdfium/core/fxcrt/css/
Dcfx_cssstyleselector.cpp175 CFX_CSSPrimitiveType eType = pValue->GetType(); in ApplyProperty() local
178 if (eType == CFX_CSSPrimitiveType::Enum) { in ApplyProperty()
185 if (eType == CFX_CSSPrimitiveType::Number) { in ApplyProperty()
187 } else if (eType == CFX_CSSPrimitiveType::Enum) { in ApplyProperty()
193 if (eType == CFX_CSSPrimitiveType::Number) { in ApplyProperty()
205 if (eType == CFX_CSSPrimitiveType::Enum) { in ApplyProperty()
212 eType, pValue, in ApplyProperty()
216 if (eType == CFX_CSSPrimitiveType::Enum) { in ApplyProperty()
219 } else if (eType == CFX_CSSPrimitiveType::Number) { in ApplyProperty()
228 if (eType == CFX_CSSPrimitiveType::Enum) { in ApplyProperty()
[all …]
Dcfx_cssvaluelistparser.cpp18 bool CFX_CSSValueListParser::NextValue(CFX_CSSPrimitiveType* eType, in NextValue() argument
27 *eType = CFX_CSSPrimitiveType::Unknown; in NextValue()
34 *eType = CFX_CSSPrimitiveType::RGB; in NextValue()
40 *eType = CFX_CSSPrimitiveType::Number; in NextValue()
46 *eType = CFX_CSSPrimitiveType::String; in NextValue()
51 *eType = CFX_CSSPrimitiveType::RGB; in NextValue()
55 *eType = CFX_CSSPrimitiveType::String; in NextValue()
Dcfx_cssdeclaration.cpp256 CFX_CSSPrimitiveType eType; in ParseCSSColor() local
259 if (!list.NextValue(&eType, &pszValue, &iValueLen)) in ParseCSSColor()
261 if (eType != CFX_CSSPrimitiveType::Number) in ParseCSSColor()
478 CFX_CSSPrimitiveType eType; in ParseValueListProperty() local
480 while (parser.NextValue(&eType, &pszValue, &iValueLen)) { in ParseValueListProperty()
481 switch (eType) { in ParseValueListProperty()
598 CFX_CSSPrimitiveType eType; in ParseBorderProperty() local
599 while (parser.NextValue(&eType, &pszValue, &iValueLen)) { in ParseBorderProperty()
600 switch (eType) { in ParseBorderProperty()
655 CFX_CSSPrimitiveType eType; in ParseFontProperty() local
[all …]
Dcfx_cssselector.h20 CFX_CSSSelector(CFX_CSSSelectorType eType,
35 void SetType(CFX_CSSSelectorType eType) { m_eType = eType; } in SetType() argument
/external/pdfium/core/fxcrt/xml/
Dcfx_saxreaderhandler.cpp22 CFX_SAXItem::Type eType, in OnTagEnter() argument
25 if (eType != CFX_SAXItem::Type::Tag && in OnTagEnter()
26 eType != CFX_SAXItem::Type::Instruction) { in OnTagEnter()
30 m_SAXContext.m_eNode = eType; in OnTagEnter()
32 if (eType == CFX_SAXItem::Type::Instruction) in OnTagEnter()
57 CFX_SAXItem::Type eType, in OnTagData() argument
63 if (eType == CFX_SAXItem::Type::CharData) in OnTagData()
67 if (eType == CFX_SAXItem::Type::CharData) in OnTagData()
94 CFX_SAXItem::Type eType, in OnTargetData() argument
97 if (!pTag && eType != CFX_SAXItem::Type::Comment) in OnTargetData()
[all …]
Dcfx_saxreaderhandler.h22 CFX_SAXItem::Type eType,
29 CFX_SAXItem::Type eType,
37 CFX_SAXItem::Type eType,
/external/pdfium/xfa/fxfa/parser/
Dcxfa_node.h161 size_t CountChildren(XFA_Element eType, bool bOnlyChild);
164 T* GetChild(size_t index, XFA_Element eType, bool bOnlyChild) { in GetChild() argument
165 return static_cast<T*>(GetChildInternal(index, eType, bOnlyChild)); in GetChild()
186 CXFA_Node* CreateSamePacketNode(XFA_Element eType);
205 T* GetFirstChildByClass(XFA_Element eType) const { in GetFirstChildByClass() argument
206 return static_cast<T*>(GetFirstChildByClassInternal(eType)); in GetFirstChildByClass()
214 T* GetNextSameClassSibling(XFA_Element eType) const { in GetNextSameClassSibling() argument
215 return static_cast<T*>(GetNextSameClassSiblingInternal(eType)); in GetNextSameClassSibling()
302 XFA_Element eType,
311 XFA_Element eType,
[all …]
Dcxfa_xmllocale.cpp28 WideString CXFA_XMLLocale::GetNumbericSymbol(FX_LOCALENUMSYMBOL eType) const { in GetNumbericSymbol()
31 switch (eType) { in GetNumbericSymbol()
140 FX_LOCALEDATETIMESUBCATEGORY eType) const { in GetDatePattern()
146 switch (eType) { in GetDatePattern()
165 FX_LOCALEDATETIMESUBCATEGORY eType) const { in GetTimePattern()
171 switch (eType) { in GetTimePattern()
189 WideString CXFA_XMLLocale::GetNumPattern(FX_LOCALENUMSUBCATEGORY eType) const { in GetNumPattern()
191 ? XFA_PatternToString(eType) in GetNumPattern()
Dcxfa_nodelocale.cpp54 WideString CXFA_NodeLocale::GetNumbericSymbol(FX_LOCALENUMSYMBOL eType) const { in GetNumbericSymbol()
55 switch (eType) { in GetNumbericSymbol()
103 FX_LOCALEDATETIMESUBCATEGORY eType) const { in GetDatePattern()
104 switch (eType) { in GetDatePattern()
119 FX_LOCALEDATETIMESUBCATEGORY eType) const { in GetTimePattern()
120 switch (eType) { in GetTimePattern()
134 WideString CXFA_NodeLocale::GetNumPattern(FX_LOCALENUMSUBCATEGORY eType) const { in GetNumPattern()
135 return XFA_PatternToString(eType); in GetNumPattern()
Dcxfa_xmllocale.h23 WideString GetNumbericSymbol(FX_LOCALENUMSYMBOL eType) const override;
32 WideString GetDatePattern(FX_LOCALEDATETIMESUBCATEGORY eType) const override;
33 WideString GetTimePattern(FX_LOCALEDATETIMESUBCATEGORY eType) const override;
34 WideString GetNumPattern(FX_LOCALENUMSUBCATEGORY eType) const override;
Dcxfa_nodelocale.h26 WideString GetNumbericSymbol(FX_LOCALENUMSYMBOL eType) const override;
35 WideString GetDatePattern(FX_LOCALEDATETIMESUBCATEGORY eType) const override;
36 WideString GetTimePattern(FX_LOCALEDATETIMESUBCATEGORY eType) const override;
37 WideString GetNumPattern(FX_LOCALENUMSUBCATEGORY eType) const override;
Dxfa_document_datamerger_imp.cpp131 XFA_Element eType = pFormNode->GetElementType(); in CreateDataBinding() local
132 if (eType != XFA_Element::Field && eType != XFA_Element::ExclGroup) in CreateDataBinding()
505 XFA_Element eType = pTemplateChild->GetElementType(); in NeedGenerateForm() local
506 if (eType == XFA_Element::Variables) in NeedGenerateForm()
510 if (eType == XFA_Element::Proto || in NeedGenerateForm()
511 (bUseInstanceManager && eType == XFA_Element::Occur)) { in NeedGenerateForm()
715 XFA_Element eType = pTemplateNode->GetElementType(); in CopyContainer_SubformSet() local
724 (eType == XFA_Element::SubformSet || eType == XFA_Element::Subform)) { in CopyContainer_SubformSet()
764 eType == XFA_Element::SubformSet in CopyContainer_SubformSet()
773 if (eType == XFA_Element::SubformSet || eType == XFA_Element::Area) { in CopyContainer_SubformSet()
[all …]
Dcxfa_box.cpp64 XFA_Element eType, in CXFA_Box() argument
73 eType, in CXFA_Box()
190 XFA_Element eType = GetElementType(); in Draw() local
191 if (eType != XFA_Element::Arc && eType != XFA_Element::Border && in Draw()
192 eType != XFA_Element::Rectangle) { in Draw()
196 if (!forceRound && eType != XFA_Element::Arc) in Draw()
Dcxfa_node.cpp179 XFA_Element eType, in CXFA_Node() argument
184 : CXFA_Object(pDoc, oType, eType, elementName, std::move(js_node)), in CXFA_Node()
204 XFA_Element eType, in CXFA_Node() argument
212 eType, in CXFA_Node()
456 CXFA_Node* CXFA_Node::CreateSamePacketNode(XFA_Element eType) { in CreateSamePacketNode() argument
457 CXFA_Node* pNode = m_pDocument->CreateNode(m_ePacket, eType); in CreateSamePacketNode()
563 XFA_Element eType = GetElementType(); in GetContainerWidgetAcc() local
564 if (eType == XFA_Element::ExclGroup) in GetContainerWidgetAcc()
570 if (eType == XFA_Element::Field) { in GetContainerWidgetAcc()
778 size_t CXFA_Node::CountChildren(XFA_Element eType, bool bOnlyChild) { in CountChildren() argument
[all …]
Dcxfa_fill.cpp81 XFA_Element eType = pChild->GetElementType(); in GetType() local
82 if (eType != XFA_Element::Color && eType != XFA_Element::Extras) in GetType()
83 return eType; in GetType()
/external/pdfium/fxjs/xfa/
Dcjx_layoutpseudomodel.cpp253 XFA_Element eType = pItemChild->m_pFormNode->GetElementType(); in GetObjArray() local
254 if (eType != XFA_Element::Field && eType != XFA_Element::Draw && in GetObjArray()
255 eType != XFA_Element::Subform && eType != XFA_Element::Area) { in GetObjArray()
275 XFA_Element eType = pItemChild->m_pFormNode->GetElementType(); in GetObjArray() local
276 if (eType != XFA_Element::Field && eType != XFA_Element::Draw && in GetObjArray()
277 eType != XFA_Element::Subform && eType != XFA_Element::Area) { in GetObjArray()
291 XFA_Element eType = XFA_Element::Unknown; in GetObjArray() local
293 eType = XFA_Element::Field; in GetObjArray()
295 eType = XFA_Element::Draw; in GetObjArray()
297 eType = XFA_Element::Subform; in GetObjArray()
[all …]
Dcjx_object.h99 T* GetProperty(int32_t index, XFA_Element eType) const { in GetProperty() argument
102 std::tie(node, count) = GetPropertyInternal(index, eType); in GetProperty()
106 T* GetOrCreateProperty(int32_t index, XFA_Element eType) { in GetOrCreateProperty() argument
107 return static_cast<T*>(GetOrCreatePropertyInternal(index, eType)); in GetOrCreateProperty()
238 XFA_Element eType) const;
239 CXFA_Node* GetOrCreatePropertyInternal(int32_t index, XFA_Element eType);
250 XFA_AttributeType eType,
/external/pdfium/core/fpdfdoc/
Dcpdf_aaction.cpp47 bool CPDF_AAction::ActionExist(AActionType eType) const { in ActionExist()
48 return m_pDict && m_pDict->KeyExist(g_sAATypes[eType]); in ActionExist()
51 CPDF_Action CPDF_AAction::GetAction(AActionType eType) const { in GetAction()
52 return CPDF_Action(m_pDict ? m_pDict->GetDictFor(g_sAATypes[eType]) in GetAction()
/external/swiftshader/third_party/PowerVR_SDK/Tools/
DPVRTVertex.h54 const EPVRTDataType eType,
67 const EPVRTDataType eType);
79 const EPVRTDataType eType,
92 const EPVRTDataType eType,
DPVRTModelPOD.cpp241 eType = EPODDataFloat; in Reset()
775 if(!WriteData32(pFile, ePODFileDataType, &n.eType)) return false; in WriteCPODData()
780 switch(PVRTModelPODDataTypeSize(n.eType)) in WriteCPODData()
855 switch(PVRTModelPODDataTypeSize(pCPODData[j]->eType)) in WriteInterleaved()
985 if(!WriteData32(pFile, ePODFileLightType, &s.pLight[i].eType)) return false; in WritePOD()
987 if(s.pLight[i].eType != ePODDirectional) in WritePOD()
994 if(s.pLight[i].eType == ePODSpot) in WritePOD()
1165 case ePODFileDataType: if(!src.Read32(s.eType)) return false; break; in ReadCPODData()
1171 switch(PVRTModelPODDataTypeSize(s.eType)) in ReadCPODData()
1266 case ePODFileLightType: if(!src.Read32(s.eType)) return false; break; in ReadLight()
[all …]
/external/pdfium/core/fxcrt/
Dfx_arabic.cpp148 FX_CHARTYPE* eType) { in ParseChar() argument
150 *eType = FX_CHARTYPE_Unknown; in ParseChar()
155 *eType = pTC->GetCharType(); in ParseChar()
158 if (!pFT || *eType >= FX_CHARTYPE_ArabicNormal) in ParseChar()
159 *eType = FX_CHARTYPE_Unknown; in ParseChar()
Difx_locale.h62 virtual WideString GetNumbericSymbol(FX_LOCALENUMSYMBOL eType) const = 0;
70 FX_LOCALEDATETIMESUBCATEGORY eType) const = 0;
72 FX_LOCALEDATETIMESUBCATEGORY eType) const = 0;
73 virtual WideString GetNumPattern(FX_LOCALENUMSUBCATEGORY eType) const = 0;
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMDefaultBaseIterators.java472 int eType; in next() local
483 eType = _exptype(node); in next()
484 if (eType < DTM.NTYPES) { in next()
485 if (eType == nodeType) { in next()
488 } else if (m_expandedNameTable.getType(eType) == nodeType) { in next()
937 int eType; in next() local
946 eType = _exptype(node); in next()
947 if (eType < DTM.NTYPES) { in next()
948 if (eType == nodeType) { in next()
951 } else if (m_expandedNameTable.getType(eType) == nodeType) { in next()
[all …]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
DSAX2DTM2.java285 int eType; in next() local
287 eType = _exptype2(node); in next()
288 if (eType >= DTM.NTYPES) in next()
1443 int eType = _exptype2(nodeID); in setStartNode() local
1445 if (eType == nodeType) { in setStartNode()
1459 int eType = _exptype2(nodeID); in setStartNode() local
1461 if ((eType < DTM.NTYPES && eType == nodeType) in setStartNode()
1462 || (eType >= DTM.NTYPES in setStartNode()
1463 && m_extendedTypes[eType].getNodeType() == nodeType)) { in setStartNode()
1583 int eType; in next() local
[all …]
/external/pdfium/xfa/fxfa/
Dcxfa_fftextedit.cpp89 XFA_Element eType; in UpdateWidgetProperty() local
91 std::tie(eType, iMaxChars) = m_pNode->GetWidgetAcc()->GetMaxChars(); in UpdateWidgetProperty()
92 if (eType == XFA_Element::ExData) in UpdateWidgetProperty()
258 XFA_VALUEPICTURE eType = XFA_VALUEPICTURE_Display; in UpdateFWLData() local
260 eType = XFA_VALUEPICTURE_Edit; in UpdateFWLData()
269 iMaxChars = eType == XFA_VALUEPICTURE_Edit ? iMaxChars : 0; in UpdateFWLData()
276 if (eType == XFA_VALUEPICTURE_Edit) in UpdateFWLData()
283 WideString wsText = m_pNode->GetWidgetAcc()->GetValue(eType); in UpdateFWLData()
285 if (wsText != wsOldText || (eType == XFA_VALUEPICTURE_Edit && bUpdate)) { in UpdateFWLData()

1234