HomeSort by relevance Sort by last modified time
    Searched refs:strLength (Results 1 - 25 of 32) sorted by null

1 2

  /libcore/libdvm/src/main/java/org/apache/harmony/kernel/vm/
StringUtils.java 49 int strLength = 0;
52 strLength += ((String) list[i]).length();
55 StringBuilder sb = new StringBuilder(strLength);
  /external/skia/gm/
androidfallback.cpp 42 const int strLength = sizeof(unicodeStr) / sizeof(uint16_t);
45 SkScalar posX[strLength];
46 SkPoint posXY[strLength];
48 for (int i = 0; i < strLength; ++i) {
  /device/sample/frameworks/PlatformLibrary/jni/
PlatformLibrary.cpp 118 jsize strLength = env->GetStringLength(str);
133 jchar tempChars[strLength];
134 for (int i = 0; i < strLength; i++) {
135 tempChars[i] = strChars[strLength -1 -i];
148 jstring result = env->NewString(tempChars, strLength);
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSParserValues.h 106 template <size_t strLength>
107 bool startsWithIgnoringCase(const char (&str)[strLength]) const
109 return startsWithIgnoringCase(str, strLength - 1);
112 bool startsWithIgnoringCase(const char* str, size_t strLength) const
114 if (length() < strLength)
116 return is8Bit() ? WTF::equalIgnoringCase(str, characters8(), strLength) : WTF::equalIgnoringCase(str, characters16(), strLength);
  /frameworks/base/graphics/java/android/renderscript/
Program.java 249 int strLength;
254 strLength = 0;
256 int bytesLeft = str.length - strLength;
261 bytesLeft = str.length - strLength;
263 int bytesRead = is.read(str, strLength, bytesLeft);
267 strLength += bytesRead;
277 mShader = new String(str, 0, strLength, "UTF-8");
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
BaseInputConnectionTest.java 134 int strLength = str.length();
135 assertEquals(strLength, text2.length());
140 CharSequence expected = str.subSequence(strLength - offLength, strLength);
172 assertEquals(strLength - 1, text3.length());
  /external/ant-glob/src/org/apache/tools/ant/types/selectors/
SelectorUtils.java 292 int strLength = (strIdxEnd - strIdxStart + 1);
295 for (int i = 0; i <= strLength - patLength; i++) {
456 int strLength = (strIdxEnd - strIdxStart + 1);
459 for (int i = 0; i <= strLength - patLength; i++) {
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 126 SVal strLength);
615 SVal strLength) {
616 assert(!strLength.isUndef() && "Attempt to set an undefined string length");
647 if (strLength.isUnknown())
650 return state->set<CStringLength>(MR, strLength);
668 SVal strLength = svalBuilder.getMetadataSymbolVal(CStringChecker::getTag(),
673 state = state->set<CStringLength>(MR, strLength);
675 return strLength;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
WTFString.cpp 191 unsigned strLength = m_impl->length();
194 RELEASE_ASSERT(lengthToAppend <= numeric_limits<unsigned>::max() - strLength);
196 RefPtr<StringImpl> newImpl = StringImpl::createUninitialized(strLength + lengthToAppend, data);
197 StringImpl::copyChars(data, m_impl->characters8(), strLength);
198 StringImpl::copyChars(data + strLength, charactersToAppend, lengthToAppend);
203 RELEASE_ASSERT(lengthToAppend <= numeric_limits<unsigned>::max() - strLength);
206 StringImpl::copyChars(data, m_impl->characters16(), strLength);
207 StringImpl::copyChars(data + strLength, charactersToAppend, lengthToAppend);
223 unsigned strLength = m_impl->length();
226 RELEASE_ASSERT(lengthToAppend <= numeric_limits<unsigned>::max() - strLength);
    [all...]
  /frameworks/base/core/jni/
android_hardware_camera2_CameraMetadata.cpp 486 size_t strLength = strlen(str);
491 if (section == NULL || sectionLength < strLength) {
494 sectionLength = strLength;
  /external/sfntly/cpp/src/test/tinyxml/
tinyxml.cpp 85 outString->append( entity[0].str, entity[0].strLength );
90 outString->append( entity[1].str, entity[1].strLength );
95 outString->append( entity[2].str, entity[2].strLength );
100 outString->append( entity[3].str, entity[3].strLength );
105 outString->append( entity[4].str, entity[4].strLength );
    [all...]
tinyxmlparser.cpp 517 if ( strncmp( entity[i].str, p, entity[i].strLength ) == 0 )
519 assert( strlen( entity[i].str ) == entity[i].strLength );
522 return ( p + entity[i].strLength );
    [all...]
tinyxml.h 403 unsigned int strLength;
    [all...]
  /external/tinyxml/
tinyxml.cpp 75 outString->append( entity[0].str, entity[0].strLength );
80 outString->append( entity[1].str, entity[1].strLength );
85 outString->append( entity[2].str, entity[2].strLength );
90 outString->append( entity[3].str, entity[3].strLength );
95 outString->append( entity[4].str, entity[4].strLength );
    [all...]
tinyxmlparser.cpp 498 if ( strncmp( entity[i].str, p, entity[i].strLength ) == 0 )
500 assert( strlen( entity[i].str ) == entity[i].strLength );
503 return ( p + entity[i].strLength );
    [all...]
tinyxml.h 362 unsigned int strLength;
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternUtils.java     [all...]
  /external/chromium_org/third_party/icu/source/common/
utext.cpp     [all...]
  /external/icu4c/common/
utext.cpp     [all...]
  /external/chromium_org/third_party/icu/source/test/cintltst/
cmsccoll.c     [all...]
creststn.c 657 int32_t strLength = 0;
662 str = tres_getString(resB,-1,"Sequence",&strLength,&status);
    [all...]
  /external/icu4c/test/cintltst/
cmsccoll.c     [all...]
creststn.c 657 int32_t strLength = 0;
662 str = tres_getString(resB,-1,"Sequence",&strLength,&status);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/editing/
TextIterator.cpp 497 int strLength = str.length();
499 int runEnd = min(strLength, end);
    [all...]
  /hardware/ti/wpan/tools/FM/service/src/java/com/ti/server/
StubFmService.java     [all...]

Completed in 2290 milliseconds

1 2