Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(177)

Side by Side Diff: xfa/fxfa/parser/xfa_script_resolveprocessor.cpp

Issue 1841173002: Rename GetElementValue() to GetDirectObject{By,At}(). (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Use "At" for arrays. Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2014 PDFium Authors. All rights reserved. 1 // Copyright 2014 PDFium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 5 // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
6 6
7 #include "xfa/fxfa/parser/xfa_script_resolveprocessor.h" 7 #include "xfa/fxfa/parser/xfa_script_resolveprocessor.h"
8 8
9 #include "core/fxcrt/include/fx_ext.h" 9 #include "core/fxcrt/include/fx_ext.h"
10 #include "xfa/fxfa/fm2js/xfa_fm2jsapi.h" 10 #include "xfa/fxfa/fm2js/xfa_fm2jsapi.h"
(...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after
358 } 358 }
359 CXFA_Node* pProp = NULL; 359 CXFA_Node* pProp = NULL;
360 if (XFA_ELEMENT_Subform == curNode->GetClassID() && 360 if (XFA_ELEMENT_Subform == curNode->GetClassID() &&
361 XFA_HASHCODE_Occur == uNameHash) { 361 XFA_HASHCODE_Occur == uNameHash) {
362 CXFA_Node* pInstanceManager = 362 CXFA_Node* pInstanceManager =
363 curNode->AsNode()->GetInstanceMgrOfSubform(); 363 curNode->AsNode()->GetInstanceMgrOfSubform();
364 if (pInstanceManager) { 364 if (pInstanceManager) {
365 pProp = pInstanceManager->GetProperty(0, XFA_ELEMENT_Occur, TRUE); 365 pProp = pInstanceManager->GetProperty(0, XFA_ELEMENT_Occur, TRUE);
366 } 366 }
367 } else { 367 } else {
368 const XFA_ELEMENTINFO* pElement = XFA_GetElementByName(wsName); 368 const XFA_ELEMENTINFO* pElement = XFA_GetObjectByByName(wsName);
369 if (pElement) { 369 if (pElement) {
370 pProp = curNode->AsNode()->GetProperty( 370 pProp = curNode->AsNode()->GetProperty(
371 0, pElement->eName, pElement->eName != XFA_ELEMENT_PageSet); 371 0, pElement->eName, pElement->eName != XFA_ELEMENT_PageSet);
372 } 372 }
373 } 373 }
374 if (pProp) { 374 if (pProp) {
375 nodes.Add(pProp); 375 nodes.Add(pProp);
376 return nodes.GetSize(); 376 return nodes.GetSize();
377 } 377 }
378 } 378 }
(...skipping 438 matching lines...) Expand 10 before | Expand all | Expand 10 after
817 if (m_pNodeHelper->XFA_CreateNode_ForCondition(wsNextCondition)) { 817 if (m_pNodeHelper->XFA_CreateNode_ForCondition(wsNextCondition)) {
818 if (m_pNodeHelper->m_eLastCreateType == XFA_ELEMENT_DataGroup) { 818 if (m_pNodeHelper->m_eLastCreateType == XFA_ELEMENT_DataGroup) {
819 iIndex = 0; 819 iIndex = 0;
820 } else { 820 } else {
821 iIndex = iCount - 1; 821 iIndex = iCount - 1;
822 } 822 }
823 } else { 823 } else {
824 iIndex = iCount - 1; 824 iIndex = iCount - 1;
825 } 825 }
826 } 826 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698