HomeSort by relevance Sort by last modified time
    Searched full:docid (Results 1 - 25 of 33) sorted by null

1 2

  /external/libxml2/result/
att8 2 <ino:response xmlns:ino="http://namespaces.softwareag.com/tamino/response2" xmlns:xql="http://metalab.unc.edu/xql/" ino:sessionid="556" ino:sessionkey="1590469677"><xql:query>/bsk:DocPart[@docId='20040308152601345236' and @docPartNo=1]</xql:query><ino:message ino:returnvalue="0"><ino:messageline>XQL Request processing</ino:messageline></ino:message><xql:result><bsk:DocPart xmlns:bsk="http://www.heitec.net/sara4/tamino/basket" docId="20040308152601345236" docPartNo="1" ino:id="15290"><bsk:File name="4898WPZEO2M65" size="75195"> </bsk:File></bsk:DocPart></xql:result><ino:message ino:returnvalue="0"><ino:messageline>XQL Request processed</ino:messageline></ino:message></ino:response>
att8.sax 5 SAX.characters(/bsk:DocPart[@docId=, 20)
17 SAX.startElement(bsk:DocPart, docId='20040308152601345236', docPartNo='1', ino:id='15290', xmlns:bsk='http://www.heitec.net/sara4/tamino/basket')
att8.sax2 5 SAX.characters(/bsk:DocPart[@docId=, 20)
17 SAX.startElementNs(DocPart, bsk, 'http://www.heitec.net/sara4/tamino/basket', 1, xmlns:bsk='http://www.heitec.net/sara4/tamino/basket', 3, 0, docId='2004...', 20, docPartNo='1" i...', 1, ino:id='1529...', 5)
att8.rde 3 2 3 #text 0 1 /bsk:DocPart[@docId='20040308152601345236' and @docPartNo=1]
att8.rdr 3 2 3 #text 0 1 /bsk:DocPart[@docId='20040308152601345236' and @docPartNo=1]
  /external/libxml2/result/noent/
att8 2 <ino:response xmlns:ino="http://namespaces.softwareag.com/tamino/response2" xmlns:xql="http://metalab.unc.edu/xql/" ino:sessionid="556" ino:sessionkey="1590469677"><xql:query>/bsk:DocPart[@docId='20040308152601345236' and @docPartNo=1]</xql:query><ino:message ino:returnvalue="0"><ino:messageline>XQL Request processing</ino:messageline></ino:message><xql:result><bsk:DocPart xmlns:bsk="http://www.heitec.net/sara4/tamino/basket" docId="20040308152601345236" docPartNo="1" ino:id="15290"><bsk:File name="4898WPZEO2M65" size="75195"> </bsk:File></bsk:DocPart></xql:result><ino:message ino:returnvalue="0"><ino:messageline>XQL Request processed</ino:messageline></ino:message></ino:response>
  /frameworks/base/packages/ExternalStorageProvider/src/com/android/externalstorage/
ExternalStorageProvider.java 68 // docId format: root:path/to/file
84 public String docId;
171 root.docId = getDocIdForFile(root.path);
229 private File getFileForDocId(String docId) throws FileNotFoundException {
230 return getFileForDocId(docId, false);
233 private File getFileForDocId(String docId, boolean visible) throws FileNotFoundException {
234 final int splitIndex = docId.indexOf(':', 1);
235 final String tag = docId.substring(0, splitIndex);
236 final String path = docId.substring(splitIndex + 1);
255 throw new FileNotFoundException("Missing file for " + docId + " at " + target)
    [all...]
TestDocumentsProvider.java 311 public ParcelFileDescriptor openDocument(String docId, String mode, CancellationSignal signal)
319 String docId, Point sizeHint, CancellationSignal signal) throws FileNotFoundException {
393 private static void includeFile(MatrixCursor result, String docId, int flags) {
395 row.add(Document.COLUMN_DOCUMENT_ID, docId);
396 row.add(Document.COLUMN_DISPLAY_NAME, docId);
400 if (MY_DOC_ID.equals(docId)) {
403 } else if (MY_DOC_NULL.equals(docId)) {
  /cts/hostsidetests/appsecurity/test-apps/DocumentProvider/src/com/android/cts/documentprovider/
MyDocumentsProvider.java 92 private Doc buildDoc(String docId, String displayName, String mimeType) {
94 doc.docId = docId;
97 mDocs.put(doc.docId, doc);
149 public String docId;
160 row.add(Document.COLUMN_DOCUMENT_ID, docId);
172 if (doc.docId.equals(documentId)) {
176 return isChildDocument(doc.docId, documentId);
185 final String docId = "doc:" + System.currentTimeMillis();
186 final Doc doc = buildDoc(docId, displayName, mimeType)
    [all...]
  /external/libxml2/test/
att8 1 <?xml version="1.0" encoding="ISO-8859-1"?><ino:response xmlns:ino="http://namespaces.softwareag.com/tamino/response2" xmlns:xql="http://metalab.unc.edu/xql/" ino:sessionid="556" ino:sessionkey="1590469677"><xql:query>/bsk:DocPart[@docId=&apos;20040308152601345236&apos; and @docPartNo=1]</xql:query><ino:message ino:returnvalue="0"><ino:messageline>XQL Request processing</ino:messageline></ino:message><xql:result><bsk:DocPart docId="20040308152601345236" docPartNo="1" ino:id="15290" xmlns:bsk="http://www.heitec.net/sara4/tamino/basket"><bsk:File name="4898WPZEO2M65" size="75195"> </bsk:File></bsk:DocPart></xql:result><ino:message ino:returnvalue="0"><ino:messageline>XQL Request processed</ino:messageline></ino:message></ino:response>
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadStorageProvider.java 107 public String createDocument(String docId, String mimeType, String displayName)
141 public void deleteDocument(String docId) throws FileNotFoundException {
145 if (mDm.remove(Long.parseLong(docId)) != 1) {
146 throw new IllegalStateException("Failed to delete " + docId);
154 public Cursor queryDocument(String docId, String[] projection) throws FileNotFoundException {
157 if (DOC_ID_ROOT.equals(docId)) {
164 cursor = mDm.query(new Query().setFilterById(Long.parseLong(docId)));
178 public Cursor queryChildDocuments(String docId, String[] projection, String sortOrder)
257 public ParcelFileDescriptor openDocument(String docId, String mode, CancellationSignal signal)
262 final long id = Long.parseLong(docId);
    [all...]
  /development/samples/Vault/src/com/example/android/vault/
VaultProvider.java 222 private EncryptedDocument getDocument(long docId) throws GeneralSecurityException {
223 final File file = new File(mDocumentsDir, String.valueOf(docId));
224 return new EncryptedDocument(docId, file, mDataKey, mMacKey);
230 private void includeDocument(MatrixCursor result, long docId)
232 final EncryptedDocument doc = getDocument(docId);
234 throw new FileNotFoundException("Missing document " + docId);
332 private void initDocument(long docId, String mimeType, String displayName)
334 final EncryptedDocument doc = getDocument(docId);
339 meta.put(Document.COLUMN_DOCUMENT_ID, docId);
355 final long docId = Long.parseLong(documentId)
    [all...]
EncryptedDocument.java 95 * @param docId the expected {@link Document#COLUMN_DOCUMENT_ID} to be
100 public EncryptedDocument(long docId, File file, SecretKey dataKey, SecretKey macKey)
113 mDocId = docId;
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaDocumentsProvider.java 165 private static Ident getIdentForDocId(String docId) {
167 final int split = docId.indexOf(':');
169 ident.type = docId;
172 ident.type = docId.substring(0, split);
173 ident.id = Long.parseLong(docId.substring(split + 1));
200 public Cursor queryDocument(String docId, String[] projection) throws FileNotFoundException {
203 final Ident ident = getIdentForDocId(docId);
281 throw new UnsupportedOperationException("Unsupported document " + docId);
291 public Cursor queryChildDocuments(String docId, String[] projection, String sortOrder)
295 final Ident ident = getIdentForDocId(docId);
    [all...]
  /frameworks/base/core/java/com/google/android/util/
AbstractMessageParser.java 816 private String docid; field in class:AbstractMessageParser.Video
818 public Video(String docid, String text) {
820 this.docid = docid;
823 public String getDocID() { return docid; }
840 info.add(getRssUrl(docid));
841 info.add(getURL(docid));
846 public static String getRssUrl(String docid) {
848 + "?type=docid&output=rss&sourceid=gtalk&docid=" + docid
875 private String docid; field in class:AbstractMessageParser.YouTubeVideo
    [all...]
  /developers/build/prebuilts/gradle/StorageProvider/Application/src/main/java/com/example/android/storageprovider/
MyCloudProvider.java 470 * @param docId the document ID representing the desired file (may be null if given file)
471 * @param file the File object representing the desired file (may be null if given docID)
474 private void includeFile(MatrixCursor result, String docId, File file)
476 if (docId == null) {
477 docId = getDocIdForFile(file);
479 file = getFileForDocId(docId);
509 row.add(Document.COLUMN_DOCUMENT_ID, docId);
523 * @param docId the document ID representing the desired file
527 private File getFileForDocId(String docId) throws FileNotFoundException {
529 if (docId.equals(ROOT))
    [all...]
  /developers/samples/android/content/documentsUi/StorageProvider/Application/src/main/java/com/example/android/storageprovider/
MyCloudProvider.java 470 * @param docId the document ID representing the desired file (may be null if given file)
471 * @param file the File object representing the desired file (may be null if given docID)
474 private void includeFile(MatrixCursor result, String docId, File file)
476 if (docId == null) {
477 docId = getDocIdForFile(file);
479 file = getFileForDocId(docId);
509 row.add(Document.COLUMN_DOCUMENT_ID, docId);
523 * @param docId the document ID representing the desired file
527 private File getFileForDocId(String docId) throws FileNotFoundException {
529 if (docId.equals(ROOT))
    [all...]
  /development/samples/browseable/StorageProvider/src/com.example.android.storageprovider/
MyCloudProvider.java 470 * @param docId the document ID representing the desired file (may be null if given file)
471 * @param file the File object representing the desired file (may be null if given docID)
474 private void includeFile(MatrixCursor result, String docId, File file)
476 if (docId == null) {
477 docId = getDocIdForFile(file);
479 file = getFileForDocId(docId);
509 row.add(Document.COLUMN_DOCUMENT_ID, docId);
523 * @param docId the document ID representing the desired file
527 private File getFileForDocId(String docId) throws FileNotFoundException {
529 if (docId.equals(ROOT))
    [all...]
  /external/clang/www/
clang_video-07-25-2007.html 22 <li><a href="http://video.google.com/videoplay?docid=1921156852099786640">Google Tech Talk Video (19:00-)</a> (Note: the Clang lecture starts at 19 minutes into the video.)
  /packages/apps/Settings/src/com/android/settings/search/
IndexDatabaseHelper.java 40 public static final String DOCID = "docid";
  /frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/
StubProvider.java 150 public boolean isChildDocument(String parentDocId, String docId) {
152 final StubDocument childDocument = mStorage.get(docId);
233 public ParcelFileDescriptor openDocument(String docId, String mode, CancellationSignal signal)
235 final StubDocument document = mStorage.get(docId);
266 String docId, Point sizeHint, CancellationSignal signal) throws FileNotFoundException {
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemForEach.java 359 int docID = sourceNode & DTMManager.IDENT_DTM_DEFAULT;
367 if ((child & DTMManager.IDENT_DTM_DEFAULT) != docID)
370 docID = child & DTMManager.IDENT_DTM_DEFAULT;
  /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
IconUtils.java 219 Context context, String mimeType, String authority, String docId, int mode) {
223 && docId.startsWith("album")) {
  /frameworks/base/docs/html/tools/extras/
oem-usb.jd 271 href="http://support.toshiba.com/sscontent?docId=4001814">http://support.toshiba.com/sscontent?docId=4001814</a></td>
  /development/samples/Vault/tests/src/com/example/android/vault/
EncryptedDocumentTest.java 190 fail("somehow read without checking docid");

Completed in 700 milliseconds

1 2