| /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/22.4.2/ |
| manifest-merger-22.4.2.jar | |
| /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/22.5.0/ |
| manifest-merger-22.5.0.jar | |
| /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/22.5.1/ |
| manifest-merger-22.5.1.jar | |
| /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/22.5.3/ |
| manifest-merger-22.5.3.jar | |
| /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/22.7.0/ |
| manifest-merger-22.7.0.jar | |
| /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/22.7.1/ |
| manifest-merger-22.7.1.jar | |
| /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/22.7.3/ |
| manifest-merger-22.7.3.jar | |
| /packages/apps/DocumentsUI/src/com/android/documentsui/files/ |
| ActionHandler.java | 141 DocumentInfo doc = mModel.getDocument(selection.iterator().next()); local 142 assert(doc != null); 143 openInNewWindow(new DocumentStack(mState.stack, doc)); 159 (DocumentInfo doc) -> pasteIntoFolder(root, doc)); 162 private void pasteIntoFolder(RootInfo root, @Nullable DocumentInfo doc) { 163 DocumentStack stack = new DocumentStack(root, doc); 164 mClipper.copyFromClipboard(doc, stack, mDialogs::showFileOperationStatus); 195 DocumentInfo doc = mModel.getDocument(details.getStableId()); local 196 if (doc == null) 279 DocumentInfo doc = mModel.getDocument(selection.iterator().next()); local 360 DocumentInfo doc = docs.get(0); local [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
| funcobject.c | 16 PyObject *doc;
local 30 doc = PyTuple_GetItem(consts, 0);
31 if (!PyString_Check(doc) && !PyUnicode_Check(doc))
32 doc = Py_None;
35 doc = Py_None;
36 Py_INCREF(doc);
37 op->func_doc = doc;
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
| pickletools.py | 181 'doc',
184 def __init__(self, name, n, reader, doc):
196 assert isinstance(doc, str)
197 self.doc = doc
217 doc="One-byte unsigned integer.")
variable 238 doc="Two-byte unsigned integer, little-endian.")
variable 259 doc="Four-byte signed integer, little-endian, 2's complement.")
variable 315 doc="""A newline-terminated string.
328 doc="""A newline-terminated string. [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
| funcobject.c | 16 PyObject *doc;
local 30 doc = PyTuple_GetItem(consts, 0);
31 if (!PyString_Check(doc) && !PyUnicode_Check(doc))
32 doc = Py_None;
35 doc = Py_None;
36 Py_INCREF(doc);
37 op->func_doc = doc;
|
| /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
| DTMManagerDefault.java | 771 Document doc = db.newDocument(); local 772 Node df = doc.createDocumentFragment();
|
| /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/coverage/ |
| JacocoReportCheck.java | 152 Document doc = docBuilder.parse(reportXmlFile); local 153 NodeList nodes = doc.getElementsByTagName("report");
|
| /external/libxml2/ |
| runsuite.c | 243 if ((cur == NULL) || (cur->doc == NULL) || (xpath == NULL)) 245 ctxtXPath->doc = cur->doc; 271 if ((cur == NULL) || (cur->doc == NULL) || (xpath == NULL)) 273 ctxtXPath->doc = cur->doc; 328 xmlNodeDump(buf, test->doc, test, 0, 0); 368 xmlNodeDump(buf, tst->doc, tst, 0, 0); 374 xmlNodeDump(buf, test->doc, test, 0, 0); 422 xmlDocPtr doc = NULL local 614 xmlChar *doc = getString(cur, "string(documentation)"); local 632 xmlDocPtr doc; local 671 xmlChar *doc = getString(cur, "string(documentation)"); local 695 xmlDocPtr doc; local 733 xmlDocPtr doc; local 782 xmlDocPtr doc = NULL; local 997 xmlDocPtr doc; local [all...] |
| /external/python/cpython2/Lib/ |
| pickletools.py | 181 'doc', 184 def __init__(self, name, n, reader, doc): 196 assert isinstance(doc, str) 197 self.doc = doc 217 doc="One-byte unsigned integer.") variable 238 doc="Two-byte unsigned integer, little-endian.") variable 259 doc="Four-byte signed integer, little-endian, 2's complement.") variable 315 doc="""A newline-terminated string. 328 doc="""A newline-terminated string [all...] |
| /external/python/cpython2/Objects/ |
| funcobject.c | 16 PyObject *doc; local 30 doc = PyTuple_GetItem(consts, 0); 31 if (!PyString_Check(doc) && !PyUnicode_Check(doc)) 32 doc = Py_None; 35 doc = Py_None; 36 Py_INCREF(doc); 37 op->func_doc = doc;
|
| /external/python/cpython3/Objects/ |
| moduleobject.c | 47 PyObject *name, PyObject *doc) 57 if (doc == NULL) 58 doc = Py_None; 62 if (_PyDict_SetItemId(md_dict, &PyId___doc__, doc) != 0) 430 PyModule_SetDocString(PyObject *m, const char *doc) 435 v = PyUnicode_FromString(doc); 615 static char *kwlist[] = {"name", "doc", NULL}; 616 PyObject *dict, *name = Py_None, *doc = Py_None; local 618 kwlist, &name, &doc)) 627 if (module_init_dict(m, dict, name, doc) < 0 [all...] |
| /external/tinyxml/ |
| tinyxmlparser.cpp | 805 TiXmlDocument* doc = GetDocument(); local 878 if ( doc ) 879 doc->SetError( TIXML_ERROR_OUT_OF_MEMORY, 0, 0, TIXML_ENCODING_UNKNOWN ); [all...] |
| xmltest.cpp | 126 TiXmlDocument doc( "demotest.xml" ); 127 doc.Parse( demoStart ); 129 if ( doc.Error() ) 131 printf( "Error in %s: %s\n", doc.Value(), doc.ErrorDesc() ); 134 doc.SaveFile(); 137 TiXmlDocument doc( "demotest.xml" ); 138 bool loadOkay = doc.LoadFile(); 142 printf( "Could not load test file 'demotest.xml'. Error='%s'. Exiting.\n", doc.ErrorDesc() ); 146 printf( "** Demo doc read from disk: ** \n\n" ) 251 outputStream << doc; local 354 TiXmlDocument doc; local 368 TiXmlDocument doc; local 416 TiXmlDocument doc; local 440 TiXmlDocument doc; local 626 TiXmlDocument doc; local 638 original << doc; local 667 TiXmlDocument doc; local 700 TiXmlDocument doc; local 714 parse0 >> doc; local 763 TiXmlDocument doc; local 839 TiXmlDocument doc; local 852 TiXmlDocument doc; local 872 TiXmlDocument doc; local 894 TiXmlDocument doc; local 910 TiXmlDocument doc; local 955 TiXmlDocument doc; local 966 TiXmlDocument doc; local 974 strm >> doc; local 987 TiXmlDocument doc; local 1003 TiXmlDocument doc; local 1029 TiXmlDocument doc; local [all...] |
| /frameworks/base/tools/aapt2/configuration/ |
| ConfigurationParser.cpp | 292 std::unique_ptr<xml::XmlResource> doc = xml::Inflate(&in, diag, Source(config_path)); local 293 if (!doc) { 298 Element* root = doc->root.get(); 337 if (!executor.Execute(XmlActionExecutorPolicy::kNone, diag, doc.get())) {
|
| /libcore/dom/src/test/java/org/w3c/domts/ |
| XercesHTML2DocumentBuilderFactory.java | 200 Document doc = null; local 206 doc = handler.getHTMLDocument(); 211 return doc;
|
| XercesHTMLDocumentBuilderFactory.java | 200 Document doc = null; local 206 doc = handler.getHTMLDocument(); 211 return doc;
|
| /packages/apps/DocumentsUI/src/com/android/documentsui/ |
| DragAndDropManager.java | 89 * @param doc the document to check 92 boolean canSpringOpen(RootInfo root, DocumentInfo doc); 240 for (DocumentInfo doc : srcs) { 241 uris.add(doc.derivedUri); 271 DocumentInfo doc = srcs.get(0); local 272 title = doc.displayName; 273 icon = iconHelper.getDocumentIcon(mContext, doc); 297 public boolean canSpringOpen(RootInfo root, DocumentInfo doc) { 298 return isValidDestination(root, doc.derivedUri); 388 (DocumentInfo doc) -> [all...] |
| Model.java | 63 public @Nullable DocumentInfo doc; field in class:Model 109 doc = null; 130 doc = result.doc; 221 DocumentInfo doc; local 223 doc = loadDocument(modelId, filter); 224 if (doc != null) { 225 docs.add(doc);
|
| /packages/apps/DocumentsUI/src/com/android/documentsui/base/ |
| DocumentInfo.java | 135 final DocumentInfo doc = new DocumentInfo(); 136 DurableUtils.readFromParcel(in, doc); 137 return doc; 380 public static String debugString(@Nullable DocumentInfo doc) { 381 if (doc == null) { 385 if (doc.derivedUri == null) { 386 doc.deriveFields(); 387 assert(doc.derivedUri != null); 389 return doc.derivedUri.toString();
|