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

1 2 3 4

  /external/pdfium/fpdfsdk/
cpdfsdk_datetime.cpp 133 int strLength = dtStr.GetLength();
134 if (strLength <= 0)
138 while (i < strLength && !std::isdigit(dtStr[i]))
141 if (i >= strLength)
147 while (i < strLength && j < 4) {
156 if (i >= strLength || j < 4)
161 while (i < strLength && j < 2) {
170 if (i >= strLength || j < 2)
175 while (i < strLength && j < 2) {
184 if (i >= strLength || j < 2
    [all...]
  /frameworks/base/libs/hwui/
PathParser.h 43 const char* pathStr, size_t strLength);
45 const char* pathStr, size_t strLength);
VectorDrawable.h 169 Path(const char* path, size_t strLength);
360 FullPath(const char* path, size_t strLength) : Path(path, strLength) {}
401 ClipPath(const char* path, size_t strLength) : Path(path, strLength) {}
VectorDrawable.cpp 42 Path::Path(const char* pathStr, size_t strLength) {
45 PathParser::getPathDataFromAsciiString(&data, &result, pathStr, 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/rs/java/android/renderscript/
Program.java 250 int strLength;
255 strLength = 0;
257 int bytesLeft = str.length - strLength;
262 bytesLeft = str.length - strLength;
264 int bytesRead = is.read(str, strLength, bytesLeft);
268 strLength += bytesRead;
278 mShader = new String(str, 0, strLength, "UTF-8");
  /frameworks/base/core/jni/
android_util_PathParser.cpp 32 jint strLength) {
37 PathParser::parseAsciiStringForSkPath(skPath, &result, pathString, strLength);
55 static long createPathDataFromStringPath(JNIEnv* env, jobject, jstring inputStr, jint strLength) {
59 PathParser::getPathDataFromAsciiString(pathData, &result, pathString, strLength);
  /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/icu/android_icu4j/src/main/java/android/icu/text/
UTF16.java 1141 int strlength = str.length(); local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
UTF16.java 1192 int strlength = str.length(); local
    [all...]
  /prebuilts/tools/common/m2/repository/com/android/tools/external/ant-glob/1.0/
ant-glob-1.0.jar 
  /cts/tests/inputmethod/src/android/view/inputmethod/cts/
BaseInputConnectionTest.java 152 int strLength = str.length();
153 assertEquals(strLength, text2.length());
158 CharSequence expected = str.subSequence(strLength - offLength, strLength);
183 assertEquals(strLength - 1, text3.length());
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 132 SVal strLength);
634 SVal strLength) {
635 assert(!strLength.isUndef() && "Attempt to set an undefined string length");
666 if (strLength.isUnknown())
669 return state->set<CStringLength>(MR, strLength);
687 SVal strLength = svalBuilder.getMetadataSymbolVal(CStringChecker::getTag(),
692 if (Optional<NonLoc> strLn = strLength.getAs<NonLoc>()) {
704 state = state->set<CStringLength>(MR, strLength);
707 return strLength;
    [all...]
  /hardware/interfaces/camera/common/1.0/default/
CameraMetadata.cpp 496 size_t strLength = strlen(str);
501 if (section == NULL || sectionLength < strLength) {
504 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/swiftshader/third_party/PowerVR_SDK/Shell/API/KEGL/
PVRShellAPI.cpp 340 const size_t strLength = strlen("GL_EXT_discard_framebuffer");
346 while (position!=NULL && position[strLength]!='\0' && position[strLength]!=' ')
348 position = strstr(position+strLength,"GL_EXT_discard_framebuffer");
  /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/av/camera/
CameraMetadata.cpp 728 size_t strLength = strlen(str);
733 if (section == NULL || sectionLength < strLength) {
736 sectionLength = strLength;
  /external/icu/icu4c/source/common/
utext.cpp     [all...]
  /external/icu/icu4c/source/test/cintltst/
cmsccoll.c     [all...]
  /packages/services/BuiltInPrintService/jni/plugins/genPCLm/src/
genPCLm.cpp 618 int strLength;
620 strLength = strlen(str);
637 sprintf(pOutStr, "/Length %d\n", strLength);
    [all...]

Completed in 1120 milliseconds

1 2 3 4