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

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/org/apache/harmony/security/x509/
DNParser.java 50 /** distinguished name chars */
51 private final char[] chars; field in class:DNParser
63 chars = dn.toCharArray();
72 // skip preceding space chars, they can present after
74 for (; pos < chars.length && chars[pos] == ' '; pos++) {
76 if (pos == chars.length) {
83 // attribute type chars
85 for (; pos < chars.length && chars[pos] != '=' && chars[pos] != ' '; pos++)
    [all...]
  /frameworks/native/opengl/tools/glgen/stubs/gles11/
glGetString.cpp 3 const char* chars = (const char*) glGetString((GLenum) name); local
4 return _env->NewStringUTF(chars);
  /frameworks/native/opengl/tools/glgen/stubs/jsr239/
glGetString.cpp 3 const char* chars = (const char*) glGetString((GLenum) name); local
4 return _env->NewStringUTF(chars);
  /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
  /ndk/sources/host-tools/ndk-stack/regex/
cclass.h 41 const char *chars; member in struct:cclass
  /libcore/luni/src/main/java/javax/net/ssl/
DistinguishedNameParser.java 41 /** distinguished name chars */
42 private char[] chars; field in class:DistinguishedNameParser
54 // skip preceding space chars, they can present after
56 for (; pos < length && chars[pos] == ' '; pos++) {
65 // attribute type chars
67 for (; pos < length && chars[pos] != '=' && chars[pos] != ' '; pos++) {
78 // skip trailing space chars between attribute type and '='
80 if (chars[pos] == ' ') {
81 for (; pos < length && chars[pos] != '=' && chars[pos] == ' '; pos++)
    [all...]
  /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/valgrind/none/tests/
unit_debuglog.stderr.exp 2 |%f| printf = |0.000000| wrote 10 chars
3 |%f| debuglog = |0.000000| wrote 10 chars
4 |%2f| printf = |0.000000| wrote 10 chars
5 |%2f| debuglog = |0.000000| wrote 10 chars
6 |%9f| printf = | 0.000000| wrote 11 chars
7 |%9f| debuglog = | 0.000000| wrote 11 chars
8 |%8.0f| printf = | 0| wrote 10 chars
9 |%8.0f| debuglog = | 0| wrote 10 chars
10 |%8.1f| printf = | 0.0| wrote 10 chars
11 |%8.1f| debuglog = | 0.0| wrote 10 chars
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/java/
Charsets.java 52 public static byte[] toAsciiBytes(char[] chars, int offset, int length) {
54 cb.put(chars, offset, length);
62 public static byte[] toIsoLatin1Bytes(char[] chars, int offset, int length) {
64 cb.put(chars, offset, length);
72 public static byte[] toUtf8Bytes(char[] chars, int offset, int length) {
74 cb.put(chars, offset, length);
82 public static byte[] toBigEndianUtf16Bytes(char[] chars, int offset, int length) {
87 char ch = chars[i];
102 public static void asciiBytesToChars(byte[] bytes, int offset, int length, char[] chars) {
103 if (bytes == null || chars == null)
    [all...]
  /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/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/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);
  /libcore/benchmarks/src/benchmarks/regression/
CharacterBenchmark.java 33 private char[] chars; field in class:CharacterBenchmark
36 this.chars = characterSet.chars;
48 final char[] chars; field in class:CharacterBenchmark.CharacterSet
50 this.chars = new char[65536];
52 chars[i] = (char) (i % size);
80 Character.digit(chars[ch], 10);
86 Character.digit((int) chars[ch], 10);
96 Character.getNumericValue(chars[ch]);
102 Character.getNumericValue((int) chars[ch])
    [all...]
  /external/clang/test/SemaTemplate/
array-to-pointer-decay.cpp 31 } chars; typedef in typeref:struct:__anon7042
33 chars getChars();
  /frameworks/native/opengl/tools/glgen/stubs/egl/
eglQueryString.cpp 5 const char* chars = (const char*) eglQueryString( local
9 return _env->NewStringUTF(chars);
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/
StrSegment.java 54 * @param chars The array of characters
56 public StrSegment(char[] chars) {
57 this(new String(chars), -1, -1);
  /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/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...]
  /external/guava/guava/src/com/google/common/base/
Ascii.java 441 char[] chars = string.toCharArray(); local
443 char c = chars[i];
445 chars[i] = (char) (c ^ 0x20);
448 return String.valueOf(chars);
461 public static String toLowerCase(CharSequence chars) {
462 if (chars instanceof String) {
463 return toLowerCase((String) chars);
465 int length = chars.length();
468 builder.append(toLowerCase(chars.charAt(i)));
490 char[] chars = string.toCharArray() local
    [all...]
  /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/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
CharsTrieBuilder.java 79 return CharBuffer.wrap(chars, chars.length-charsLength, charsLength);
84 if(chars==null) {
85 chars=new char[1024];
98 chars=null;
138 if(length>chars.length) {
139 int newCapacity=chars.length;
144 System.arraycopy(chars, chars.length-charsLength,
146 chars=newChars
276 private char[] chars; field in class:CharsTrieBuilder
    [all...]
  /art/runtime/
utf.h 48 size_t CountUtf8Bytes(const uint16_t* chars, size_t char_count);
79 int32_t ComputeUtf16Hash(mirror::CharArray* chars, int32_t offset, size_t char_count)
81 int32_t ComputeUtf16Hash(const uint16_t* chars, size_t char_count);
84 // size_t and hashes individual chars instead of codepoint words.
85 size_t ComputeModifiedUtf8Hash(const char* chars);

Completed in 1027 milliseconds

1 2 3 4 5 6 7 8 91011>>