OLD | NEW |
1 // Copyright 2016 PDFium Authors. All rights reserved. | 1 // Copyright 2016 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_basic_data.h" | 7 #include "xfa/fxfa/parser/xfa_basic_data.h" |
8 | 8 |
9 #include "xfa/fxfa/include/fxfa_basic.h" | 9 #include "xfa/fxfa/fxfa_basic.h" |
10 | 10 |
11 const XFA_ELEMENTHIERARCHY g_XFAElementPropertyIndex[] = { | 11 const XFA_ELEMENTHIERARCHY g_XFAElementPropertyIndex[] = { |
12 {0, 8}, {8, 0}, {8, 14}, {22, 0}, {22, 0}, {22, 6}, {28, 0}, | 12 {0, 8}, {8, 0}, {8, 14}, {22, 0}, {22, 0}, {22, 6}, {28, 0}, |
13 {28, 0}, {28, 1}, {29, 3}, {32, 0}, {32, 0}, {32, 0}, {32, 3}, | 13 {28, 0}, {28, 1}, {29, 3}, {32, 0}, {32, 0}, {32, 0}, {32, 3}, |
14 {35, 1}, {36, 0}, {36, 0}, {36, 2}, {38, 0}, {38, 0}, {38, 0}, | 14 {35, 1}, {36, 0}, {36, 0}, {36, 2}, {38, 0}, {38, 0}, {38, 0}, |
15 {38, 4}, {42, 0}, {42, 0}, {42, 1}, {43, 0}, {43, 8}, {51, 19}, | 15 {38, 4}, {42, 0}, {42, 0}, {42, 1}, {43, 0}, {43, 8}, {51, 19}, |
16 {70, 0}, {70, 0}, {70, 2}, {72, 1}, {73, 0}, {73, 2}, {75, 4}, | 16 {70, 0}, {70, 0}, {70, 2}, {72, 1}, {73, 0}, {73, 2}, {75, 4}, |
17 {79, 1}, {80, 1}, {81, 0}, {81, 0}, {81, 3}, {84, 0}, {84, 4}, | 17 {79, 1}, {80, 1}, {81, 0}, {81, 0}, {81, 3}, {84, 0}, {84, 4}, |
18 {88, 4}, {92, 1}, {93, 0}, {93, 4}, {97, 9}, {106, 14}, {120, 0}, | 18 {88, 4}, {92, 1}, {93, 0}, {93, 4}, {97, 9}, {106, 14}, {120, 0}, |
19 {120, 0}, {120, 5}, {125, 0}, {125, 1}, {126, 0}, {126, 0}, {126, 0}, | 19 {120, 0}, {120, 5}, {125, 0}, {125, 1}, {126, 0}, {126, 0}, {126, 0}, |
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
478 {XFA_Element::Presence, 1, 0}, | 478 {XFA_Element::Presence, 1, 0}, |
479 {XFA_Element::Picture, 1, 0}, | 479 {XFA_Element::Picture, 1, 0}, |
480 {XFA_Element::NameAttr, 1, 0}, | 480 {XFA_Element::NameAttr, 1, 0}, |
481 {XFA_Element::GroupParent, 1, 0}, | 481 {XFA_Element::GroupParent, 1, 0}, |
482 {XFA_Element::Script, 1, 0}, | 482 {XFA_Element::Script, 1, 0}, |
483 {XFA_Element::Edge, 1, 0}, | 483 {XFA_Element::Edge, 1, 0}, |
484 {XFA_Element::Connect, 1, 0}, | 484 {XFA_Element::Connect, 1, 0}, |
485 {XFA_Element::Extras, 1, 0}, | 485 {XFA_Element::Extras, 1, 0}, |
486 {XFA_Element::Month, 12, 0}, | 486 {XFA_Element::Month, 12, 0}, |
487 }; | 487 }; |
OLD | NEW |