HomeSort by relevance Sort by last modified time
    Searched defs:tagType (Results 1 - 5 of 5) sorted by null

  /external/ppp/pppd/plugins/rp-pppoe/
common.c 50 UINT16_t tagType, tagLen;
71 tagType = (((UINT16_t) curTag[0]) << 8) +
75 if (tagType == TAG_END_OF_LIST) {
82 func(tagType, tagLen, curTag+TAG_HDR_SIZE, extra);
105 UINT16_t tagType, tagLen;
126 tagType = (((UINT16_t) curTag[0]) << 8) +
130 if (tagType == TAG_END_OF_LIST) {
137 if (tagType == type) {
  /external/clang/lib/Sema/
SemaCXXScopeSpec.cpp 62 if (const TagType *Tag = T->getAs<TagType>())
150 const TagType *Tag = NNS->getAsType()->getAs<TagType>();
221 const TagType *tagType = type->getAs<TagType>();
222 if (tagType && tagType->isBeingDefined())
239 if (const EnumType *enumType = dyn_cast_or_null<EnumType>(tagType)) {
    [all...]
  /frameworks/base/media/libdrm/mobile1/src/xml/
xml_tinyparser.c 74 int32_t tagLen, tagType, bal;
81 if (NULL == (buffer = XML_DOM_getTag(buffer, &tagLen, &tagType)))
84 switch (tagType) {
264 uint8_t *XML_DOM_getTag(uint8_t *buffer, int32_t *tagLen, int32_t *tagType)
300 *tagType = XML_TAG_END;
310 *tagType = XML_TAG_START;
312 *tagType = XML_TAG_SELF;
326 if (*tagType == XML_TAG_END)
342 int32_t tagLen, tagType;
358 if (NULL == (buffer = XML_DOM_getTag(buffer, &tagLen, &tagType))) {
    [all...]
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
Adapters.java     [all...]
  /frameworks/base/core/java/android/app/
SearchableInfo.java 560 int tagType = xml.next();
561 while (tagType != XmlPullParser.END_DOCUMENT) {
562 if (tagType == XmlPullParser.START_TAG) {
591 tagType = xml.next();
    [all...]

Completed in 158 milliseconds