Home
last modified time | relevance | path

Searched refs:longVec (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/multimedia/image_framework/plugins/common/libs/image/libjpegplugin/src/
H A Dexif_info.cpp1320 std::vector<std::string> longVec; in CreateExifEntryOfRationalExif() local
1321 SplitStr(value, separator, longVec); in CreateExifEntryOfRationalExif()
1322 if (longVec.size() != sepSize) { in CreateExifEntryOfRationalExif()
1341 std::vector<std::string> longVec; in CreateExifEntryOfGpsTimeStamp() local
1342 SplitStr(value, ":", longVec); in CreateExifEntryOfGpsTimeStamp()
1343 if (longVec.size() != CONSTANT_3) { in CreateExifEntryOfGpsTimeStamp()
1380 std::vector<std::string> longVec; in CreateExifEntryOfGpsLatitudeOrLongitude() local
1381 SplitStr(value, ",", longVec); in CreateExifEntryOfGpsLatitudeOrLongitude()
1382 if (longVec.size() == CONSTANT_2) { in CreateExifEntryOfGpsLatitudeOrLongitude()
1385 if (longVec.size() != CONSTANT_3 || !IsValidGpsData(longVec, tag)) { in CreateExifEntryOfGpsLatitudeOrLongitude()
[all …]
/ohos5.0/base/notification/common_event_service/interfaces/kits/cj/src/
H A Dparameter_parse.cpp186 std::vector<long> longVec(longArr, longArr + head->size); in SetDataParameters() local
187 InnerSetWantParamsArrayLong(key, longVec, wantP); in SetDataParameters()