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

1 2 3 4 5 6 7 8 91011

  /external/libxml2/test/relaxng/
tutorA.rng 18 <ref name="common-atts"/>
22 <ref name="common-atts"/>
37 <ref name="common-atts"/>
41 <ref name="common-atts"/>
45 <ref name="common-atts"/>
49 <ref name="common-atts"/>
53 <ref name="common-atts"/>
57 <ref name="common-atts"/>
61 <ref name="common-atts"/>
65 <ref name="common-atts"/>
    [all...]
  /frameworks/av/media/libmedia/
MediaProfiles.cpp 173 MediaProfiles::createVideoCodec(const char **atts, MediaProfiles *profiles)
175 CHECK(!strcmp("codec", atts[0]) &&
176 !strcmp("bitRate", atts[2]) &&
177 !strcmp("width", atts[4]) &&
178 !strcmp("height", atts[6]) &&
179 !strcmp("frameRate", atts[8]));
182 const int codec = findTagForName(sVideoEncoderNameMap, nMappings, atts[1]);
187 atoi(atts[3]), atoi(atts[5]), atoi(atts[7]), atoi(atts[9]))
    [all...]
  /external/webrtc/webrtc/libjingle/xmllite/
xmlbuilder.cc 36 const char * name, const char ** atts) {
43 if (!*atts)
48 while (*atts) {
49 QName attName(pctx->ResolveQName(*atts, true));
64 pelNew->AddAttr(attName, std::string(*(atts + 1)));
65 atts += 2;
73 const char * name, const char ** atts) {
74 XmlElement * pelNew = BuildElement(pctx, name, atts);
xmlbuilder.h 36 const char * name, const char ** atts);
38 const char * name, const char ** atts);
  /hardware/intel/common/utils/ISV/profile/
isv_profile.cpp 179 void ISVProfile::getConfigData(const char *name, const char **atts)
186 if (strcmp(atts[attIndex], "name") == 0) {
187 if (getFilterID(atts[attIndex + 1]) == 0) {
188 ALOGE("Couldn't parase the filter %s\n", atts[attIndex+1]);
195 if (!strcmp(atts[attIndex], "value") && !strcmp(atts[attIndex + 1], "true"))
201 if (mCurrentFilter && !strcmp(atts[attIndex], "value")) {
202 if (!strcmp(atts[attIndex + 1], "0"))
204 else if (!strcmp(atts[attIndex + 1], "FFFFFFFF"))
207 mConfigs[mCurrentFilter].minResolution = getResolution(atts[attIndex + 1])
    [all...]
  /frameworks/base/core/java/android/content/
DefaultDataHandler.java 99 private void parseRow(Attributes atts) throws SAXException {
100 String uriStr = atts.getValue(URI_STR);
107 atts.getValue(URI_STR) + " parsing failure");
112 String postfix = atts.getValue(POSTFIX);
134 Attributes atts) throws SAXException {
149 parseRow(atts);
152 int attrLen = atts.getLength();
157 parseRow(atts);
161 int attrLen = atts.getLength();
165 String key = atts.getValue(0)
    [all...]
  /external/mesa3d/src/intel/tools/
decoder.c 174 create_group(struct parser_context *ctx, const char *name, const char **atts)
189 create_enum(struct parser_context *ctx, const char *name, const char **atts)
204 const char **atts, uint32_t *offset, uint32_t *count)
209 for (i = 0; atts[i]; i += 2) {
210 if (strcmp(atts[i], "count") == 0)
211 *count = strtoul(atts[i + 1], &p, 0);
212 else if (strcmp(atts[i], "start") == 0)
213 *offset = strtoul(atts[i + 1], &p, 0);
219 get_register_offset(const char **atts, uint32_t *offset)
224 for (i = 0; atts[i]; i += 2)
    [all...]
  /external/webrtc/webrtc/libjingle/xmpp/
xmppstanzaparser.cc 41 XmlParseContext * pctx, const char * name, const char ** atts) {
43 XmlElement * pelStream = XmlBuilder::BuildElement(pctx, name, atts);
53 builder_.StartElement(pctx, name, atts);
xmppstanzaparser.h 43 const char * name, const char ** atts)
44 { outer_->IncomingStartElement(pctx, name, atts); }
61 const char * name, const char ** atts);
  /libcore/luni/src/main/java/org/xml/sax/helpers/
AttributeListImpl.java 37 * public void startElement (String name, AttributeList atts)
41 * myatts = new AttributeListImpl(atts);
91 * @param atts The attribute list to copy
94 public AttributeListImpl (AttributeList atts)
96 setAttributeList(atts);
113 * @param atts The attribute list to copy.
115 public void setAttributeList (AttributeList atts)
117 int count = atts.getLength();
122 addAttribute(atts.getName(i), atts.getType(i), atts.getValue(i))
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/ext/
Attributes2Impl.java 65 * @param atts The existing Attributes object.
67 public Attributes2Impl (Attributes atts)
69 super (atts);
192 * @param atts The attributes to copy.
196 public void setAttributes (Attributes atts)
198 int length = atts.getLength ();
200 super.setAttributes (atts);
204 if (atts instanceof Attributes2) {
205 Attributes2 a2 = (Attributes2) atts;
212 declared [i] = !"CDATA".equals (atts.getType (i))
    [all...]
  /hardware/intel/common/utils/media_resource_manager/arbitrator/
MediaResourceArbitrator.cpp 444 const char **atts) {
450 if (strcmp(atts[attIndex], "name") == 0) {
451 ALOGV("Parsing codec %s", atts[attIndex+1]);
459 if (strcmp(atts[attIndex], "value") == 0) {
462 MapCodecTypeFromName((const char*)atts[attIndex+1]);
469 if (mIfParsingCodec && !strcmp(atts[attIndex], "value")) {
470 if (!strcmp(atts[attIndex + 1], "false"))
480 if (mIfParsingCodec && !strcmp(atts[attIndex], "value")) {
481 if (!strcmp(atts[attIndex + 1], "false"))
492 if (strcmp(atts[attIndex], "value") == 0)
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/peripheralprofile/
PeripheralProfile.java 177 public void startElement(String namespaceURI, String localName, String qName, Attributes atts) throws SAXException {
179 mProfileName = atts.getValue(kAttr_ProfileName);
180 mProfileDescription = atts.getValue(kAttr_ProfileDescription);
181 mProductName = atts.getValue(kAttr_Product);
184 parseProfileAttributes(mOutputAttributes, localName, atts);
187 parseProfileAttributes(mInputAttributes, localName, atts);
190 parseProfileButtons(mButtonAttributes, localName, atts);
  /external/expat/xmlwf/
xmlwf.c 167 startElement(void *userData, const XML_Char *name, const XML_Char **atts)
175 p = atts;
178 nAtts = (int)((p - atts) >> 1);
180 qsort((void *)atts, nAtts, sizeof(XML_Char *) * 2, attcmp);
181 while (*atts) {
183 fputts(*atts++, fp);
184 attributeValue(fp, *atts);
185 atts++;
213 startElementNS(void *userData, const XML_Char *name, const XML_Char **atts)
235 p = atts;
    [all...]
  /libcore/luni/src/test/java/libcore/xml/
SimpleParserTest.java 106 public void startElement(String uri, String localName, String qName, Attributes atts) {
118 for (int i = 0; i < atts.getLength(); i++) {
119 attributes1.put(atts.getLocalName(i), atts.getValue(i));
132 for (int i = 0; i < atts.getLength(); i++) {
133 attributes2.put(atts.getQName(i), atts.getValue(i));
ExpatSaxParserTest.java 230 Attributes atts) throws SAXException {
247 // Check atts.
248 assertEquals(1, atts.getLength());
250 assertSame("", atts.getURI(0));
251 assertSame("a", atts.getLocalName(0));
252 assertEquals("b", atts.getValue(0));
253 assertEquals(0, atts.getIndex("", "a"));
254 assertEquals("b", atts.getValue("", "a"));
272 // Check atts.
273 assertEquals(2, atts.getLength())
    [all...]
  /frameworks/av/media/libmedia/include/media/
MediaProfiles.h 371 static output_format createEncoderOutputFileFormat(const char **atts);
372 static VideoCodec* createVideoCodec(const char **atts, MediaProfiles *profiles);
373 static AudioCodec* createAudioCodec(const char **atts, MediaProfiles *profiles);
374 static AudioDecoderCap* createAudioDecoderCap(const char **atts);
375 static VideoDecoderCap* createVideoDecoderCap(const char **atts);
376 static VideoEncoderCap* createVideoEncoderCap(const char **atts);
377 static AudioEncoderCap* createAudioEncoderCap(const char **atts);
380 int cameraId, const char **atts, Vector<int>& cameraIds);
382 static int getCameraId(const char **atts);
384 void addStartTimeOffset(int cameraId, const char **atts);
    [all...]
  /hardware/intel/common/utils/ISV/include/
isv_profile.h 105 static void startElement(void *userData, const char *name, const char **atts);
109 void getConfigData(const char *name, const char **atts);
110 void handleFilterParameter(const char *name, const char **atts);
111 void handleCommonParameter(const char *name, const char **atts);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
MockHandler.java 97 public void startElement(String name, AttributeList atts) throws SAXException {
98 logger.add("startElement", name, atts);
101 public void startElement(String uri, String localName, String name, Attributes atts)
103 logger.add("startElement", uri, localName, name, atts);
  /device/linaro/bootloader/edk2/ShellPkg/Application/Shell/
ShellEnvVar.h 27 UINT32 Atts;
115 @param Atts Pointer to the UINT32 for attributes (or NULL)
123 #define SHELL_GET_ENVIRONMENT_VARIABLE_AND_ATTRIBUTES(EnvVarName,Atts,BufferSize,Buffer) \
126 Atts, \
218 @param Atts The attributes of the variable.
230 OUT UINT32 *Atts OPTIONAL
240 @param Atts The attributes of the variable.
251 IN UINT32 Atts
ShellEnvVar.c 190 Status = SHELL_GET_ENVIRONMENT_VARIABLE_AND_ATTRIBUTES(VariableName, &VarList->Atts, &ValSize, VarList->Val);
205 Status = SHELL_GET_ENVIRONMENT_VARIABLE_AND_ATTRIBUTES(VariableName, &VarList->Atts, &ValSize, VarList->Val);
282 if (Node->Atts & EFI_VARIABLE_NON_VOLATILE) {
368 Node->Atts = EFI_VARIABLE_BOOTSERVICE_ACCESS;
400 @param Atts The attributes of the variable.
412 OUT UINT32 *Atts OPTIONAL
428 if (Atts != NULL) {
429 *Atts = Node->Atts;
445 @param Atts The attributes of the variable.
    [all...]
  /libcore/luni/src/main/java/org/xml/sax/
AttributeList.java 39 * public void startElement (String name, AttributeList atts) {
40 * for (int i = 0; i < atts.getLength(); i++) {
41 * String name = atts.getName(i);
42 * String type = atts.getType(i);
43 * String value = atts.getValue(i);
56 * public void startElement (String name, AttributeList atts) {
57 * String identifier = atts.getValue("id");
58 * String label = atts.getValue("label");
  /packages/apps/Email/tests/src/com/android/email/provider/
PolicyTests.java 131 ArrayList<Attachment> atts = new ArrayList<Attachment>(); local
133 atts.add(att1);
135 atts.add(att2);
136 msg1.mAttachments = atts;
140 atts.clear();
142 atts.add(att3);
144 atts.add(att4);
145 msg2.mAttachments = atts;
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
PYXWriter.java 177 Attributes atts) throws SAXException {
181 int length = atts.getLength();
183 qname = atts.getQName(i);
184 if (qname.length() == 0) qname = atts.getLocalName(i);
186 // theWriter.print(atts.getType(i)); // DEBUG
189 theWriter.println(atts.getValue(i));
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/jar/
AttributesTest.java 150 Attributes atts = new Attributes(); local
151 assertNull("Assert 0: ", atts.put(Attributes.Name.CLASS_PATH, "tools.jar"));
152 assertNull("Assert 1: ", atts.put(Attributes.Name.MANIFEST_VERSION, "1"));
154 atts2.putAll(atts);
158 atts.putAll(Collections.EMPTY_MAP);
227 Attributes atts = new Attributes(); local
228 assertNull("Assert 0: ", atts.put(Attributes.Name.CLASS_PATH, "tools.jar"));
229 assertEquals("Assert 1: ", "tools.jar", atts.getValue(Attributes.Name.CLASS_PATH));
232 atts.put("not a name", "value");
238 atts.put(Attributes.Name.CLASS_PATH, Boolean.TRUE)
    [all...]

Completed in 762 milliseconds

1 2 3 4 5 6 7 8 91011