| /art/tools/ahat/src/main/com/android/ahat/ |
| HeapTable.java | 53 public static <T extends Diffable<T>> void render(Doc doc, Query query, String id, 78 doc.table(DocString.text(config.getHeapsDescription()), subcols, cols); 102 doc.row(vals.toArray(new DocString[0])); 142 doc.row(vals.toArray(new DocString[0])); 144 doc.end(); 145 selector.render(doc);
|
| /bionic/benchmarks/ |
| bionic_benchmarks.cpp | 365 tinyxml2::XMLDocument doc; local 366 if (doc.LoadFile(cmdline_opts.xmlpath.c_str()) != tinyxml2::XML_SUCCESS) { 367 doc.PrintError(); 368 return doc.ErrorID(); 372 tinyxml2::XMLNode* fn = doc.FirstChildElement("fn");
|
| /build/make/core/ |
| droiddoc.mk | 36 full_target := $(call doc-timestamp-for,$(LOCAL_MODULE)) 119 # Lists the input files for the doc build into a text file 124 define prepare-doc-source-list 220 $(call prepare-doc-source-list,$(PRIVATE_SRC_LIST_FILE),$(PRIVATE_JAVA_FILES), \ 231 $(addprefix --doc-stubs ,$(PRIVATE_METALAVA_DOCS_STUB_OUT_DIR)) \ 257 $(call prepare-doc-source-list,$(PRIVATE_SRC_LIST_FILE),$(PRIVATE_JAVA_FILES), \ 296 $(call prepare-doc-source-list,$(PRIVATE_SRC_LIST_FILE),$(PRIVATE_JAVA_FILES), \ 333 $(call prepare-doc-source-list,$(PRIVATE_SRC_LIST_FILE),$(PRIVATE_JAVA_FILES), \
|
| /development/samples/ApiDemos/src/com/example/android/apis/content/ |
| DocumentsSample.java | 289 Uri doc = DocumentsContract.buildDocumentUriUsingTree(uri, local 304 Uri pic = createDocument(cr, doc, "image/png", "pic.png"); 305 Uri dir = createDocument(cr, doc, Document.MIME_TYPE_DIR, "my dir");
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/ |
| methodobject.c | 149 const char *doc = m->m_ml->ml_doc;
local 151 if (doc != NULL)
152 return PyString_FromString(doc);
362 const char *doc = self->ob_type->tp_doc;
local 363 if (doc != NULL)
364 return PyString_FromString(doc);
|
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/ |
| methodobject.c | 149 const char *doc = m->m_ml->ml_doc;
local 151 if (doc != NULL)
152 return PyString_FromString(doc);
362 const char *doc = self->ob_type->tp_doc;
local 363 if (doc != NULL)
364 return PyString_FromString(doc);
|
| /external/elfutils/src/ |
| findtextrel.c | 72 static const char doc[] = N_("\ variable 84 options, parse_opt, args_doc, doc, NULL, NULL, NULL
|
| size.c | 79 static const char doc[] = N_("\ variable 91 options, parse_opt, args_doc, doc, NULL, NULL, NULL
|
| strings.c | 84 static const char doc[] = N_("\ variable 96 options, parse_opt, args_doc, doc, NULL, NULL, NULL
|
| /external/emma/core/java12/com/vladium/emma/report/html/doc/ |
| HTMLDocument.java | 9 package com.vladium.emma.report.html.doc; 107 * Overridden to add to the doc body.
|
| /external/libedit/examples/ |
| fileman.c | 54 char *doc; /* Documentation for this function. */ member in struct:__anon24713 395 printf ("%s\t\t%s.\n", commands[i].name, commands[i].doc);
|
| /external/libxml2/ |
| gentest.py | 222 "if (doc == NULL) { xmlFreeNode(root) ; root = NULL ; }", 241 """xmlFreeDocElementContent(doc, ret_val); ret_val = NULL;""", 503 doc = libxml2.readFile(srcPref + 'doc/libxml2-api.xml', None, 0) variable 504 if doc == None: 505 print "Failed to load doc/libxml2-api.xml" 507 ctxt = doc.xpathNewContext()
|
| runxmlconf.c | 184 xmlDocPtr doc; local 194 doc = xmlCtxtReadFile(ctxt, filename, NULL, options); 195 if (doc == NULL) { 200 if ((ctxt->valid != 0) || (doc->properties & XML_DOC_DTDVALID)) { 206 xmlFreeDoc(doc); 214 xmlDocPtr doc; local 224 doc = xmlCtxtReadFile(ctxt, filename, NULL, options); 225 if (doc == NULL) { 232 if ((ctxt->valid == 0) || ((doc->properties & XML_DOC_DTDVALID) == 0)) { 238 xmlFreeDoc(doc); 246 xmlDocPtr doc; local 274 xmlDocPtr doc; local 516 xmlDocPtr doc; local [all...] |
| testHTML.c | 621 htmlDocPtr doc = NULL; local 650 doc = ctxt->myDoc; 653 if (doc != NULL) { 655 xmlFreeDoc(doc); 680 doc = ctxt->myDoc; 683 if (doc != NULL) { 685 xmlFreeDoc(doc); 692 doc = htmlSAXParseFile(filename, NULL, emptySAXHandler, NULL); 693 if (doc != NULL) { 695 xmlFreeDoc(doc); 715 htmlDocPtr doc = NULL; local [all...] |
| /external/pdfium/fpdfsdk/ |
| fpdfview_embeddertest.cpp | 60 FPDF_DOCUMENT doc = FPDF_LoadDocument("nonexistent_document.pdf", ""); local 61 ASSERT_FALSE(doc); 596 FPDF_DOCUMENT doc = FPDF_LoadDocument(file_path.c_str(), ""); local 597 EXPECT_TRUE(doc != nullptr); 599 FPDF_CloseDocument(doc);
|
| /external/pdfium/xfa/fxfa/ |
| cxfa_ffdoc.cpp | 327 CXFA_Document* doc = local 329 if (doc) 330 doc->ClearLayoutData();
|
| /external/python/cpython2/Objects/ |
| methodobject.c | 149 const char *doc = m->m_ml->ml_doc; local 151 if (doc != NULL) 152 return PyString_FromString(doc); 362 const char *doc = self->ob_type->tp_doc; local 363 if (doc != NULL) 364 return PyString_FromString(doc);
|
| /external/skia/tools/shape/ |
| using_skia_and_harfbuzz.cpp | 131 Placement(const Config* conf, SkDocument *doc) 132 : config(conf), document(doc), pageCanvas(nullptr) { 202 sk_sp<SkDocument> doc = MakePDFDocument(config, &wStream); local 203 assert(doc); 204 Placement placement(&config, doc.get()); 219 doc->close();
|
| /external/skqp/tools/shape/ |
| using_skia_and_harfbuzz.cpp | 131 Placement(const Config* conf, SkDocument *doc) 132 : config(conf), document(doc), pageCanvas(nullptr) { 202 sk_sp<SkDocument> doc = MakePDFDocument(config, &wStream); local 203 assert(doc); 204 Placement placement(&config, doc.get()); 219 doc->close();
|
| /external/snakeyaml/src/test/java/org/yaml/snakeyaml/recursive/ |
| Human_WithArrayOfChildrenTest.java | 179 String doc = Util.getLocalResource("recursive/with-childrenArray-no-root-tag.yaml"); local 180 Human_WithArrayOfChildren son2 = (Human_WithArrayOfChildren) yaml.load(doc);
|
| /external/wpa_supplicant_8/src/utils/ |
| xml_libxml2.c | 56 xmlDocPtr doc; local 67 doc = xmlNewDoc((xmlChar *) "1.0"); 68 if (doc == NULL) 70 n = xmlDocCopyNode((xmlNodePtr) node, doc, 1); 72 xmlFreeDoc(doc); 75 xmlDocSetRootElement(doc, n); 91 ret = xmlSchemaValidateDoc(vctx, doc); 93 xmlFreeDoc(doc); 118 xmlDocPtr doc; local 128 doc = xmlNewDoc((xmlChar *) "1.0") 181 xmlDocPtr doc; local 208 xmlDocPtr doc; local [all...] |
| /frameworks/base/tools/aapt2/cmd/ |
| Util.cpp | 227 std::unique_ptr<xml::XmlResource> doc = util::make_unique<xml::XmlResource>(); local 228 doc->root = std::move(manifest_el); 229 return doc;
|
| /frameworks/base/tools/aapt2/test/ |
| Builders.cpp | 219 std::unique_ptr<xml::XmlResource> doc = xml::Inflate(&in, &diag, Source("test.xml")); local 220 CHECK(doc != nullptr && doc->root != nullptr) << "failed to parse inline XML string"; 221 return doc; 226 std::unique_ptr<xml::XmlResource> doc = BuildXmlDom(str); local 227 doc->file.name.package = context->GetCompilationPackage(); 228 return doc;
|
| /libcore/dom/src/test/java/org/w3c/domts/ |
| DOMTest.java | 202 Document doc = factory.load(resolveURI(docURI)); local 204 // if will be modified is false and doc is an EventTarget 207 * wBM: if (!willBeModified && doc instanceof EventTarget) { 208 * ((EventTarget) doc).addEventListener("DOMSubtreeModified", this, 211 return doc; 224 public Object createXPathEvaluator(Document doc) { 225 return factory.createXPathEvaluator(doc);
|
| /libcore/luni/src/test/java/tests/org/w3c/dom/ |
| DOMTestCase.java | 17 Document doc = load(resolveURI(docURI), builder); local 18 return doc; 22 Document doc = null; local 27 doc = builder.parse(url.openStream()); 37 return doc;
|