Lines Matching refs:newVec

107     std::vector<bool> newVec(num);  in APersistableBundle_putBooleanVector()  local
109 newVec[i] = vec[i]; in APersistableBundle_putBooleanVector()
111 pBundle->mPBundle.putBooleanVector(android::String16(key), newVec); in APersistableBundle_putBooleanVector()
116 std::vector<int32_t> newVec(num); in APersistableBundle_putIntVector() local
118 newVec[i] = vec[i]; in APersistableBundle_putIntVector()
120 pBundle->mPBundle.putIntVector(android::String16(key), newVec); in APersistableBundle_putIntVector()
125 std::vector<int64_t> newVec(num); in APersistableBundle_putLongVector() local
127 newVec[i] = vec[i]; in APersistableBundle_putLongVector()
129 pBundle->mPBundle.putLongVector(android::String16(key), newVec); in APersistableBundle_putLongVector()
134 std::vector<double> newVec(num); in APersistableBundle_putDoubleVector() local
136 newVec[i] = vec[i]; in APersistableBundle_putDoubleVector()
138 pBundle->mPBundle.putDoubleVector(android::String16(key), newVec); in APersistableBundle_putDoubleVector()
143 std::vector<android::String16> newVec(num); in APersistableBundle_putStringVector() local
145 newVec[i] = android::String16(vec[i]); in APersistableBundle_putStringVector()
147 pBundle->mPBundle.putStringVector(android::String16(key), newVec); in APersistableBundle_putStringVector()
182 std::vector<bool> newVec; in APersistableBundle_getBooleanVector() local
183 bool ret = pBundle->mPBundle.getBooleanVector(android::String16(key), &newVec); in APersistableBundle_getBooleanVector()
185 return getVecInternal<bool>(newVec, buffer, bufferSizeBytes); in APersistableBundle_getBooleanVector()
189 std::vector<int32_t> newVec; in APersistableBundle_getIntVector() local
190 bool ret = pBundle->mPBundle.getIntVector(android::String16(key), &newVec); in APersistableBundle_getIntVector()
192 return getVecInternal<int32_t>(newVec, buffer, bufferSizeBytes); in APersistableBundle_getIntVector()
196 std::vector<int64_t> newVec; in APersistableBundle_getLongVector() local
197 bool ret = pBundle->mPBundle.getLongVector(android::String16(key), &newVec); in APersistableBundle_getLongVector()
199 return getVecInternal<int64_t>(newVec, buffer, bufferSizeBytes); in APersistableBundle_getLongVector()
203 std::vector<double> newVec; in APersistableBundle_getDoubleVector() local
204 bool ret = pBundle->mPBundle.getDoubleVector(android::String16(key), &newVec); in APersistableBundle_getDoubleVector()
206 return getVecInternal<double>(newVec, buffer, bufferSizeBytes); in APersistableBundle_getDoubleVector()
212 std::vector<android::String16> newVec; in APersistableBundle_getStringVector() local
213 bool ret = pBundle->mPBundle.getStringVector(android::String16(key), &newVec); in APersistableBundle_getStringVector()
215 return getStringsInternal<std::vector<android::String16>>(newVec, vec, bufferSizeBytes, in APersistableBundle_getStringVector()