Searched refs:iIndex (Results 1 - 25 of 53) sorted by relevance

123

/external/skia/tests/
H A DPathOpsCubicLineIntersectionTest.cpp27 static void testFail(skiatest::Reporter* reporter, int iIndex) { argument
28 const CubicPts& cuPts = failLineCubicTests[iIndex].cubic;
32 const SkDLine& line = failLineCubicTests[iIndex].line;
39 SkDebugf("[%d] cubic order=%d\n", iIndex, order1);
43 SkDebugf("[%d] line order=%d\n", iIndex, order2);
127 static void testOne(skiatest::Reporter* reporter, int iIndex) { argument
128 const CubicPts& cuPts = lineCubicTests[iIndex].cubic;
132 const SkDLine& line = lineCubicTests[iIndex].line;
139 SkDebugf("[%d] cubic order=%d\n", iIndex, order1);
143 SkDebugf("[%d] line order=%d\n", iIndex, order
178 int iIndex = static_cast<int>(index); local
186 int iIndex = static_cast<int>(index); local
193 int iIndex = 0; local
[all...]
H A DPathOpsCubicQuadIntersectionTest.cpp55 int iIndex = static_cast<int>(index); local
69 SkDebugf("[%d] cubic order=%d\n", iIndex, order1);
73 SkDebugf("[%d] quad order=%d\n", iIndex, order2);
85 __FUNCTION__, iIndex, pt, tt1, xy1.fX, xy1.fY, tt2, xy2.fX, xy2.fY);
H A DPathOpsQuadLineIntersectionTest.cpp110 int iIndex = static_cast<int>(index); local
121 SkDebugf("%s [%d] quad order=%d\n", __FUNCTION__, iIndex, order1);
125 SkDebugf("%s [%d] line order=%d\n", __FUNCTION__, iIndex, order2);
144 __FUNCTION__, iIndex, pt, tt1, t1.fX, t1.fY, tt2, t2.fX, t2.fY);
H A DPathOpsConicLineIntersectionTest.cpp100 int iIndex = static_cast<int>(index); local
115 SkDebugf("%s [%d] conic verb=%d\n", __FUNCTION__, iIndex, order1);
120 SkDebugf("%s [%d] line order=%d\n", __FUNCTION__, iIndex, order2);
139 __FUNCTION__, iIndex, pt, tt1, t1.fX, t1.fY, tt2, t2.fX, t2.fY);
/external/skqp/tests/
H A DPathOpsCubicLineIntersectionTest.cpp27 static void testFail(skiatest::Reporter* reporter, int iIndex) { argument
28 const CubicPts& cuPts = failLineCubicTests[iIndex].cubic;
32 const SkDLine& line = failLineCubicTests[iIndex].line;
39 SkDebugf("[%d] cubic order=%d\n", iIndex, order1);
43 SkDebugf("[%d] line order=%d\n", iIndex, order2);
127 static void testOne(skiatest::Reporter* reporter, int iIndex) { argument
128 const CubicPts& cuPts = lineCubicTests[iIndex].cubic;
132 const SkDLine& line = lineCubicTests[iIndex].line;
139 SkDebugf("[%d] cubic order=%d\n", iIndex, order1);
143 SkDebugf("[%d] line order=%d\n", iIndex, order
178 int iIndex = static_cast<int>(index); local
186 int iIndex = static_cast<int>(index); local
193 int iIndex = 0; local
[all...]
H A DPathOpsCubicQuadIntersectionTest.cpp55 int iIndex = static_cast<int>(index); local
69 SkDebugf("[%d] cubic order=%d\n", iIndex, order1);
73 SkDebugf("[%d] quad order=%d\n", iIndex, order2);
85 __FUNCTION__, iIndex, pt, tt1, xy1.fX, xy1.fY, tt2, xy2.fX, xy2.fY);
H A DPathOpsQuadLineIntersectionTest.cpp110 int iIndex = static_cast<int>(index); local
121 SkDebugf("%s [%d] quad order=%d\n", __FUNCTION__, iIndex, order1);
125 SkDebugf("%s [%d] line order=%d\n", __FUNCTION__, iIndex, order2);
144 __FUNCTION__, iIndex, pt, tt1, t1.fX, t1.fY, tt2, t2.fX, t2.fY);
H A DPathOpsConicLineIntersectionTest.cpp100 int iIndex = static_cast<int>(index); local
115 SkDebugf("%s [%d] conic verb=%d\n", __FUNCTION__, iIndex, order1);
120 SkDebugf("%s [%d] line order=%d\n", __FUNCTION__, iIndex, order2);
139 __FUNCTION__, iIndex, pt, tt1, t1.fX, t1.fY, tt2, t2.fX, t2.fY);
/external/pdfium/core/fpdfdoc/
H A Dcpdf_actionfields.h26 CPDF_Object* GetField(size_t iIndex) const;
H A Dcpdf_actionfields.cpp75 CPDF_Object* CPDF_ActionFields::GetField(size_t iIndex) const {
95 if (iIndex == 0)
98 pFindObj = pArray->GetDirectObjectAt(iIndex);
H A Dcpdf_action.cpp127 CPDF_Action CPDF_Action::GetSubAction(size_t iIndex) const {
133 return CPDF_Action(pArray->GetDictAt(iIndex));
135 if (iIndex == 0)
H A Dcpdf_action.h54 CPDF_Action GetSubAction(size_t iIndex) const;
H A Dcpdf_formfield.cpp188 int iIndex = GetDefaultSelectedItem(); local
189 if (iIndex >= 0)
190 csValue = GetOptionLabel(iIndex);
195 SetItemSelection(iIndex, true);
359 int iIndex = FindOptionValue(csValue); local
360 if (iIndex < 0) {
370 SetItemSelection(iIndex, true);
378 int iIndex = FindOptionValue(value); local
379 if (iIndex < 0)
382 if (bDefault && iIndex
474 int iIndex = GetSelectedIndex(0); local
687 int iIndex = GetSelectedIndex(0); local
885 int iIndex = GetSelectedIndex(0); local
[all...]
/external/pdfium/core/fxcrt/
H A Dcfx_blockbuffer.h38 void SetTextChar(size_t iIndex, wchar_t ch);
43 std::pair<size_t, size_t> TextDataIndex2BufIndex(const size_t iIndex) const;
H A Dcfx_blockbuffer.cpp116 const size_t iIndex) const {
117 ASSERT(iIndex >= 0);
119 size_t realIndex = m_StartPosition + iIndex;
H A Dcfx_seekablestreamproxy.cpp41 size_t iIndex = 0; local
43 while (iIndex < srcLen) {
44 uint8_t byte = static_cast<uint8_t>(*(pSrc + iIndex));
89 iIndex++;
/external/pdfium/xfa/fxfa/parser/
H A Dcxfa_attachnodelist.h24 CXFA_Node* Item(size_t iIndex) override;
H A Dcxfa_arraynodelist.h27 CXFA_Node* Item(size_t iIndex) override;
H A Dcxfa_list.h24 virtual CXFA_Node* Item(size_t iIndex) = 0;
H A Dcxfa_nodehelper.cpp305 int32_t iIndex = wsIndex.GetInteger(); local
306 m_iCreateCount = iIndex;
336 for (int32_t iIndex = 0; iIndex < m_iCreateCount; iIndex++) {
340 if (iIndex == m_iCreateCount - 1) {
351 for (int32_t iIndex = 0; iIndex < m_iCreateCount; iIndex++) {
358 if (iIndex
[all...]
/external/pdfium/fxjs/
H A Dcfxjse_formcalc_context.cpp408 int32_t iIndex = 0; local
411 while (iIndex < iLength) {
412 patternChar = pData[iIndex];
418 iIndex++;
420 while (iIndex < iLength) {
421 timePatternChar = pData[iIndex];
428 iIndex++;
452 iIndex++;
1833 int32_t iIndex = 0; local
1834 while (iIndex < iZon
2436 int32_t iIndex = 0; local
2655 int32_t iIndex = (int32_t)ValueToFloat(pThis, argOne.get()); local
3423 int32_t iIndex = 0; local
3520 int32_t iIndex = ch / 16; local
3535 int32_t iIndex = ch / 16; local
3559 int32_t iIndex = ch / 16; local
3578 int32_t iIndex = 0; local
3627 int32_t iIndex = ch / 16; local
3692 int32_t iIndex = ch / 16; local
4527 int32_t iIndex = 0; local
4608 int32_t iIndex = 0; local
5287 int32_t iIndex = 2; local
5405 int32_t iIndex = 2; local
[all...]
H A Dcjs_util.cpp104 for (size_t iIndex = 0; iIndex < unsafe_conversion_specifiers.size();
105 ++iIndex) {
106 std::wstring c_strFormat = unsafe_conversion_specifiers[iIndex];
107 if (iIndex == 0) {
112 if (iIndex >= iSize) {
121 pRuntime->ToInt32(params[iIndex]));
125 pRuntime->ToDouble(params[iIndex]));
130 pRuntime->ToWideString(params[iIndex]).c_str());
/external/pdfium/fxjs/xfa/
H A Dcjx_instancemanager.cpp168 int32_t iIndex = runtime->ToInt32(params[0]);
170 if (iIndex < 0 || iIndex >= iCount)
178 CXFA_Node* pRemoveInstance = GetXFANode()->GetItemIfExists(iIndex);
186 for (int32_t i = iIndex; i < iCount - 1; i++) {
259 int32_t iIndex = runtime->ToInt32(params[0]);
265 if (iIndex < 0 || iIndex > iCount)
277 GetXFANode()->InsertItem(pNewInstance, iIndex, iCount, true);
H A Dcjx_field.cpp99 int32_t iIndex = runtime->ToInt32(params[0]);
100 if (iIndex < 0)
107 Optional<WideString> value = pWidgetAcc->GetChoiceListItem(iIndex, true);
163 int32_t iIndex = runtime->ToInt32(params[0]);
164 if (iIndex < 0)
171 Optional<WideString> value = pWidgetAcc->GetChoiceListItem(iIndex, false);
188 int32_t iIndex = runtime->ToInt32(params[0]);
190 pWidgetAcc->SetItemState(iIndex, true, true, true, true);
193 if (pWidgetAcc->GetItemState(iIndex))
194 pWidgetAcc->SetItemState(iIndex, fals
356 int32_t iIndex = pValue->ToInteger(); local
[all...]
/external/pdfium/xfa/fxfa/
H A Dcxfa_ffnotify.h27 int32_t iIndex);
28 void OnWidgetListItemRemoved(CXFA_WidgetAcc* pSender, int32_t iIndex);

Completed in 493 milliseconds

123