HomeSort by relevance Sort by last modified time
    Searched refs:document (Results 101 - 125 of 1882) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/pdfium/fpdfsdk/
fpdfdoc.cpp 66 FPDFBookmark_GetFirstChild(FPDF_DOCUMENT document, FPDF_BOOKMARK pDict) {
67 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document);
77 FPDFBookmark_GetNextSibling(FPDF_DOCUMENT document, FPDF_BOOKMARK pDict) {
80 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document);
99 FPDFBookmark_Find(FPDF_DOCUMENT document, FPDF_WIDESTRING title) {
102 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document);
112 FPDF_EXPORT FPDF_DEST FPDF_CALLCONV FPDFBookmark_GetDest(FPDF_DOCUMENT document,
116 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document);
159 FPDF_EXPORT FPDF_DEST FPDF_CALLCONV FPDFAction_GetDest(FPDF_DOCUMENT document,
163 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document);
    [all...]
fpdfattachment.cpp 50 FPDFDoc_GetAttachmentCount(FPDF_DOCUMENT document) {
51 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document);
59 FPDFDoc_AddAttachment(FPDF_DOCUMENT document, FPDF_WIDESTRING name) {
60 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document);
70 // Retrieve the document's Names dictionary; create it if missing.
91 // Add the new attachment name and filespec into the document's EmbeddedFiles.
103 FPDFDoc_GetAttachment(FPDF_DOCUMENT document, int index) {
104 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document);
117 FPDFDoc_DeleteAttachment(FPDF_DOCUMENT document, int index) {
118 CPDF_Document* pDoc = CPDFDocumentFromFPDFDocument(document);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/xml/parsers/
DocumentBuilderFactoryTest.java 20 import org.w3c.dom.Document;
384 Document document = parser.parse(getClass().getResourceAsStream( local
389 goThroughDocument((Node) document, "");
412 Document document = parser.parse(getClass().getResourceAsStream( local
417 goThroughDocument((Node) document, "");
447 Document document = parser.parse(getClass().getResourceAsStream( local
452 assertNotNull(document);
470 Document document = parser.parse(getClass().getResourceAsStream( local
545 Document document = parser.parse(getClass().getResourceAsStream( local
568 Document document = parser.parse(getClass().getResourceAsStream( local
594 Document document = parser.parse(getClass().getResourceAsStream( local
613 Document document = parser.parse(getClass().getResourceAsStream( local
637 Document document = parser.parse(getClass().getResourceAsStream( local
656 Document document = parser.parse(getClass().getResourceAsStream( local
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
SimpleBuilderTest.java 23 import org.w3c.dom.Document;
58 Document document = builder.parse(getClass().getResourceAsStream( local
61 Element root = document.getDocumentElement();
90 list = document.getChildNodes();
111 Document document = builder.parse(getClass().getResourceAsStream( local
114 Element root = document.getDocumentElement();
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/formatting/
AndroidXmlFormattingStrategyTest.java 21 import org.eclipse.jface.text.Document;
29 // In the given before document, replace in the range replaceStart to replaceEnd
34 Document document = new Document(); local
35 document.set(before);
36 ReplaceEdit edit = AndroidXmlFormattingStrategy.createReplaceEdit(document, replaceStart,
39 edit.apply(document);
40 String contents = document.get();
50 fail("Mangled document: Found adjacent \\r's starting at " +
    [all...]
  /external/tensorflow/tensorflow/contrib/learn/python/learn/preprocessing/
text.py 73 x: iterator or matrix of integers. Document representation in bytes.
79 document = np.trim_zeros(data.astype(np.int8), trim='b').tostring()
81 yield document.decode('utf-8')
101 for document in x:
102 if isinstance(document, six.text_type):
103 document = document.encode('utf-8')
104 document_mv = buffer_or_memoryview(document)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
RefactoringUtil.java 58 * @param document the document
60 public static void fixModel(IStructuredModel model, IDocument document) {
65 if (document == null) {
69 model = StructuredModelManager.getModelManager().getExistingModelForEdit(document);
121 * Returns the range of the attribute value in the given document
124 * @param document the document containing the attribute
125 * @return the range of the value text, not including quotes, in the document
129 @NonNull IDocument document) {
    [all...]
  /external/google-styleguide/include/
jsguide.js 4 var elements = [].slice.call(document.querySelectorAll(querySelector));
10 var title = document.getElementsByTagName('h1')[0];
11 var toc = document.createElement('div');
25 // Fill in text for intra-document links, ensuring that links
32 var heading = document.getElementById(href.substring(1));
52 var pretty = document.createElement('script');
55 document.body.appendChild(pretty);
  /external/pdfium/public/
fpdfview.h 298 // Open and load a PDF document.
304 // A handle to the loaded document, or NULL on failure.
306 // Loaded document can be closed by FPDF_CloseDocument().
313 // Open and load a PDF document from memory.
315 // data_buf - Pointer to a buffer containing the PDF document.
316 // size - Number of bytes in the PDF document.
320 // A handle to the loaded document, or NULL on failure.
322 // The memory buffer must remain valid when the document is open.
323 // The loaded document can be closed by FPDF_CloseDocument.
328 // FPDF_LoadXFA() function after the PDF document loaded to support XF
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
pointer.h 18 #include "document.h"
46 A JSON pointer is for identifying a specific value in a JSON document
378 potentially removes previously stored values. For example, if a document
379 was an array, and "/foo" is used to create a value, then the document
382 \param root Root value of a DOM subtree to be resolved. It can be any value other than document root.
435 //! Creates a value in a document.
437 \param document A document to be resolved.
443 ValueType& Create(GenericDocument<EncodingType, typename ValueType::AllocatorType, stackAllocator>& document, bool* alreadyExist = 0) const {
444 return Create(document, document.GetAllocator(), alreadyExist)
    [all...]
  /external/autotest/client/site_tests/documentscan_AppTestWithFakeLorgnette/document_scan_test_app/
scan.js 5 var requestButton = document.getElementById("requestButton");
6 var scanButton = document.getElementById('scanButton');
7 var scannedImages = document.getElementById('scannedImages');
8 var waitAnimation = document.getElementById('waitAnimation');
53 var scannedImage = document.createElement('img');
  /external/python/cpython2/Doc/tools/static/
sidebar.js 13 * and the width of the sidebar and the margin-left of the document
30 var jdocument = $(document);
47 var light_color = $('.document').css('background-color');
79 document.cookie = 'sidebar=collapsed';
92 document.cookie = 'sidebar=expanded';
137 if (!document.cookie)
139 var items = document.cookie.split(';');
  /external/python/cpython3/Doc/tools/static/
sidebar.js 13 * width of the sidebar and the margin-left of the document are decreased.
29 var jdocument = $(document);
79 document.cookie = 'sidebar=collapsed';
95 document.cookie = 'sidebar=expanded';
144 if (!document.cookie)
146 var items = document.cookie.split(';');
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
InnerNodeImpl.java 47 protected InnerNodeImpl(DocumentImpl document) {
48 super(document);
92 if (refChildImpl.document != document) {
117 if (toInsert.document != null && document != null && toInsert.document != document) {
153 * this method is unrelated to Document.normalize.
177 if (oldChildImpl.document != document)
    [all...]
  /external/snakeyaml/src/test/java/org/pyyaml/
PyErrorsTest.java 58 for (Object document : loadAll(input)) {
59 assertNotNull("File " + files[i], document);
80 for (Object document : loadAll(content.trim())) {
81 assertNotNull(document);
114 List<Event> document = (List<Event>) load(new EventConstructor(), content.trim()); local
118 for (Event event : document) {
  /packages/apps/Browser2/test/resources/
js-test.js 21 // It's conceivable that someone would stub out 'document' in a worker so
24 return (typeof document === 'undefined' ||
25 typeof document.childNodes === 'undefined') && !!self.importScripts;
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlAutoEditStrategyTest.java 36 // All tests just operate on the "edithandling" document; the contents are
37 // ignored and replaced with the before-document passed in
48 IDocument document = viewer.getDocument(); local
49 document.replace(0, document.getLength(), newDocumentContent);
61 s.customizeDocumentCommand(document, c);
68 document.replace(c.offset, c.length, c.text);
80 String text = document.get();
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/refactorings/core/
RenameResourceXmlTextActionTest.java 21 import org.eclipse.jface.text.Document;
89 IDocument document = new Document(); local
90 document.replace(0, 0, contents);
92 RenameResourceXmlTextAction.findClassName(document, null, cursor);
105 IDocument document = new Document(); local
106 document.replace(0, 0, contents);
107 ResourceUrl resource = RenameResourceXmlTextAction.findResource(document, cursor);
  /external/autotest/client/site_tests/video_WebRtcMainFeedSwitching/
main-feed-switching.js 10 const $ = document.getElementById.bind(document);
38 const videoElement = document.createElement('video');
  /external/autotest/client/site_tests/video_WebRtcResolutionSwitching/
resolution-switching.js 10 const $ = document.getElementById.bind(document);
40 const videoElement = document.createElement('video');
  /external/autotest/client/site_tests/webrtc_PausePlayPeerConnections/
pause-play.js 10 const $ = document.getElementById.bind(document);
23 const element = document.createElement(elementType);
  /external/testng/src/main/resources/
testng-reports.js 1 $(document).ready(function() {
101 var current = document.location.href;
103 document.location.href = base + '#' + hashTag;
104 var newPosition = $(document).scrollTop() - 65;
105 $(document).scrollTop(newPosition);
117 var table = new google.visualization.Table(document.getElementById(div));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
XmlFormatProcessor.java 50 IStructuredDocument document = structuredModel.getStructuredDocument(); local
52 context.setProperty(CONTEXT_MEDIUM, document);
56 formatter.formatMaster(context, document, start, length);
  /development/scripts/gdb/
dalvik.gdb 46 document art-on
68 document art-off
  /external/clang/tools/scan-build/share/scan-build/
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')
    [all...]

Completed in 1120 milliseconds

1 2 3 45 6 7 8 91011>>