HomeSort by relevance Sort by last modified time
    Searched defs:strLength (Results 1 - 13 of 13) 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);
  /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/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");
  /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 94 const MemRegion *MR, SVal strLength);
562 SVal strLength) {
563 assert(!strLength.isUndef() && "Attempt to set an undefined string length");
594 if (strLength.isUnknown())
597 return state->set<CStringLength>(MR, strLength);
616 SVal strLength = svalBuilder.getMetadataSymbolVal(CStringChecker::getTag(),
620 state = state->set<CStringLength>(MR, strLength);
622 return strLength;
    [all...]
  /external/icu4c/common/
utext.cpp     [all...]
  /external/icu4c/test/cintltst/
creststn.c 657 int32_t strLength = 0;
662 str = tres_getString(resB,-1,"Sequence",&strLength,&status);
    [all...]
cmsccoll.c     [all...]
  /external/tinyxml/
tinyxml.h 362 unsigned int strLength;
    [all...]
  /external/webkit/Source/WebCore/editing/
TextIterator.cpp 474 int strLength = str.length();
476 int runEnd = min(strLength, end);
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/dialpad/
DialpadFragment.java 640 int strLength = strDigits.length();
641 waitMenuItem.setVisible(showWait(strLength, strLength, strDigits));
    [all...]
  /prebuilt/common/ant/
ant.jar 

Completed in 1541 milliseconds