Home | History | Annotate | Download | only in native

Lines Matching refs:uSource

191     ScopedCharArrayRO uSource(env, source);
192 if (uSource.get() == NULL) {
193 maybeThrowIcuException(env, "uSource", U_ILLEGAL_ARGUMENT_ERROR);
210 const jchar* mySource = uSource.get() + *sourceOffset;
211 const UChar* mySourceLimit= uSource.get() + sourceEnd;
216 *sourceOffset = (mySource - uSource.get()) - *sourceOffset;
247 ScopedByteArrayRO uSource(env, source);
248 if (uSource.get() == NULL) {
249 maybeThrowIcuException(env, "uSource", U_ILLEGAL_ARGUMENT_ERROR);
266 const char* mySource = reinterpret_cast<const char*>(uSource.get() + *sourceOffset);
267 const char* mySourceLimit = reinterpret_cast<const char*>(uSource.get() + sourceEnd);
272 *sourceOffset = mySource - reinterpret_cast<const char*>(uSource.get()) - *sourceOffset;