/external/webrtc/webrtc/libjingle/xmllite/ |
xmlparser.cc | 26 StartElementCallback(void * userData, const char *name, const char **atts) { 27 (static_cast<XmlParser *>(userData))->ExpatStartElement(name, atts); 78 XmlParser::ExpatStartElement(const char *name, const char **atts) { 83 for (att = atts; *att; att += 2) { 101 pxph_->StartElement(&context_, name, atts);
|
xmlparser.h | 45 const char * name, const char ** atts) = 0; 64 void ExpatStartElement(const char * name, const char ** atts);
|
xmlparser_unittest.cc | 27 const char * name, const char ** atts) { 29 while (*atts) { 30 ss_ << ", " << pctx->ResolveQName(*atts, true).Merged() 31 << "='" << *(atts+1) << "'"; 32 atts += 2;
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/ |
ParserAdapterTest.java | 261 AttributeListImpl atts = new AttributeListImpl(); local 262 atts.addAttribute("john:doe", "int", "42"); 266 adapter.startElement("foo:bar", atts); 279 AttributeListImpl atts = new AttributeListImpl(); local 280 atts.addAttribute("john:doe", "int", "42"); 284 adapter.startElement("foo:bar", atts);
|
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
AttributesImpl.java | 72 * @param atts The existing Attributes object. 74 public AttributesImpl (Attributes atts) 76 setAttributes(atts); 346 * @param atts The attributes to copy. 348 public void setAttributes (Attributes atts) 351 length = atts.getLength(); 355 data[i*5] = atts.getURI(i); 356 data[i*5+1] = atts.getLocalName(i); 357 data[i*5+2] = atts.getQName(i); 358 data[i*5+3] = atts.getType(i) [all...] |
/device/linaro/bootloader/edk2/ShellPkg/Application/Shell/ |
ShellEnvVar.h | 27 UINT32 Atts;
110 @param Atts Pointer to the UINT32 for attributes (or NULL)
118 #define SHELL_GET_ENVIRONMENT_VARIABLE_AND_ATTRIBUTES(EnvVarName,Atts,BufferSize,Buffer) \
121 Atts, \
|
ShellEnvVar.c | 182 Status = SHELL_GET_ENVIRONMENT_VARIABLE_AND_ATTRIBUTES(VariableName, &VarList->Atts, &ValSize, VarList->Val);
194 Status = SHELL_GET_ENVIRONMENT_VARIABLE_AND_ATTRIBUTES(VariableName, &VarList->Atts, &ValSize, VarList->Val);
272 if (Node->Atts & EFI_VARIABLE_NON_VOLATILE) {
359 Node->Atts = EFI_VARIABLE_BOOTSERVICE_ACCESS;
|
/external/eyes-free/AccessCheck/src/com/android/accessibility/ |
AccessibilityValidationContentHandler.java | 115 Attributes atts) { 136 for (int i = 0; i < atts.getLength(); i++) { 137 String currentAttribute = atts.getLocalName(i).toLowerCase(); 144 extendedOutput.append("|src=" + atts.getValue(i));
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
TreeWalker.java | 333 NamedNodeMap atts = ((Element) node).getAttributes(); local 334 int nAttrs = atts.getLength(); 339 Node attr = atts.item(i); 367 new AttList(atts, m_dh)); 469 NamedNodeMap atts = ((Element) node).getAttributes(); 470 int nAttrs = atts.getLength(); 474 Node attr = atts.item(i);
|
DOMBuilder.java | 314 * @param atts The attributes attached to the element, if any. 319 String ns, String localName, String name, Attributes atts) 336 int nAtts = atts.getLength(); 343 //System.out.println("type " + atts.getType(i) + " name " + atts.getLocalName(i) ); 345 if (atts.getType(i).equalsIgnoreCase("ID")) 346 setIDAttribute(atts.getValue(i), elem); 348 String attrNS = atts.getURI(i); 353 // System.out.println("attrNS: "+attrNS+", localName: "+atts.getQName(i) 354 // +", qname: "+atts.getQName(i)+", value: "+atts.getValue(i)) [all...] |
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/ |
DmpStore.c | 40 @param[in] Atts The input attribute value
47 IN CONST UINT32 Atts
56 if ((Atts & EFI_VARIABLE_NON_VOLATILE) != 0) {
59 if ((Atts & EFI_VARIABLE_RUNTIME_ACCESS) != 0) {
61 } else if ((Atts & EFI_VARIABLE_BOOTSERVICE_ACCESS) != 0) {
64 if ((Atts & EFI_VARIABLE_HARDWARE_ERROR_RECORD) != 0) {
67 if ((Atts & EFI_VARIABLE_AUTHENTICATED_WRITE_ACCESS) != 0) {
70 if ((Atts & EFI_VARIABLE_TIME_BASED_AUTHENTICATED_WRITE_ACCESS) != 0) {
385 UINT32 Atts;
454 Status = gRT->GetVariable (FoundVarName, &FoundVarGuid, &Atts, &DataSize, DataBuffer); [all...] |
/hardware/intel/common/utils/media_resource_manager/include/ |
MediaResourceArbitrator.h | 138 static void startElement(void *userData, const char *name, const char **atts); 140 void getConfigData(const char *name, const char **atts);
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
AttributesImplSerializer.java | 188 * @param atts the attributes to copy into these attributes. 192 public final void setAttributes(Attributes atts) 195 super.setAttributes(atts); 200 int numAtts = atts.getLength();
|
ExtendedContentHandler.java | 33 * startElement(namespaceURI,localName,qName,atts) 38 * addAttributes(atts) 69 * @param atts the attributes to add. 72 public void addAttributes(org.xml.sax.Attributes atts) 116 * startElement(uri,localName,qname,atts)
|
TreeWalker.java | 320 NamedNodeMap atts = elem_node.getAttributes(); local 321 int nAttrs = atts.getLength(); 329 final Node attr = atts.item(i); 362 new AttList(atts, m_dh)); 469 NamedNodeMap atts = elem_node.getAttributes(); local 470 int nAttrs = atts.getLength(); 476 final Node attr = atts.item(i);
|
/frameworks/base/packages/Osu/src/com/android/hotspot2/osu/ |
XMLParser.java | 44 //System.out.println("Added " + mCurrent.getTag() + ", atts " + mCurrent.getAttributes());
|
/prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/Terminal/ |
__init__.py | 76 'atts' : attachment,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Terminal/ |
__init__.py | 76 'atts' : attachment,
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/peripheralprofile/ |
ProfileManager.java | 83 public void startElement(String namespaceURI, String localName, String qName, Attributes atts) throws SAXException { 88 mParsingProfile.startElement(namespaceURI, localName, qName, atts); 90 mParsingProfile.startElement(namespaceURI, localName, qName, atts);
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/ |
ElementParser.java | 92 String qName, Attributes atts) { 94 add(atts.getValue("id"), plugins); 96 add(atts.getValue("id")+"-feature", features);
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
XMLWriter.java | 570 * @param atts The element's attribute list (must not be null). 577 String qName, Attributes atts) 585 writeAttributes(atts); 596 super.startElement(uri, localName, qName, atts); 745 * @param atts The element's attribute list. 753 String qName, Attributes atts) 759 writeAttributes(atts); 765 super.startElement(uri, localName, qName, atts); 925 * @param atts The element's attributes. 935 String qName, Attributes atts, [all...] |
AttributesImpl.java | 80 * @param atts The existing Attributes object. 82 public AttributesImpl (Attributes atts) 84 setAttributes(atts); 354 * @param atts The attributes to copy. 356 public void setAttributes (Attributes atts) 359 length = atts.getLength(); 363 data[i*5] = atts.getURI(i); 364 data[i*5+1] = atts.getLocalName(i); 365 data[i*5+2] = atts.getQName(i); 366 data[i*5+3] = atts.getType(i) [all...] |
/cts/tests/tests/util/src/android/util/cts/ |
XmlEncodingTest.java | 257 public void startElement(String uri, String localName, String name, Attributes atts) 262 mVec.add(atts.getLength() + STR_EMPTY); 263 for (int i = 0; i < atts.getLength(); i++) { 264 mVec.add(atts.getLocalName(i)); 265 mVec.add(atts.getValue(i));
|
/external/expat/tests/ |
runtests.c | 174 const XML_Char *UNUSED_P(name), const XML_Char **UNUSED_P(atts)) 240 const XML_Char **atts) 243 if (storage->count < 0 && atts != NULL && atts[0] != NULL) { 245 CharData_AppendXMLChars(storage, atts[1], -1); 772 const XML_Char **atts) 775 for (i = 0; atts[i] != NULL; i += 2) { 776 const XML_Char *attrname = atts[i]; 777 const XML_Char *value = atts[i + 1]; [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/expat/ |
xmltok.h | 148 ATTRIBUTE *atts);
240 #define XmlGetAttributes(enc, ptr, attsMax, atts) \
241 (((enc)->getAtts)(enc, ptr, attsMax, atts))
|