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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/upstream-netbsd/lib/libc/regex/
cclass.h 77 const char *chars; member in struct:cclass
  /external/llvm/lib/Support/
regcclass.h 46 const char *chars; member in struct:cclass
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/tls/
DistinguishedNameParser.java 37 private char[] chars; field in class:DistinguishedNameParser
49 // skip preceding space chars, they can present after
51 for (; pos < length && chars[pos] == ' '; pos++) {
60 // attribute type chars
62 for (; pos < length && chars[pos] != '=' && chars[pos] != ' '; pos++) {
73 // skip trailing space chars between attribute type and '='
75 if (chars[pos] == ' ') {
76 for (; pos < length && chars[pos] != '=' && chars[pos] == ' '; pos++)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
WriterChain.java 34 * write(char[] chars)
35 * write(char[] chars, int start, int count)
36 * write(String chars)
37 * write(String chars, int start, int count)
56 public void write(char[] chars) throws IOException;
58 public void write(char[] chars, int start, int count) throws IOException;
60 public void write(String chars) throws IOException;
62 public void write(String chars, int start, int count) throws IOException;
  /external/chromium_org/ui/gfx/
text_utils.cc 18 base::i18n::UTF16CharIterator chars(&s);
22 while (!chars.end()) {
23 int32 c = chars.get();
24 int array_pos = chars.array_pos();
25 chars.Advance();
28 int span = chars.array_pos() - array_pos;
  /external/chromium_org/v8/tools/
shell-utils.h 52 byte* chars = new byte[*size + 1]; local
54 int read = static_cast<int>(fread(&chars[i], 1, file_size - i, file));
60 chars[i] = chars[i - file_size];
62 chars[*size] = 0;
64 return chars;
  /external/emma/core/java12/com/vladium/util/
WCMatcher.java 25 final char [] chars = pattern.toCharArray (); // is this faster than using charAt()? local
26 final int charsLength = chars.length;
37 final char ch = chars [c];
44 chars [patternLength ++] = '*';
51 chars [patternLength ++] = ch;
61 else if (chars [0] == '*')
62 return new EndsWithMatcher (chars, patternLength);
63 else if (chars [patternLength - 1] == '*')
64 return new StartsWithMatcher (chars, patternLength);
67 return new PatternMatcher (chars, patternLength)
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/header/
Indentation.java 97 char[] chars = new char[indentation]; local
98 java.util.Arrays.fill(chars, ' ');
99 return new String(chars);
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
CharCache.java 32 char[] chars = str.toCharArray(); local
34 int toWrite = chars.length < available ? chars.length : available;
35 System.arraycopy(chars, 0, cache, pos, toWrite);
  /external/chromium_org/third_party/WebKit/Source/platform/text/
TextBoundaries.cpp 62 int findNextWordFromIndex(const UChar* chars, int len, int position, bool forward)
64 TextBreakIterator* it = wordBreakIterator(chars, len);
71 if (position < len && isAlphanumeric(chars[position - 1]))
83 if (position > 0 && isAlphanumeric(chars[position]))
93 void findWordBoundary(const UChar* chars, int len, int position, int* start, int* end)
95 TextBreakIterator* it = wordBreakIterator(chars, len);
102 int findWordEndBoundary(const UChar* chars, int len, int position)
104 TextBreakIterator* it = wordBreakIterator(chars, len);
  /external/clang/test/SemaTemplate/
array-to-pointer-decay.cpp 31 } chars; typedef in typeref:struct:__anon24059
33 chars getChars();
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3string.c 55 static pANTLR3_UINT8 set8 (pANTLR3_STRING string, const char * chars);
56 static pANTLR3_UINT8 setUTF16_8 (pANTLR3_STRING string, const char * chars);
57 static pANTLR3_UINT8 setUTF16_UTF16 (pANTLR3_STRING string, const char * chars);
65 static pANTLR3_UINT8 setS (pANTLR3_STRING string, pANTLR3_STRING chars);
243 if (string->chars)
245 ANTLR3_FREE(string->chars);
264 string->chars = NULL;
301 string->chars = NULL;
339 string->chars = NULL;
351 return string->factory->newPtr(string->factory, (pANTLR3_UINT8)(string->chars), string->len)
    [all...]
  /external/chromium_org/third_party/speex/libspeex/
bits.c 50 bits->chars = (char*)speex_alloc(MAX_CHARS_PER_FRAME);
51 if (!bits->chars)
63 bits->chars = (char*)buff;
73 bits->chars = (char*)buff;
88 speex_free(bits->chars);
95 bits->chars[0]=0;
109 EXPORT void speex_bits_read_from(SpeexBits *bits, char *chars, int len)
118 char *tmp = (char*)speex_realloc(bits->chars, nchars);
122 bits->chars=tmp;
139 bits->chars[i]=HTOLS(chars[i])
309 char *chars; local
    [all...]
  /art/runtime/
utf.cc 71 int32_t ComputeUtf16Hash(mirror::CharArray* chars, int32_t offset,
75 hash = hash * 31 + chars->Get(offset + i);
80 int32_t ComputeUtf16Hash(const uint16_t* chars, size_t char_count) {
83 hash = hash * 31 + *chars++;
88 size_t ComputeModifiedUtf8Hash(const char* chars) {
90 while (*chars != '\0') {
91 hash = hash * 31 + *chars++;
113 size_t CountUtf8Bytes(const uint16_t* chars, size_t char_count) {
116 uint16_t ch = *chars++;
utf.h 48 size_t CountUtf8Bytes(const uint16_t* chars, size_t char_count);
78 int32_t ComputeUtf16Hash(mirror::CharArray* chars, int32_t offset, size_t char_count)
80 int32_t ComputeUtf16Hash(const uint16_t* chars, size_t char_count);
83 // size_t and hashes individual chars instead of codepoint words.
84 size_t ComputeModifiedUtf8Hash(const char* chars);
  /external/chromium_org/third_party/icu/source/extra/scrptrun/
scrptrun.h 38 ScriptRun(const UChar chars[], int32_t length);
40 ScriptRun(const UChar chars[], int32_t start, int32_t length);
46 void reset(const UChar chars[], int32_t start, int32_t length);
105 inline ScriptRun::ScriptRun(const UChar chars[], int32_t length)
107 reset(chars, 0, length);
110 inline ScriptRun::ScriptRun(const UChar chars[], int32_t start, int32_t length)
112 reset(chars, start, length);
146 inline void ScriptRun::reset(const UChar chars[], int32_t start, int32_t length)
148 charArray = chars;
  /external/icu/icu4c/source/extra/scrptrun/
scrptrun.h 38 ScriptRun(const UChar chars[], int32_t length);
40 ScriptRun(const UChar chars[], int32_t start, int32_t length);
46 void reset(const UChar chars[], int32_t start, int32_t length);
105 inline ScriptRun::ScriptRun(const UChar chars[], int32_t length)
107 reset(chars, 0, length);
110 inline ScriptRun::ScriptRun(const UChar chars[], int32_t start, int32_t length)
112 reset(chars, start, length);
146 inline void ScriptRun::reset(const UChar chars[], int32_t start, int32_t length)
148 charArray = chars;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/
PixelConverter.java 48 public int convertHeightInCharsToPixels(int chars) {
49 return Dialog.convertHeightInCharsToPixels(fFontMetrics, chars);
69 public int convertWidthInCharsToPixels(int chars) {
70 return Dialog.convertWidthInCharsToPixels(fFontMetrics, chars);
  /external/chromium_org/base/android/
jni_string.cc 35 const jchar* chars = env->GetStringChars(str, NULL); local
36 DCHECK(chars);
37 UTF16ToUTF8(chars, env->GetStringLength(str), result);
38 env->ReleaseStringChars(str, chars);
72 const jchar* chars = env->GetStringChars(str, NULL); local
73 DCHECK(chars);
76 result->assign(chars, env->GetStringLength(str));
77 env->ReleaseStringChars(str, chars);
  /external/owasp/sanitizer/src/main/org/owasp/html/
Strings.java 115 char[] chars = s.toCharArray(); local
116 chars[i] = LCASE_CHARS[c];
118 c = chars[i];
120 chars[i] = LCASE_CHARS[c];
123 return String.valueOf(chars);
133 char[] chars = s.toCharArray(); local
134 chars[i] = UCASE_CHARS[c];
136 c = chars[i];
138 chars[i] = UCASE_CHARS[c];
141 return String.valueOf(chars);
    [all...]
  /external/icu/icu4c/source/layout/
GXLayoutEngine.cpp 32 le_int32 GXLayoutEngine::computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success)
38 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
43 mapCharsToGlyphs(chars, offset, count, FALSE, rightToLeft, glyphStorage, success);
55 void GXLayoutEngine::adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool /*reverse*/,
62 if (chars == NULL || offset < 0 || count < 0) {
GXLayoutEngine2.cpp 29 le_int32 GXLayoutEngine2::computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft, LEGlyphStorage &glyphStorage, LEErrorCode &success)
35 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
40 mapCharsToGlyphs(chars, offset, count, rightToLeft, rightToLeft, glyphStorage, success);
51 void GXLayoutEngine2::adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool /*reverse*/,
58 if (chars == NULL || offset < 0 || count < 0) {
  /external/chromium_org/mojo/public/cpp/bindings/
string.h 22 String(const char* chars) : is_null_(!chars) {
23 if (chars)
24 value_ = chars;
26 String(const char* chars, size_t num_chars)
27 : value_(chars, num_chars),
31 String(const char chars[N]) : value_(chars, N-1), is_null_(false) {}
48 String& operator=(const char* chars) {
49 is_null_ = !chars;
    [all...]
  /external/chromium_org/ui/base/l10n/
l10n_font_util.cc 17 double chars = 0; local
18 base::StringToDouble(l10n_util::GetStringUTF8(col_resource_id), &chars); local
19 int width = font.GetExpectedTextWidth(static_cast<int>(chars));
  /art/test/407-arrays/src/
Main.java 32 static void $opt$testReads(boolean[] bools, byte[] bytes, char[] chars, short[] shorts,
40 assertEquals(0, chars[0]);
41 assertEquals(0, chars[index]);
56 static void $opt$testWrites(boolean[] bools, byte[] bytes, char[] chars, short[] shorts,
68 chars[0] = 'c';
69 assertEquals('c', chars[0]);
70 chars[index] = 'd';
71 assertEquals('d', chars[index]);

Completed in 1529 milliseconds

1 2 3 4 5 6 7 8 91011>>