/cts/suite/audio_quality/lib/include/task/ |
ModelBuilder.h | 25 class XMLElement; 52 virtual bool parseAttributes(const tinyxml2::XMLElement& elem, TaskGeneric& task); 53 virtual TaskGeneric* parseGeneric(const tinyxml2::XMLElement& elem, int tableIndex); 54 virtual TaskCase* parseCase(const tinyxml2::XMLElement& root); 55 virtual TaskBatch* parseBatch(const tinyxml2::XMLElement& root, const android::String8& xmlFileName); 56 virtual TaskCase* parseInclude(const tinyxml2::XMLElement& elem, const android::String8& path);
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/xml/ |
XMLGroupVisitor.java | 28 protected final XMLElement element; 41 public XMLGroupVisitor(final XMLElement element, final String name) 50 final XMLElement child = createChild(bundle.getName()); 57 final XMLElement child = createChild(name); 66 private XMLElement createChild(final String name) throws IOException {
|
XMLCoverageWriter.java | 46 public static XMLElement createChild(final XMLElement parent, 48 final XMLElement child = parent.element(tagname); 64 final XMLElement element) throws IOException { 72 final XMLElement parent) throws IOException { 73 final XMLElement element = createChild(parent, "package", p.getName()); 84 final XMLElement parent) throws IOException { 85 final XMLElement element = createChild(parent, "class", c.getName()); 93 final XMLElement parent) throws IOException { 94 final XMLElement element = createChild(parent, "method", m.getName()) [all...] |
XMLElement.java | 20 * Simple API to create well formed XML streams. A {@link XMLElement} instance 25 public class XMLElement { 50 private XMLElement lastchild; 60 protected XMLElement(final Writer writer, final String name) { 96 protected void addChildElement(final XMLElement child) throws IOException { 147 public XMLElement attr(final String name, final String value) 179 public XMLElement attr(final String name, final int value) 198 public XMLElement attr(final String name, final long value) 212 public XMLElement text(final String text) throws IOException { 233 public XMLElement element(final String name) throws IOException [all...] |
XMLDocument.java | 25 * @see XMLElement 27 public class XMLDocument extends XMLElement {
|
/external/jacoco/org.jacoco.cli/src/org/jacoco/cli/internal/ |
XmlDocumentation.java | 21 import org.jacoco.report.internal.xml.XMLElement; 33 final XMLElement parent) throws IOException { 35 final XMLElement element = parent.element("command"); 43 private static void writeOptions(final XMLElement parent, 47 final XMLElement optionNode = parent.element("option"); 68 final XMLElement root = new XMLDocument("documentation", null, null,
|
/system/bt/btif/src/ |
btif_config_transcode.cc | 37 XMLElement* rootElement = document.RootElement(); 47 for (XMLElement* i = rootElement->FirstChildElement(); i != NULL; 49 for (XMLElement* j = i->FirstChildElement(); j != NULL; 52 for (XMLElement* k = j->FirstChildElement(); k != NULL;
|
/external/tinyxml2/ |
tinyxml2.h | 108 class XMLElement;
483 virtual bool VisitEnter( const XMLElement& /*element*/, const XMLAttribute* /*firstAttribute*/ ) {
487 virtual bool VisitExit( const XMLElement& /*element*/ ) {
659 friend class XMLElement;
674 virtual XMLElement* ToElement() {
698 virtual const XMLElement* ToElement() const {
762 const XMLElement* FirstChildElement( const char* name = 0 ) const;
764 XMLElement* FirstChildElement( const char* name = 0 ) {
765 return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->FirstChildElement( name ));
780 const XMLElement* LastChildElement( const char* name = 0 ) const; [all...] |
xmltest.cpp | 157 XMLElement* titleElement = doc.FirstChildElement( "PLAY" )->FirstChildElement( "TITLE" );
248 XMLElement* attributeApproachElement = doc.FirstChildElement()->FirstChildElement( "attributeApproach" );
251 XMLElement* textApproachElement = doc.FirstChildElement()->FirstChildElement( "textApproach" );
274 When using an attribute, you navigate to the XMLElement
278 @skip XMLElement* attributeApproachElement
282 down one more step to the XMLElement that contains
288 @skip XMLElement* textApproachElement
393 XMLElement* element1 = doc.NewElement("Element1");
394 XMLElement* element2 = doc.NewElement("Element2");
403 XMLElement* element1 = doc.NewElement("Element1"); [all...] |
tinyxml2.cpp | 708 returnNode = CreateUnlinkedNode<XMLElement>( _elementPool );
940 const XMLElement* XMLNode::FirstChildElement( const char* name ) const
943 const XMLElement* element = node->ToElementWithName( name );
952 const XMLElement* XMLNode::LastChildElement( const char* name ) const
955 const XMLElement* element = node->ToElementWithName( name );
964 const XMLElement* XMLNode::NextSiblingElement( const char* name ) const
967 const XMLElement* element = node->ToElementWithName( name );
976 const XMLElement* XMLNode::PreviousSiblingElement( const char* name ) const
979 const XMLElement* element = node->ToElementWithName( name );
1049 XMLElement* ele = node->ToElement(); [all...] |
/external/jacoco/org.jacoco.report/src/org/jacoco/report/xml/ |
XMLFormatter.java | 27 import org.jacoco.report.internal.xml.XMLElement; 62 final XMLElement root = new XMLDocument("report", PUBID, SYSTEM, 66 RootVisitor(final XMLElement element) throws IOException { 95 final XMLElement sessioninfo = root.element("sessioninfo");
|
/cts/suite/audio_quality/lib/src/task/ |
ModelBuilder.cpp | 94 const XMLElement* root; 105 TaskGeneric* ModelBuilder::parseGeneric(const XMLElement& self, int tableIndex) 124 const XMLElement* child = self.FirstChildElement(); 181 TaskCase* ModelBuilder::parseCase(const XMLElement& root) 188 TaskBatch* ModelBuilder::parseBatch(const XMLElement& root, const android::String8& xmlFileName) 200 const XMLElement* inc = root.FirstChildElement("include"); 237 TaskCase* ModelBuilder::parseInclude(const XMLElement& elem, const android::String8& path) 251 bool ModelBuilder::parseAttributes(const XMLElement& elem, TaskGeneric& task)
|
/hardware/interfaces/camera/device/3.4/default/ |
ExternalCameraUtils.cpp | 184 XMLElement *extCam = configXml.FirstChildElement("ExternalCamera"); 190 XMLElement *providerCfg = extCam->FirstChildElement("Provider"); 196 XMLElement *ignore = providerCfg->FirstChildElement("ignore"); 202 XMLElement *id = ignore->FirstChildElement("id"); 213 XMLElement *deviceCfg = extCam->FirstChildElement("Device"); 219 XMLElement *jpegBufSz = deviceCfg->FirstChildElement("MaxJpegBufferSize"); 226 XMLElement *numVideoBuf = deviceCfg->FirstChildElement("NumVideoBuffers"); 234 XMLElement *numStillBuf = deviceCfg->FirstChildElement("NumStillBuffers"); 242 XMLElement *fpsList = deviceCfg->FirstChildElement("FpsList"); 247 XMLElement *row = fpsList->FirstChildElement("Limit") [all...] |
/frameworks/av/media/libeffects/config/src/ |
EffectsConfig.cpp | 39 std::vector<std::reference_wrapper<const XMLElement>> getChildren(const XMLNode& node, 41 std::vector<std::reference_wrapper<const XMLElement>> children; 53 const char* dump(const XMLElement& element, XMLPrinter&& printer = {}) { 134 bool parseLibrary(const XMLElement& xmlLibrary, Libraries* libraries) { 158 bool parseEffect(const XMLElement& xmlEffect, Libraries& libraries, Effects* effects) { 169 auto parseImpl = [&libraries](const XMLElement& xmlImpl, EffectImpl& effect) { 224 bool parseStream(const XMLElement& xmlStream, Effects& effects, std::vector<Stream>* streams) {
|
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/xml/ |
XMLElementTest.java | 23 * Unit tests for {@link XMLElement}. 29 private XMLElement root; 34 root = new XMLElement(buffer, "root");
|
XMLGroupVisitorTest.java | 33 private XMLElement root;
|
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/ |
HTMLElement.java | 18 import org.jacoco.report.internal.xml.XMLElement; 21 * A {@link XMLElement} with utility methods to create XHTML documents. It 24 public class HTMLElement extends XMLElement {
|
/external/fonttools/Lib/fontTools/ttLib/tables/ |
S_V_G_.py | 57 XMLElement = ET.Element
|
/prebuilts/misc/common/jacoco/lib/ |
org.jacoco.report-0.8.0.201801022044.jar | |
/prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.report/0.7.1.201405082137/ |
org.jacoco.report-0.7.1.201405082137.jar | |
/prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.report/0.7.3.201501221555/ |
org.jacoco.report-0.7.3.201501221555.jar | |
/prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.report/0.7.4.201502262128/ |
org.jacoco.report-0.7.4.201502262128.jar | |
/prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.report/0.7.5.201505241946/ |
org.jacoco.report-0.7.5.201505241946.jar | |
/prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.report/0.7.6.201602180812/ |
org.jacoco.report-0.7.6.201602180812.jar | |
/prebuilts/tools/common/m2/repository/org/jacoco/org.jacoco.report/0.7.7.201606060606/ |
org.jacoco.report-0.7.7.201606060606.jar | |