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

  /frameworks/av/camera/
VendorTagDescriptor.cpp 107 int tagType = vOps->get_tag_type(vOps, tag);
108 if (tagType < 0 || tagType >= NUM_TYPES) {
109 ALOGE("%s: tag type %d from vendor ops does not exist.", __FUNCTION__, tagType);
112 desc->mTagToTypeMap.add(tag, tagType);
164 int32_t tagType;
176 if ((res = parcel->readInt32(&tagType)) != OK) {
180 if (tagType < 0 || tagType >= NUM_TYPES) {
181 ALOGE("%s: tag type %d from vendor ops does not exist.", __FUNCTION__, tagType);
    [all...]
CameraMetadata.cpp 172 int tagType = get_camera_metadata_tag_type(tag);
173 if ( CC_UNLIKELY(tagType == -1)) {
177 if ( CC_UNLIKELY(tagType != expectedType) ) {
181 camera_metadata_type_names[tagType],
  /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 57 if (const TagType *Tag = T->getAs<TagType>())
144 const TagType *Tag = NNS->getAsType()->getAs<TagType>();
201 const TagType *tagType = type->getAs<TagType>();
202 if (tagType && tagType->isBeingDefined())
218 const EnumType *enumType = dyn_cast_or_null<EnumType>(tagType);
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/resource/bitmap/
ImageHeaderParser.java 191 int tagOffset, tagType, formatCode, componentCount;
195 tagType = segmentData.getInt16(tagOffset);
197 if (tagType != ORIENTATION_TAG_TYPE) { //we only want orientation
220 Log.d(TAG, "Got tagIndex=" + i + " tagType=" + tagType + " formatCode =" + formatCode
237 Log.d(TAG, "Illegal tagValueOffset=" + tagValueOffset + " tagType=" + tagType);
244 Log.d(TAG, "Illegal number of bytes for TI tag data tagType=" + tagType);
  /frameworks/base/core/java/android/content/
RestrictionsManager.java 557 int tagType = xml.next();
558 while (tagType != XmlPullParser.END_DOCUMENT) {
559 if (tagType == XmlPullParser.START_TAG) {
572 tagType = xml.next();
  /frameworks/base/core/jni/
android_hardware_camera2_CameraMetadata.cpp 275 int tagType = get_camera_metadata_tag_type(tag);
276 if (tagType == -1) {
281 size_t tagSize = Helpers::getTypeSize(tagType);
312 int tagType = get_camera_metadata_tag_type(tag);
313 if (tagType == -1) {
318 size_t tagSize = Helpers::getTypeSize(tagType);
337 tagType, arrayReader.get(), arrayReader.size());
733 int tagType = get_camera_metadata_tag_type(tag);
734 if (tagType == -1) {
740 return tagType;
    [all...]
  /development/samples/XmlAdapters/src/com/example/android/xmladapters/
Adapters.java     [all...]
  /frameworks/base/core/java/android/app/
SearchableInfo.java 571 int tagType = xml.next();
572 while (tagType != XmlPullParser.END_DOCUMENT) {
573 if (tagType == XmlPullParser.START_TAG) {
602 tagType = xml.next();
    [all...]
  /frameworks/base/services/core/java/com/android/server/
ConnectivityService.java     [all...]

Completed in 569 milliseconds