Searched defs:nchars (Results 1 - 6 of 6) sorted by relevance

/external/webkit/Source/WebCore/svg/
H A DSVGTextContentElement.cpp84 float SVGTextContentElement::getSubStringLength(unsigned charnum, unsigned nchars, ExceptionCode& ec) const argument
94 return SVGTextQuery(renderer()).subStringLength(charnum, nchars);
151 void SVGTextContentElement::selectSubString(unsigned charnum, unsigned nchars, ExceptionCode& ec) const argument
159 if (nchars > numberOfChars - charnum)
160 nchars = numberOfChars - charnum;
176 for (unsigned i = 0; i < nchars; ++i)
/external/speex/libspeex/
H A Dbits.c112 int nchars = len / BYTES_PER_CHAR; local
113 if (nchars > bits->buf_size)
118 char *tmp = (char*)speex_realloc(bits->chars, nchars);
121 bits->buf_size=nchars;
124 nchars=bits->buf_size;
129 nchars=bits->buf_size;
138 for (i=0;i<nchars;i++)
141 bits->nbBits=nchars<<LOG2_BITS_PER_CHAR;
149 int nchars = ((bits->nbBits+BITS_PER_CHAR-1)>>LOG2_BITS_PER_CHAR); local
151 SPEEX_MOVE(bits->chars, &bits->chars[bits->charPtr], nchars
159 int nchars = nbytes/BYTES_PER_CHAR; local
[all...]
/external/nist-sip/java/gov/nist/core/
H A DLexerCore.java652 public String charAsString(int nchars) { argument
653 return buffer.substring(ptr, ptr + nchars);
/external/mksh/src/
H A Dedit.c2181 x_push(int nchars) argument
2185 strndupx(cp, xcp, nchars, AEDIT);
/external/v8/src/
H A Dapi.cc3875 int nchars = 0; local
3881 nchars++;
3901 nchars++;
3911 nchars++;
3920 if (nchars_ref != NULL) *nchars_ref = nchars;
/external/v8/test/cctest/
H A Dtest-api.cc5808 int nchars; local
5810 string->WriteUtf8(buffer, j, &nchars, String::NO_OPTIONS);
5812 string->WriteUtf8(buffer2, j, &nchars, String::NO_NULL_TERMINATION);
5818 CHECK(nchars * 3 >= utf8_written - 1);
5819 CHECK(nchars <= utf8_written);
5834 if (nchars >= 2) {
5835 uint16_t trail = StringGet(string, nchars - 1);
5836 uint16_t lead = StringGet(string, nchars - 2);
11947 int nchars = -1; local
11948 CHECK_EQ(129, cons->WriteUtf8(utf_buffer, -1, &nchars));
[all...]

Completed in 188 milliseconds