Home
last modified time | relevance | path

Searched refs:localLength (Results 1 – 6 of 6) sorted by relevance

/external/icu/icu4c/source/common/
Duinvchar.cpp453 const UChar *localString, int32_t localLength) { in uprv_compareInvAscii() argument
459 if(outString==NULL || outLength<-1 || localString==NULL || localLength<-1) { in uprv_compareInvAscii()
466 if(localLength<0) { in uprv_compareInvAscii()
467 localLength=u_strlen(localString); in uprv_compareInvAscii()
470 minLength= outLength<localLength ? outLength : localLength; in uprv_compareInvAscii()
493 return outLength-localLength; in uprv_compareInvAscii()
499 const UChar *localString, int32_t localLength) { in uprv_compareInvEbcdic() argument
505 if(outString==NULL || outLength<-1 || localString==NULL || localLength<-1) { in uprv_compareInvEbcdic()
512 if(localLength<0) { in uprv_compareInvEbcdic()
513 localLength=u_strlen(localString); in uprv_compareInvEbcdic()
[all …]
Dudataswp.h135 const UChar *localString, int32_t localLength);
312 const UChar *localString, int32_t localLength);
321 const UChar *localString, int32_t localLength);
/external/skqp/tools/bookmaker/
DincludeWriter.cpp266 int localLength = child->fStart - start; in descriptionOut() local
270 this->rewriteBlock(localLength, start, defIsPhrase); in descriptionOut()
271 start += localLength; in descriptionOut()
272 length -= localLength; in descriptionOut()
278 localLength = child->fContentEnd - child->fStart; in descriptionOut()
279 start += localLength; in descriptionOut()
280 length -= localLength; in descriptionOut()
/external/skia/tools/bookmaker/
DincludeWriter.cpp266 int localLength = child->fStart - start; in descriptionOut() local
270 this->rewriteBlock(localLength, start, defIsPhrase); in descriptionOut()
271 start += localLength; in descriptionOut()
272 length -= localLength; in descriptionOut()
278 localLength = child->fContentEnd - child->fStart; in descriptionOut()
279 start += localLength; in descriptionOut()
280 length -= localLength; in descriptionOut()
/external/mesa3d/src/mesa/main/
Dshader_query.cpp802 GLsizei localLength; in _mesa_get_program_resource_name() local
805 length = &localLength; in _mesa_get_program_resource_name()
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
DDexMakerTest.java1810 Local<Integer> localLength = code.getParameter(0, TypeId.INT); in newArrayMethod() local
1812 code.newArray(localResult, localLength); in newArrayMethod()