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

  /libcore/luni/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/webkit/Source/JavaScriptCore/wtf/url/src/
URLBuffer.h 103 void append(const CHAR* str, int strLength)
105 if (m_length + strLength > m_capacity) {
106 if (!grow(m_length + strLength - m_capacity))
109 for (int i = 0; i < strLength; i++)
111 m_length += strLength;
  /frameworks/base/graphics/java/android/renderscript/
Program.java 189 int strLength;
194 strLength = 0;
196 int bytesLeft = str.length - strLength;
201 bytesLeft = str.length - strLength;
203 int bytesRead = is.read(str, strLength, bytesLeft);
207 strLength += bytesRead;
217 mShader = new String(str, 0, strLength, "UTF-8");
  /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);
  /frameworks/base/media/libdrm/mobile1/src/objmng/
drm_file.c 47 convertFilename(const uint16_t *strData, int32_t strLength, char *buffer);
58 * @param strLength number of characters in name
63 convertFilename(const uint16_t *strData, int32_t strLength, char *buffer)
67 if (strLength >= (MAXPATHLEN-1))
69 Trace("convertFilename '%.*S' too long", strLength, strData);
73 for (idx = 0; idx < strLength; ++idx)
77 return strLength;
286 int32_t strLength = prefixLen - *iteration;
313 for (idx = 0; idx < strLength; ++idx)
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
BaseInputConnectionTest.java 239 int strLength = str.length();
240 assertEquals(strLength, text2.length());
245 CharSequence expected = str.subSequence(strLength - offLength, strLength);
277 assertEquals(strLength - 1, text3.length());
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 104 SVal strLength);
590 SVal strLength) {
591 assert(!strLength.isUndef() && "Attempt to set an undefined string length");
622 if (strLength.isUnknown())
625 return state->set<CStringLength>(MR, strLength);
644 SVal strLength = svalBuilder.getMetadataSymbolVal(CStringChecker::getTag(),
648 state = state->set<CStringLength>(MR, strLength);
650 return 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...]
  /external/icu4c/common/
utext.cpp     [all...]
  /packages/apps/Contacts/src/com/android/contacts/dialpad/
DialpadFragment.java 646 int strLength = strDigits.length();
647 waitMenuItem.setVisible(showWait(strLength, strLength, strDigits));
    [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/webkit/Source/WebCore/editing/
TextIterator.cpp 474 int strLength = str.length();
476 int runEnd = min(strLength, end);
    [all...]
  /prebuilt/common/ant/
ant.jar 

Completed in 289 milliseconds