HomeSort by relevance Sort by last modified time
    Searched refs:struct_tree (Results 1 - 3 of 3) sorted by null

  /external/pdfium/public/
fpdf_structtree.h 29 // struct_tree - Handle to the struct tree. Returned by
33 DLLEXPORT void STDCALL FPDF_StructTree_Close(FPDF_STRUCTTREE struct_tree);
38 // struct_tree - Handle to the struct tree. Returned by
43 FPDF_StructTree_CountChildren(FPDF_STRUCTTREE struct_tree);
48 // struct_tree - Handle to the struct tree. Returned by
54 FPDF_StructTree_GetChildAtIndex(FPDF_STRUCTTREE struct_tree, int index);
88 // struct_tree - Handle to the struct element.
  /external/pdfium/fpdfsdk/
fpdf_structtree.cpp 16 IPDF_StructTree* ToStructTree(FPDF_STRUCTTREE struct_tree) {
17 return reinterpret_cast<IPDF_StructTree*>(struct_tree);
34 DLLEXPORT void STDCALL FPDF_StructTree_Close(FPDF_STRUCTTREE struct_tree) {
35 std::unique_ptr<IPDF_StructTree>(ToStructTree(struct_tree));
39 FPDF_StructTree_CountChildren(FPDF_STRUCTTREE struct_tree) {
40 IPDF_StructTree* tree = ToStructTree(struct_tree);
45 FPDF_StructTree_GetChildAtIndex(FPDF_STRUCTTREE struct_tree, int index) {
46 IPDF_StructTree* tree = ToStructTree(struct_tree);
fpdf_structtree_embeddertest.cpp 17 FPDF_STRUCTTREE struct_tree = FPDF_StructTree_GetForPage(page); local
18 ASSERT_TRUE(struct_tree);
19 ASSERT_EQ(1, FPDF_StructTree_CountChildren(struct_tree));
21 FPDF_STRUCTELEMENT element = FPDF_StructTree_GetChildAtIndex(struct_tree, -1);
23 element = FPDF_StructTree_GetChildAtIndex(struct_tree, 1);
25 element = FPDF_StructTree_GetChildAtIndex(struct_tree, 0);
68 FPDF_StructTree_Close(struct_tree);

Completed in 1414 milliseconds