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

1 2 3 4 5 6 7 8 91011>>

  /external/jline/src/src/test/java/jline/
ConsoleReaderTest.java 47 char[] characters = new char[] { 'S', 's', local
52 assertWindowsKeyBehavior("S", characters);
60 char[] characters = new char[] { 'S', 's', local
65 assertWindowsKeyBehavior("S", characters);
73 char[] characters = new char[] { 'S', 's', local
76 assertWindowsKeyBehavior("xSs", characters);
85 char[] characters = new char[] { 'S', 's', local
90 assertWindowsKeyBehavior("xSsj", characters);
98 char[] characters = new char[] { WindowsTerminal.SPECIAL_KEY_INDICATOR, local
100 assertWindowsKeyBehavior("dir", characters);
108 char[] characters = new char[] { WindowsTerminal.SPECIAL_KEY_INDICATOR, local
118 char[] characters = new char[] { 's', 's', 's', local
129 char[] characters = new char[] { 'o', 'p', 's', local
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HeaderParser.java 22 * contains a character from {@code characters}. Returns the input length if
23 * none of the requested characters can be found.
25 public static int skipUntil(String input, int pos, String characters) {
27 if (characters.indexOf(input.charAt(pos)) != -1) {
36 * space. Result is undefined if input contains newline characters.
  /external/sfntly/cpp/src/sample/subtly/
character_predicate.cc 36 AcceptSet::AcceptSet(IntegerSet* characters)
37 : characters_(characters) {
character_predicate.h 31 // All characters except for those between [start, end] are rejected
44 // All characters in IntegerSet
50 explicit AcceptSet(sfntly::IntegerSet* characters);
58 // All characters
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
PtNodeInfo.java 35 final int[] characters, final ProbabilityInfo probabilityInfo,
41 mCharacters = characters;
  /external/clang/test/Lexer/
unicode.c 6 // This file contains Unicode characters; please do not "fix" them!
26 CHECK: The preprocessor should not complain about Unicode characters like ©.
  /external/curl/docs/examples/
xmlstream.c 51 struct MemoryStruct characters; member in struct:ParserStruct
62 free(state->characters.memory);
63 state->characters.memory = NULL;
64 state->characters.size = 0;
70 struct MemoryStruct *mem = &state->characters;
90 printf("%5lu %10lu %s\n", state->depth, state->characters.size, name);
137 printf("Depth Characters Closing Tag\n");
159 free(state.characters.memory);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/json/tests/
test_fail.py 54 u'["A\u001FZ control characters in string"]',
  /external/icu/icu4c/source/common/
dictionarydata.h 106 UCharsDictionaryMatcher(const UChar *c, UDataMemory *f) : characters(c), file(f) { }
113 const UChar *characters; member in class:UCharsDictionaryMatcher
124 : characters(c), transformConstant(t), file(f) { }
133 const char *characters; member in class:BytesDictionaryMatcher
  /libcore/luni/src/main/java/org/xml/sax/
DocumentHandler.java 160 * chunks; however, all of the characters in any single event
171 * @param ch The characters from the XML document.
173 * @param length The number of characters to read from the array.
179 public abstract void characters (char ch[], int start, int length) method in interface:DocumentHandler
193 * the characters in any single event must come from the same
200 * @param ch The characters from the XML document.
202 * @param length The number of characters to read from the array.
205 * @see #characters
ContentHandler.java 236 * <p>Like {@link #characters characters()}, attribute values may have
237 * characters that need more than one <code>char</code> value. </p>
294 * chunks; however, all of the characters in any single event
301 * <p>Individual characters may consist of more than one Java
303 * happens, because characters can't be represented in just sixteen bits.
304 * In one case, characters are represented in a <em>Surrogate Pair</em>,
305 * using two special Unicode values. Such characters are in the so-called
307 * composite characters, such as a base character combining with one or
308 * more accent characters. </p
331 public void characters (char ch[], int start, int length) method in interface:ContentHandler
    [all...]
  /prebuilts/go/darwin-x86/misc/swig/stdio/
file_test.go 9 // Open this file itself and verify that the first few characters are
17 t.Error("read unexpected characters")
  /prebuilts/go/linux-x86/misc/swig/stdio/
file_test.go 9 // Open this file itself and verify that the first few characters are
17 t.Error("read unexpected characters")
  /external/icu/android_icu4j/src/main/java/android/icu/text/
BytesDictionaryMatcher.java 19 private final byte[] characters; field in class:BytesDictionaryMatcher
23 characters = chars;
48 BytesTrie bt = new BytesTrie(characters, 0);
CharsDictionaryMatcher.java 18 private CharSequence characters; field in class:CharsDictionaryMatcher
21 characters = chars;
27 CharsTrie uct = new CharsTrie(characters, 0);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CharsDictionaryMatcher.java 17 private CharSequence characters; field in class:CharsDictionaryMatcher
20 characters = chars;
26 CharsTrie uct = new CharsTrie(characters, 0);
BytesDictionaryMatcher.java 18 private final byte[] characters; field in class:BytesDictionaryMatcher
22 characters = chars;
47 BytesTrie bt = new BytesTrie(characters, 0);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ToSAXHandler.java 114 * @param characters The string of characters to process.
118 * @see ExtendedContentHandler#characters(String)
120 public void characters(String characters) throws SAXException method in class:ToSAXHandler
122 final int len = characters.length();
127 characters.getChars(0,len, m_charsBuff, 0);
128 characters(m_charsBuff, 0, len); method
347 public void characters(org.w3c.dom.Node node) method in class:ToSAXHandler
360 this.characters(data)
    [all...]
ToTextSAXHandler.java 349 * @see ExtendedContentHandler#characters(String)
351 public void characters(String characters) method in class:ToTextSAXHandler
354 final int length = characters.length();
359 characters.getChars(0, length, m_charsBuff, 0);
361 m_saxHandler.characters(m_charsBuff, 0, length);
365 * @see org.xml.sax.ContentHandler#characters(char[], int, int)
367 public void characters(char[] characters, int offset, int length) method in class:ToTextSAXHandler
371 m_saxHandler.characters(characters, offset, length)
    [all...]
  /external/v8/src/inspector/
string-16.cc 30 int charactersToInteger(const UChar* characters, size_t length,
35 if (!isASCII(characters[i])) {
39 buffer.push_back(static_cast<char>(characters[i]));
442 void String16Builder::append(const UChar* characters, size_t length) {
443 m_buffer.insert(m_buffer.end(), characters, characters + length);
446 void String16Builder::append(const char* characters, size_t length) {
447 m_buffer.insert(m_buffer.end(), characters, characters + length);
500 // Allocate a buffer big enough to hold all the characters
513 const UChar* characters = m_impl.data(); local
    [all...]
string-16.h 28 String16(const UChar* characters, size_t size) : m_impl(characters, size) {}
29 String16(const UChar* characters) // NOLINT(runtime/explicit)
30 : m_impl(characters) {}
31 String16(const char* characters) // NOLINT(runtime/explicit)
32 : String16(characters, std::strlen(characters)) {}
33 String16(const char* characters, size_t size) {
35 for (size_t i = 0; i < size; ++i) m_impl[i] = characters[i];
  /external/chromium-libpac/test/js-unittest/
international_domain_names.js 1 // Try resolving hostnames containing non-ASCII characters.
  /external/flatbuffers/tests/union_vector/
union_vector_generated.h 189 const flatbuffers::Vector<flatbuffers::Offset<void>> *characters() const { function in struct:FLATBUFFERS_FINAL_CLASS
197 verifier.Verify(characters()) &&
198 VerifyCharacterVector(verifier, characters(), characters_type()) &&
209 void add_characters(flatbuffers::Offset<flatbuffers::Vector<flatbuffers::Offset<void>>> characters) {
210 fbb_.AddOffset(Movie::VT_CHARACTERS, characters);
227 flatbuffers::Offset<flatbuffers::Vector<flatbuffers::Offset<void>>> characters = 0) {
229 builder_.add_characters(characters);
237 const std::vector<flatbuffers::Offset<void>> *characters = nullptr) {
241 characters ? _fbb.CreateVector<flatbuffers::Offset<void>>(*characters) : 0)
    [all...]
  /external/libmojo/third_party/markupsafe/
_native.py 16 """Convert the characters &, <, >, ' and " in string s to HTML-safe
18 such characters in HTML. Marks return value as markup string.
_speedups.c 32 /* happing of characters to replace */
39 /* lengths of those characters when replaced - 1 */
188 "Convert the characters &, <, >, ', and \" in string s to HTML-safe\n"
190 "such characters in HTML. Marks return value as markup string."},

Completed in 786 milliseconds

1 2 3 4 5 6 7 8 91011>>