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

  /frameworks/base/media/libdrm/mobile1/src/parser/
parser_dm.c 71 int32_t contentLen, leftLen;
80 leftLen = bufferLen;
89 pEnd = drm_strnstr(pStart, (uint8_t *)DRM_NEW_LINE_CRLF, leftLen);
101 leftLen = pBufferEnd - pStart;
108 pEnd = drm_strnstr(pStart, (uint8_t *)DRM_NEW_LINE_CRLF, leftLen);
193 leftLen = pBufferEnd - pStart;
199 while (leftLen > 0) {
200 if (NULL == (pEnd = memchr(pEnd, '\r', leftLen))) {
205 leftLen = pBufferEnd - pEnd;
206 if (leftLen < boundaryLen)
    [all...]
  /dalvik/dexgen/src/com/android/dexgen/util/
TwoColumnOutput.java 173 int leftLen = leftBuf.indexOf("\n");
174 if (leftLen < 0) {
183 if (leftLen != 0) {
184 out.write(leftBuf.substring(0, leftLen));
188 writeSpaces(out, leftWidth - leftLen);
194 leftBuf.delete(0, leftLen + 1);
  /dalvik/dx/src/com/android/dx/util/
TwoColumnOutput.java 173 int leftLen = leftBuf.indexOf("\n");
174 if (leftLen < 0) {
183 if (leftLen != 0) {
184 out.write(leftBuf.substring(0, leftLen));
188 writeSpaces(out, leftWidth - leftLen);
194 leftBuf.delete(0, leftLen + 1);
  /external/dexmaker/src/dx/java/com/android/dx/util/
TwoColumnOutput.java 173 int leftLen = leftBuf.indexOf("\n");
174 if (leftLen < 0) {
183 if (leftLen != 0) {
184 out.write(leftBuf.substring(0, leftLen));
188 writeSpaces(out, leftWidth - leftLen);
194 leftBuf.delete(0, leftLen + 1);
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Util/
TwoColumnOutput.java 177 int leftLen = leftBuf.indexOf("\n");
178 if (leftLen < 0) {
187 if (leftLen != 0) {
188 out.write(leftBuf.substring(0, leftLen));
192 writeSpaces(out, leftWidth - leftLen);
198 leftBuf.delete(0, leftLen + 1);
  /frameworks/base/media/libdrm/mobile1/src/objmng/
drm_api.c 191 int32_t leftLen;
199 leftLen = len - (p - pBuf);
200 while (leftLen > 0) {
201 if (NULL == (p = memchr(p, '\r', leftLen)))
204 leftLen = len - (p - pBuf);
205 if (leftLen < boundaryLen)
212 leftLen--;
931 int32_t boundaryLen, leftLen, readBytes;
    [all...]
  /external/webkit/Source/WebCore/dom/
InputElement.cpp 401 unsigned leftLen = String(&formatCode).toInt();
402 allowedLength = leftLen + allowedLength - 2;
  /external/webkit/Source/WebCore/wml/
WMLInputElement.cpp 432 unsigned leftLen = String(&formatCode).toInt();
433 m_numOfCharsAllowedByMask = leftLen + m_numOfCharsAllowedByMask - 2;

Completed in 215 milliseconds