/frameworks/base/libs/hwui/jni/pdf/ |
D | PdfUtils.cpp | 106 FPDF_DOCUMENT document = FPDF_LoadCustomDocument(&loader, NULL); in nativeOpen() local 107 if (!document) { in nativeOpen() 113 return reinterpret_cast<jlong>(document); in nativeOpen() 117 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr); in nativeClose() local 118 FPDF_CloseDocument(document); in nativeClose() 124 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr); in nativeGetPageCount() local 126 return FPDF_GetPageCount(document); in nativeGetPageCount() 130 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr); in nativeScaleForPrinting() local 131 FPDF_BOOL printScaling = FPDF_VIEWERREF_GetPrintScaling(document); in nativeScaleForPrinting()
|
D | PdfDocument.cpp | 89 sk_sp<SkDocument> document = SkPDF::MakeDocument(stream); in write() local 93 SkCanvas* canvas = document->beginPage(page->mWidth, page->mHeight, in write() 97 document->endPage(); in write() 99 document->close(); in write() 125 PdfDocument* document = reinterpret_cast<PdfDocument*>(documentPtr); in nativeStartPage() local 126 SkCanvas* canvas = document->startPage(pageWidth, pageHeight, in nativeStartPage() 132 PdfDocument* document = reinterpret_cast<PdfDocument*>(documentPtr); in nativeFinishPage() local 133 document->finishPage(); in nativeFinishPage() 138 PdfDocument* document = reinterpret_cast<PdfDocument*>(documentPtr); in nativeWriteTo() local 140 document->write(skWStream); in nativeWriteTo() [all …]
|
D | PdfEditor.cpp | 59 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr); in nativeRemovePage() local 61 FPDFPage_Delete(document, pageIndex); in nativeRemovePage() 62 return FPDF_GetPageCount(document); in nativeRemovePage() 98 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr); in nativeWrite() local 102 const bool success = FPDF_SaveAsCopy(document, &writer, FPDF_NO_INCREMENTAL); in nativeWrite() 111 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr); in nativeSetTransformAndClip() local 113 FPDF_PAGE page = FPDF_LoadPage(document, pageIndex); in nativeSetTransformAndClip() 123 const int result = FPDF_GetPageSizeByIndex(document, pageIndex, &width, &height); in nativeSetTransformAndClip() 166 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr); in nativeGetPageSize() local 168 FPDF_PAGE page = FPDF_LoadPage(document, pageIndex); in nativeGetPageSize() [all …]
|
D | PdfRenderer.cpp | 42 FPDF_DOCUMENT document = reinterpret_cast<FPDF_DOCUMENT>(documentPtr); in nativeOpenPageAndGetSize() local 44 FPDF_PAGE page = FPDF_LoadPage(document, pageIndex); in nativeOpenPageAndGetSize() 54 int result = FPDF_GetPageSizeByIndex(document, pageIndex, &width, &height); in nativeOpenPageAndGetSize()
|
/frameworks/base/tools/preload/ |
D | sorttable.js | 30 if (!document.createElement || !document.getElementsByTagName) return; 34 forEach(document.getElementsByTagName('table'), function(table) { 46 the = document.createElement('thead'); 68 tfo = document.createElement('tfoot'); 100 this.removeChild(document.getElementById('sorttable_sortfwdind')); 101 sortrevind = document.createElement('span'); 113 this.removeChild(document.getElementById('sorttable_sortrevind')); 114 sortfwdind = document.createElement('span'); 129 sortfwdind = document.getElementById('sorttable_sortfwdind'); 131 sortrevind = document.getElementById('sorttable_sortrevind'); [all …]
|
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/model/ |
D | RemotePrintDocument.java | 167 public void onUpdateCompleted(RemotePrintDocumentInfo document); in onUpdateCompleted() argument 590 …public AsyncCommand(Looper looper, IPrintDocumentAdapter adapter, RemotePrintDocumentInfo document, in AsyncCommand() argument 594 mDocument = document; in AsyncCommand() 740 RemotePrintDocumentInfo document, PrintAttributes oldAttributes, in LayoutCommand() argument 742 super(looper, adapter, document, callback); in LayoutCommand() 1017 RemotePrintDocumentInfo document, int pageCount, PageRange[] pages, in WriteCommand() argument 1019 super(looper, adapter, document, callback); in WriteCommand() 1308 public PrintDocumentAdapterObserver(RemotePrintDocument document) { in PrintDocumentAdapterObserver() argument 1309 mWeakDocument = new WeakReference<>(document); in PrintDocumentAdapterObserver() 1314 final RemotePrintDocument document = mWeakDocument.get(); in onDestroy() local [all …]
|
/frameworks/base/packages/PrintSpooler/tests/outofprocess/src/com/android/printspooler/outofprocess/tests/ |
D | WorkflowTest.java | 226 PrintedPdfDocument document = new PrintedPdfDocument(getActivity(), in print() 229 PdfDocument.Page page = document.startPage(0); in print() 230 document.finishPage(page); in print() 233 document.writeTo(os); in print() 237 document.close(); in print()
|
/frameworks/layoutlib/validator/src/ |
D | ResourceConverter.java | 87 Document document = documentBuilder.parse(file); in loadStrings() local 88 NodeList nodeList = document.getElementsByTagName("string"); in loadStrings()
|
/frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/certificate/ |
D | CertUtils.java | 124 Document document = in getXmlRootNode() local 128 document.getDocumentElement().normalize(); in getXmlRootNode() 129 return document.getDocumentElement(); in getXmlRootNode()
|
/frameworks/base/core/java/android/content/pm/ |
D | AppSearchShortcutPerson.java | 55 public AppSearchShortcutPerson(@NonNull GenericDocument document) { in AppSearchShortcutPerson() argument 56 super(document); in AppSearchShortcutPerson()
|
D | AppSearchShortcutInfo.java | 326 public AppSearchShortcutInfo(@NonNull GenericDocument document) { in AppSearchShortcutInfo() argument 327 super(document); in AppSearchShortcutInfo() 791 final GenericDocument document = persons[i]; in parsePerson() local 792 if (document == null) continue; in parsePerson() 793 final AppSearchShortcutPerson person = new AppSearchShortcutPerson(document); in parsePerson()
|
D | ShortcutInfo.java | 681 @NonNull final GenericDocument document) { in createFromGenericDocument() argument 683 Objects.requireNonNull(document); in createFromGenericDocument() 684 return createFromGenericDocument(context.getUserId(), document); in createFromGenericDocument() 691 final int userId, @NonNull final GenericDocument document) { in createFromGenericDocument() argument 692 return new AppSearchShortcutInfo(document).toShortcutInfo(userId); in createFromGenericDocument()
|
/frameworks/base/core/proto/android/service/ |
D | print.proto | 269 // Margins around the document 305 // Name of the document to print 314 // The size of the document
|
/frameworks/native/opengl/include/GLES3/ |
D | NOTICE | 1 This document is licensed under the SGI Free Software B License Version
|
/frameworks/base/packages/SystemUI/docs/ |
D | status-bar-data-pipeline.md | 7 conectivity and battery level. This document is about the implementation of the 16 This document serves as a guide for the new architecture, and as a guide for how 32 `viewmodel` instances and `viewbinder` instances. In this document, "repository"
|
D | qs-tiles.md | 5 ## About this document 7 This document is a more or less comprehensive summary of the state and infrastructure used by Quick… 23 All the classes described in this document that live inside SystemUI are only instantiated in the p… 42 …STileImpl`, as it takes care of many common situations. Throughout this document, we will focus on… 44 The interfaces in `QSTile` as well as other interfaces described in this document can be used to im…
|
/frameworks/base/packages/SystemUI/docs/device-entry/ |
D | keyguard.md | 35 …king their device. To learn more about them, please see [this dedicated document](quickaffordance.…
|
/frameworks/base/tools/aapt2/ |
D | ResourceParser_test.cpp | 247 <string name="foo" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> in TEST_F() 259 <string name="foo" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> in TEST_F() 266 <string name="foo" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> in TEST_F() 281 <string name="foo" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> in TEST_F() 353 std::string input = R"(<macro name="foo" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> in TEST_F()
|
/frameworks/rs/tests/java_api/Refocus/dataExtraction/ |
D | RefocusTestTimingProcess.txt | 1 This document is to explain the process to extract kernel running time of Refocus(Lens Blur) app in…
|
/frameworks/minikin/doc/ |
D | hyb_file_format.md | 16 physical file, to reduce number of open mmap'ed files. This document doesn't cover that.
|
/frameworks/native/cmds/dumpstate/ |
D | bugreport-format.md | 3 This document specifies the format of the bugreport files generated by the
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | RecentTasks.java | 1545 final boolean document = intent != null && intent.isDocument(); in findRemoveIndexForAddTask() 1565 final boolean bothDocuments = document && trIsDocument; in findRemoveIndexForAddTask() 1590 } else if (document || trIsDocument) { in findRemoveIndexForAddTask()
|
/frameworks/base/packages/BackupEncryption/proto/ |
D | backup_chunks_metadata.proto | 78 // The document ID returned from Scotty server after uploading the blob associated with this
|
/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/ui/ |
D | PrintActivity.java | 553 public void onUpdateCompleted(RemotePrintDocumentInfo document) { in onUpdateCompleted() argument 566 PrintDocumentInfo info = document.info; in onUpdateCompleted() 569 document.pagesWrittenToFile, getAdjustedPageCount(info)); in onUpdateCompleted() 583 mPrintJob.setPages(document.pagesInFileToPrint); in onUpdateCompleted() 600 updatePrintPreviewController(document.changed); in onUpdateCompleted()
|
/frameworks/base/cmds/am/ |
D | NOTICE | 23 and distribution as defined by Sections 1 through 9 of this document.
|