Searched refs:characters (Results 1 - 25 of 257) sorted by relevance

1234567891011

/external/jline/src/src/test/java/jline/
H A DConsoleReaderTest.java47 char[] characters = new char[] { 'S', 's',
52 assertWindowsKeyBehavior("S", characters);
60 char[] characters = new char[] { 'S', 's',
65 assertWindowsKeyBehavior("S", characters);
73 char[] characters = new char[] { 'S', 's',
76 assertWindowsKeyBehavior("xSs", characters);
85 char[] characters = new char[] { 'S', 's',
90 assertWindowsKeyBehavior("xSsj", characters);
98 char[] characters = new char[] { WindowsTerminal.SPECIAL_KEY_INDICATOR,
100 assertWindowsKeyBehavior("dir", characters);
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DHeaderParser.java22 * 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) { argument
27 if (characters.indexOf(input.charAt(pos)) != -1) {
36 * space. Result is undefined if input contains newline characters.
/external/sfntly/cpp/src/sample/subtly/
H A Dcharacter_predicate.cc36 AcceptSet::AcceptSet(IntegerSet* characters) argument
37 : characters_(characters) {
H A Dcharacter_predicate.h31 // All characters except for those between [start, end] are rejected
44 // All characters in IntegerSet
50 explicit AcceptSet(sfntly::IntegerSet* characters);
58 // All characters
/external/clang/test/Lexer/
H A Dunicode.c6 // 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/
H A Dxmlstream.c51 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);
159 free(state.characters.memory);
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DBytesDictionaryMatcher.java19 private final byte[] characters; field in class:BytesDictionaryMatcher
23 characters = chars;
48 BytesTrie bt = new BytesTrie(characters, 0);
H A DCharsDictionaryMatcher.java18 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/
H A DCharsDictionaryMatcher.java17 private CharSequence characters; field in class:CharsDictionaryMatcher
20 characters = chars;
26 CharsTrie uct = new CharsTrie(characters, 0);
H A DBytesDictionaryMatcher.java18 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/
H A DToSAXHandler.java114 * @param characters The string of characters to process.
118 * @see ExtendedContentHandler#characters(String)
120 public void characters(String characters) throws SAXException argument
122 final int len = characters.length();
127 characters.getChars(0,len, m_charsBuff, 0);
128 characters(m_charsBuff, 0, len);
347 public void characters(org.w3c.dom.Node node) method in class:ToSAXHandler
360 this.characters(dat
[all...]
H A DToTextSAXHandler.java349 * @see ExtendedContentHandler#characters(String)
351 public void characters(String characters) argument
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) argument
371 m_saxHandler.characters(character
[all...]
H A DExtendedContentHandler.java89 public void characters(String chars) throws SAXException; method in interface:ExtendedContentHandler
97 public void characters(org.w3c.dom.Node node) throws org.xml.sax.SAXException; method in interface:ExtendedContentHandler
222 // The attribute value contains no bad characters. A "bad" character is one which
H A DToTextStream.java176 * chunks; however, all of the characters in any single event
187 * @param ch The characters from the XML document.
189 * @param length The number of characters to read from the array.
195 public void characters(char ch[], int start, int length) method in class:ToTextStream
204 /* leave characters un-processed as we are
218 // In final output state we do process the characters!
235 * @param ch The characters from the XML document.
237 * @param length The number of characters to read from the array.
257 * Normalize the characters, but don't escape. Different from
261 * @param ch The characters fro
570 characters(String characters) argument
[all...]
/external/flatbuffers/tests/
H A DJavaScriptUnionVectorTest.js45 var bookReader7 = movie.characters(0, new Test.BookReader());
48 var attacker = movie.characters(1, new Test.Attacker());
51 var bookReader2 = movie.characters(2, new Test.BookReader());
/external/icu/icu4c/source/common/
H A Ddictionarydata.h106 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
/external/v8/src/inspector/
H A Dstring-16.cc27 int charactersToInteger(const UChar* characters, size_t length, argument
32 if (!isASCII(characters[i])) {
36 buffer.push_back(static_cast<char>(characters[i]));
435 void String16Builder::append(const UChar* characters, size_t length) { argument
436 m_buffer.insert(m_buffer.end(), characters, characters + length);
439 void String16Builder::append(const char* characters, size_t length) { argument
440 m_buffer.insert(m_buffer.end(), characters, characters + length);
493 // Allocate a buffer big enough to hold all the characters
506 const UChar* characters = m_impl.data(); local
[all...]
H A Dstring-16.h28 String16(const UChar* characters, size_t size) : m_impl(characters, size) {} argument
29 String16(const UChar* characters) // NOLINT(runtime/explicit) argument
30 : m_impl(characters) {}
31 String16(const char* characters) // NOLINT(runtime/explicit) argument
32 : String16(characters, std::strlen(characters)) {}
33 String16(const char* characters, size_t size) { argument
35 for (size_t i = 0; i < size; ++i) m_impl[i] = characters[i];
/external/chromium-trace/catapult/devil/devil/utils/
H A Dmarkdown.py26 return '**%s**' % md_escape(raw_text, characters='*')
33 code=md_escape(raw_text, characters='`'))
36 def md_escape(raw_text, characters='*_'):
40 pattern = '[%s]' % re.escape(characters)
53 return '`%s`' % md_escape(raw_text, characters='`')
58 return '*%s*' % md_escape(raw_text, characters='*')
64 md_escape(link_text, characters=']'),
65 md_escape(link_target, characters=')'))
/external/curl/docs/cmdline-opts/
H A Dform-string.d8 literally. Leading \&'@' and \&'<' characters, and the \&';type=' string in
H A Dprogress-bar.d8 This progress bar draws a single line of '#' characters across the screen and
/external/libmojo/third_party/markupsafe/
H A D_speedups.c32 /* 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."},
/external/flatbuffers/tests/union_vector/
H A Dunion_vector_generated.h236 std::vector<CharacterUnion> characters; member in struct:MovieT
286 const flatbuffers::Vector<flatbuffers::Offset<void>> *characters() const { function in struct:FLATBUFFERS_FINAL_CLASS
300 verifier.Verify(characters()) &&
301 VerifyCharacterVector(verifier, characters(), characters_type()) &&
321 void add_characters(flatbuffers::Offset<flatbuffers::Vector<flatbuffers::Offset<void>>> characters) { argument
322 fbb_.AddOffset(Movie::VT_CHARACTERS, characters);
341 flatbuffers::Offset<flatbuffers::Vector<flatbuffers::Offset<void>>> characters = 0) {
343 builder_.add_characters(characters);
355 const std::vector<flatbuffers::Offset<void>> *characters = nullptr) {
361 characters
[all...]
/external/pdfium/testing/
H A Dtest_support.cpp117 size_t characters = 0;
118 while (wstr[characters])
119 ++characters;
121 std::wstring platform_string(characters, L'\0');
122 for (size_t i = 0; i < characters + 1; ++i) {
/external/libxml2/
H A DSAX.c67 hdlr->characters = xmlSAX2Characters;
115 hdlr->characters = xmlSAX2Characters;
162 hdlr->characters = xmlSAX2Characters;

Completed in 973 milliseconds

1234567891011