HomeSort by relevance Sort by last modified time
    Searched full:chars (Results 176 - 200 of 3426) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/guava/guava/src/com/google/common/hash/
AbstractCompositeHashFunction.java 125 @Override public Hasher putUnencodedChars(CharSequence chars) {
127 hasher.putUnencodedChars(chars);
132 @Override public Hasher putString(CharSequence chars, Charset charset) {
134 hasher.putString(chars, charset);
  /external/icu/icu4c/source/layout/
KhmerReordering.cpp 336 le_int32 KhmerReordering::findSyllable(const KhmerClassTable *classTable, const LEUnicode *chars, le_int32 prev, le_int32 charCount)
342 KhmerClassTable::CharClass charClass = (classTable->getCharClass(chars[cursor]) & KhmerClassTable::CF_CLASS_MASK);
359 le_int32 KhmerReordering::reorder(const LEUnicode *chars, le_int32 charCount, le_int32 /*scriptCode*/,
372 le_int32 syllable = findSyllable(classTable, chars, prev, charCount);
381 charClass = classTable->getCharClass(chars[i]);
392 output.writeChar(chars[i], i, tagPref);
401 ( (classTable->getCharClass(chars[i + 1]) & KhmerClassTable::CF_CLASS_MASK) == KhmerClassTable::CC_CONSONANT2) )
417 if (classTable->getCharClass(chars[prev]) & KhmerClassTable::CF_DOTTED_CIRCLE) {
423 charClass = classTable->getCharClass(chars[i]);
438 output.writeChar(chars[i], i, tagAbvf)
    [all...]
ThaiLayoutEngine.h 99 * @param chars - the input character context
115 virtual le_int32 computeGlyphs(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool rightToLeft,
128 * @param chars - the input character context
138 virtual void adjustGlyphPositions(const LEUnicode chars[], le_int32 offset, le_int32 count, le_bool reverse, LEGlyphStorage &glyphStorage, LEErrorCode &success);
HanLayoutEngine.cpp 54 le_int32 HanOpenTypeLayoutEngine::characterProcessing(const LEUnicode chars[], le_int32 offset, le_int32 count, le_int32 max, le_bool /*rightToLeft*/,
61 if (chars == NULL || offset < 0 || count < 0 || max < 0 || offset >= max || offset + count > max) {
  /external/kernel-headers/original/uapi/linux/cifs/
cifs_mount.h 22 #define CIFS_MAX_PASSWORD_LEN 512 /* Windows max seems to be 256 wide chars */
  /external/pdfium/testing/resources/pixel/
bug_543018_2.in 38 % Three white spaces and other chars follow the keyword "stream"
  /external/skia/src/fonts/
SkGScalerContext.h 32 int onCharsToGlyphs(const void* chars, Encoding encoding,
  /external/skia/src/utils/
SkBase64.h 25 Base64 encodes src into dst. encode is a pointer to at least 65 chars.
  /external/vogar/src/vogar/monitor/
InterleavedReader.java 124 * Returns the index of marker in {@code chars}, stopping at {@code limit}.
125 * Should the chars end with a prefix of marker, the offset of that prefix
128 int findPossibleMarker(char[] chars, int limit) {
132 if (chars[i + m] != marker.charAt(m)) {
  /prebuilts/misc/common/swig/include/2.0.11/gcj/
cni.i 15 extern jstring JvNewString (const jchar *chars, jsize len);
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
elf_arch_mips1.d 8 # flags are _not_ 8 chars long.
  /external/icu/icu4c/source/common/
ustrenum.cpp 26 : chars(charsBuffer), charsCapacity(sizeof(charsBuffer)) {
30 if (chars != NULL && chars != charsBuffer) {
31 uprv_free(chars);
51 unistr.extract(0, INT32_MAX, chars, charsCapacity, US_INV);
52 return chars;
87 if(chars!=charsBuffer) {
88 uprv_free(chars);
90 chars=(char *)uprv_malloc(capacity);
91 if(chars==NULL)
    [all...]
  /external/llvm/include/llvm/ADT/
SmallString.h 181 /// Find the first character in the string that is in \p Chars, or npos if
184 /// Complexity: O(size() + Chars.size())
185 size_t find_first_of(StringRef Chars, size_t From = 0) const {
186 return str().find_first_of(Chars, From);
196 /// \p Chars, or npos if not found.
198 /// Complexity: O(size() + Chars.size())
199 size_t find_first_not_of(StringRef Chars, size_t From = 0) const {
200 return str().find_first_not_of(Chars, From);
212 /// Complexity: O(size() + Chars.size())
214 StringRef Chars, size_t From = StringRef::npos) const
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/input/
NullReader.java 52 * protected void processChars(char[] chars, int offset, int length) {
54 * chars[i] = ... // set array value here
178 * @param chars The character array to read into
186 public int read(char[] chars) throws IOException {
187 return read(chars, 0, chars.length);
193 * @param chars The character array to read into.
203 public int read(char[] chars, int offset, int length) throws IOException {
216 processChars(chars, offset, returnLength);
289 * @param chars The character arra
    [all...]
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestCharacterListGenerator.java 20 import com.google.common.collect.testing.SampleElements.Chars;
35 return new Chars();
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BytesDictionaryMatcher.java 20 public BytesDictionaryMatcher(byte[] chars, int transform) {
21 characters = chars;
  /external/mksh/src/
strlcpy.c 37 /* copy as many chars as will fit */
43 /* safe to NUL-terminate dst since we copied <= siz-1 chars */
  /external/skia/tools/flags/
SkCommonFlagsConfig.h 27 // where 'backend' consists of chars excluding hyphen or "angle-gl"
28 // and each 'via' consists of chars excluding hyphen.
  /external/vogar/test/vogar/
ScriptBuilderEscapingTest.java 31 char[] chars = " '\"<>&|$".toCharArray(); local
32 for (char c : chars) {
  /external/zlib/src/contrib/iostream3/
test.cc 28 std::cout << buf << "\t(" << inf.rdbuf()->in_avail() << " chars left in buffer)\n";
44 std::cout << buf << "\t(" << inf.rdbuf()->in_avail() << " chars left in buffer)\n";
  /frameworks/base/tools/layoutlib/bridge/src/android/text/
AndroidBidi_Delegate.java 35 /*package*/ static int runBidi(int dir, char[] chars, byte[] charInfo, int count,
56 Bidi bidi = new Bidi(chars, 0, null, 0, count, dir);
  /libcore/luni/src/main/java/libcore/internal/
StringPool.java 28 private static boolean contentEquals(String s, char[] chars, int start, int length) {
33 if (chars[start + i] != s.charAt(i)) {
  /libcore/luni/src/test/java/libcore/java/lang/
StringBufferTest.java 31 assertTrue(Arrays.equals(expected, s.chars().toArray()));
36 assertTrue(Arrays.equals(new int[]{high, low, low}, surrogateCP.chars().toArray()));
  /libcore/ojluni/src/main/native/
jni_util_md.c 37 void nativeReleaseStringPlatformChars(JNIEnv* env, jstring jstr, const char* chars) {
38 (*env)->ReleaseStringUTFChars(env, jstr, chars);
  /ndk/sources/android/support/src/stdio/
stdio_impl.h 25 // Initialize FakeFILE wrapper |file| to use a |buffer| of |buffer_size| chars.
30 // |buffer_size| wide-chars.

Completed in 4079 milliseconds

1 2 3 4 5 6 78 91011>>