Searched defs:numTags (Results 1 - 5 of 5) sorted by relevance

/frameworks/av/camera/ndk/
H A DNdkCameraMetadata.cpp43 const ACameraMetadata* acm, /*out*/int32_t* numTags, /*out*/const uint32_t** tags) {
45 if (acm == nullptr || numTags == nullptr || tags == nullptr) {
46 ALOGE("%s: invalid argument! metadata %p, numTags %p, tags %p",
47 __FUNCTION__, acm, numTags, tags);
50 return acm->getTags(numTags, tags);
42 ACameraMetadata_getAllTags( const ACameraMetadata* acm, int32_t* numTags, const uint32_t** tags) argument
H A DNdkCaptureRequest.cpp92 const ACaptureRequest* req, /*out*/int32_t* numTags, /*out*/const uint32_t** tags) {
94 if (req == nullptr || numTags == nullptr || tags == nullptr) {
95 ALOGE("%s: invalid argument! request %p, numTags %p, tags %p",
96 __FUNCTION__, req, numTags, tags);
99 return req->settings->getTags(numTags, tags);
91 ACaptureRequest_getAllTags( const ACaptureRequest* req, int32_t* numTags, const uint32_t** tags) argument
/frameworks/av/camera/ndk/impl/
H A DACameraMetadata.cpp210 ACameraMetadata::getTags(/*out*/int32_t* numTags, argument
232 *numTags = mTags.size();
/frameworks/base/tools/aapt2/
H A DLocale.cpp78 const int numTags = parts.size(); local
80 if (numTags >= 1) {
88 if (!valid || numTags == 1) {
92 // At this point, valid == true && numTags > 1.
105 if (!valid || numTags == 2) {
109 // At this point, valid == true && numTags > 1.
120 if (!valid || numTags == 3) {
131 if (!valid || numTags > 4) {
/frameworks/base/tools/aapt/
H A DAaptAssets.cpp217 const int numTags = parts.size(); local
219 if (numTags >= 1) {
227 if (!valid || numTags == 1) {
231 // At this point, valid == true && numTags > 1.
244 if (!valid || numTags == 2) {
248 // At this point, valid == true && numTags > 1.
259 if (!valid || numTags == 3) {
270 if (!valid || numTags > 4) {

Completed in 116 milliseconds