HomeSort by relevance Sort by last modified time
    Searched refs:chars (Results 251 - 275 of 912) sorted by null

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
UserString.py 104 def lstrip(self, chars=None): return self.__class__(self.data.lstrip(chars))
117 def rstrip(self, chars=None): return self.__class__(self.data.rstrip(chars))
125 def strip(self, chars=None): return self.__class__(self.data.strip(chars))
string.py 248 def strip(s, chars=None):
249 """strip(s [,chars]) -> string
253 If chars is given and not None, remove characters in chars instead.
254 If chars is unicode, S will be converted to unicode before stripping.
257 return s.strip(chars)
260 def lstrip(s, chars=None):
261 """lstrip(s [,chars]) -> string
264 If chars is given and not None, remove characters in chars instead
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
UserString.py 104 def lstrip(self, chars=None): return self.__class__(self.data.lstrip(chars))
117 def rstrip(self, chars=None): return self.__class__(self.data.rstrip(chars))
125 def strip(self, chars=None): return self.__class__(self.data.strip(chars))
string.py 248 def strip(s, chars=None):
249 """strip(s [,chars]) -> string
253 If chars is given and not None, remove characters in chars instead.
254 If chars is unicode, S will be converted to unicode before stripping.
257 return s.strip(chars)
260 def lstrip(s, chars=None):
261 """lstrip(s [,chars]) -> string
264 If chars is given and not None, remove characters in chars instead
    [all...]
  /art/runtime/jdwp/
jdwp_bits.h 62 static inline void AppendUtf16BE(std::vector<uint8_t>& bytes, const uint16_t* chars, size_t char_count) {
65 Append2BE(bytes, chars[i]);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemExtensionDecl.java 225 char[] chars = tl.getChars(); local
226 scriptSrc = new String(chars);
309 char[] chars = tl.getChars();
311 scriptSrc = new String(chars);
  /external/chromium_org/chrome/browser/resources/extensions/
extension_commands_overlay.css 74 .contains-chars {
  /external/chromium_org/chrome/browser/ui/views/autofill/
expanding_textfield.cc 86 void ExpandingTextfield::SetDefaultWidthInCharacters(int chars) {
87 ForEachTextfield(&DecoratedTextfield::set_default_width_in_chars, chars);
  /external/chromium_org/third_party/icu/source/i18n/unicode/
uspoof.h 194 * single script (plus chars from the common and inherited scripts.)
442 * @param chars A Unicode Set containing the list of
451 uspoof_setAllowedChars(USpoofChecker *sc, const USet *chars, UErrorCode *status);
489 * @param chars A Unicode Set containing the list of
498 uspoof_setAllowedUnicodeSet(USpoofChecker *sc, const UnicodeSet *chars, UErrorCode *status);
    [all...]
  /external/chromium_org/third_party/icu/source/io/
ustdio.c 305 u_file_write_flush(const UChar *chars,
313 const UChar *mySource = chars;
322 count = u_strlen(chars);
329 mySource = u_file_translit(f, chars, &count, flushTranslit);
385 /* return # of chars written */
390 u_file_write( const UChar *chars,
394 return u_file_write_flush(chars,count,f,FALSE,FALSE);
691 u_file_read( UChar *chars,
715 memcpy(chars + read, str->fPos, dataSize * sizeof(UChar));
  /external/chromium_org/third_party/skia/include/core/
SkTypeface.h 147 * @param chars pointer to the array of character codes
152 * @param glyphCount number of code points in 'chars' to process. If glyphs
156 * from the beginning of chars. This value is valid, even if the
159 int charsToGlyphs(const void* chars, Encoding encoding, uint16_t glyphs[],
307 virtual int onCharsToGlyphs(const void* chars, Encoding, uint16_t glyphs[],
  /external/chromium_org/third_party/skia/tests/
PathUtilsTest.cpp 17 static void fill_random_bits(int chars, char* bits){
20 for (int i = 0; i < chars; ++i){
  /external/chromium_org/v8/test/mjsunit/
escape.js 36 // Check the unescape chars are not escaped
40 // Check that null chars are escaped and do not terminate the string
51 // Check first 1000 chars individually for escaped/not escaped
61 // Check all chars up to 1000 in groups of 10 using unescape as a check
  /external/icu/icu4c/source/io/
ustdio.c 305 u_file_write_flush(const UChar *chars,
313 const UChar *mySource = chars;
322 count = u_strlen(chars);
329 mySource = u_file_translit(f, chars, &count, flushTranslit);
385 /* return # of chars written */
390 u_file_write( const UChar *chars,
394 return u_file_write_flush(chars,count,f,FALSE,FALSE);
691 u_file_read( UChar *chars,
715 memcpy(chars + read, str->fPos, dataSize * sizeof(UChar));
  /external/skia/include/core/
SkTypeface.h 147 * @param chars pointer to the array of character codes
152 * @param glyphCount number of code points in 'chars' to process. If glyphs
156 * from the beginning of chars. This value is valid, even if the
159 int charsToGlyphs(const void* chars, Encoding encoding, uint16_t glyphs[],
307 virtual int onCharsToGlyphs(const void* chars, Encoding, uint16_t glyphs[],
  /external/skia/tests/
PathUtilsTest.cpp 17 static void fill_random_bits(int chars, char* bits){
20 for (int i = 0; i < chars; ++i){
  /frameworks/base/core/java/android/text/
AndroidBidi.java 56 * @param chars the character array (used to determine whitespace)
57 * @param cstart the start of the line in the chars array
62 char[] chars, int cstart, int len) {
84 char ch = chars[cstart + visLen];
  /frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
WifiP2pServiceRequest.java 173 char[] chars = query.toCharArray(); local
174 for (char c: chars) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
OutputStreamWriterTest.java 111 char[] chars = source.toCharArray(); local
142 writer.write(chars, -1, 1);
148 writer.write(chars, 0, -1);
154 writer.write(chars, 1, chars.length);
159 writer.write(chars, 1, 2);
162 writer.write(chars, 0, chars.length);
574 fail("Chars written after close");
627 assertTrue("Chars not flushed", new String(buf, 0, buf.length
    [all...]
  /libcore/luni/src/main/java/java/lang/
StringBuilder.java 243 * @param chars
248 public StringBuilder append(char[] chars) {
249 append0(chars);
  /libcore/luni/src/main/native/
libcore_icu_NativeDecimalFormat.cpp 181 UniquePtr<UChar[]> chars; local
183 uint32_t desiredCount = unum_getTextAttribute(fmt, attr, chars.get(), charCount, &status);
188 chars.reset(new UChar[charCount]);
189 charCount = unum_getTextAttribute(fmt, attr, chars.get(), charCount, &status);
191 return maybeThrowIcuException(env, "unum_getTextAttribute", status) ? NULL : env->NewString(chars.get(), charCount);
280 ScopedUtfChars chars(env, value);
281 if (chars.c_str() == NULL) {
284 StringPiece sp(chars.c_str());
  /libcore/luni/src/test/java/libcore/java/nio/charset/
Charset_TestGenerator.java 101 static final char[] chars = OldCharset_AbstractTest.theseChars(codes); field in class:Charset_TestGenerator
256 genEncoded(Charset.forName("MacRoman"), CharBuffer.wrap(chars));
257 // genEncoded(Charset.forName(charsetNames[37]), CharBuffer.wrap(chars));
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
Percolator.py 23 def insert(self, index, chars, tags=None):
25 self.top.insert(index, chars, tags)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_ucn.py 28 chars = [
59 u"".join([self.checkletter(*args) for args in zip(chars, string)]),
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
pulldom.py 155 def ignorableWhitespace(self, chars):
156 node = self.document.createTextNode(chars)
160 def characters(self, chars):
161 node = self.document.createTextNode(chars)
315 def ignorableWhitespace(self, chars):
316 PullDOM.ignorableWhitespace(self, chars)
321 def characters(self, chars):
322 PullDOM.characters(self, chars)

Completed in 2182 milliseconds

<<11121314151617181920>>