Searched refs:characters (Results 126 - 150 of 303) sorted by relevance

1234567891011>>

/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DTreeWalker.java234 * Optimized dispatch of characters.
241 this.m_Serializer.characters(node);
246 this.m_contentHandler.characters(data.toCharArray(), 0, data.length());
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DTreeWalker.java265 * Optimized dispatch of characters.
272 ((org.apache.xml.dtm.ref.dom2dtm.DOM2DTM.CharacterNodeHandler)m_contentHandler).characters(node);
277 this.m_contentHandler.characters(data.toCharArray(), 0, data.length());
/external/chromium_org/chrome/installer/util/prebuild/
H A Dcreate_string_rc.py122 def characters(self, content): member in class:GrdHandler
200 def characters(self, content): member in class:XtbHandler
341 # Escape special characters for the rc file.
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringBuilderTest.cpp100 const LChar* characters = builder2.characters8(); local
102 ASSERT_EQ(characters, builder2.characters8());
104 // Test appending UChar32 characters to StringBuilder.
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
H A DparseDiffWithMockFiles.pl35 my @characters = split(//, $text);
37 foreach (@characters) {
/external/bison/src/
H A Dscan-gram.l88 /* Strings and characters in directives/rules. */
101 /* Strings and characters in code. */
295 ngettext ("invalid character", "invalid characters", yyleng),
382 "invalid characters in bracketed name", yyleng),
486 warn_at (*loc, _("extra characters in character literal"));
507 warn_at (*loc, _("extra characters in character literal"));
523 | Decode escaped characters. |
578 | Scanning user-code characters and strings. |
803 /* FIXME: Currently we assume Unicode-compatible unibyte characters
807 multibyte characters
[all...]
/external/chromium_org/skia/ext/
H A Dvector_platform_device_emf_win.cc446 LPCWSTR text, unsigned int characters, const int * lpDx,
448 bool success = ExtTextOut(hdc, x, y, options, lprect, text, characters, lpDx);
453 characters);
454 success = ExtTextOut(hdc, x, y, options, lprect, text, characters, lpDx);
460 << " and characters: " << base::string16(text, characters);
464 << " and characters: " << base::string16(text, characters);
445 EnsureExtTextOut(HDC hdc, int x, int y, UINT options, const RECT * lprect, LPCWSTR text, unsigned int characters, const int * lpDx, SkTypeface* const typeface) argument
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/UglifyJS/
H A Dparse-js.js139 var OPERATOR_CHARS = array_to_hash(characters("+-*&%=<>!?|~^"));
193 var WHITESPACE_CHARS = array_to_hash(characters(" \n\r\t"));
195 var PUNC_BEFORE_EXPRESSION = array_to_hash(characters("[{}(,.;:"));
197 var PUNC_CHARS = array_to_hash(characters("[]{}(),;:"));
199 var REGEXP_MODIFIERS = array_to_hash(characters("gmsiy"));
1217 function characters(str) { function
/external/chromium_org/v8/src/arm64/
H A Dregexp-macro-assembler-arm64.cc306 // Check that there are enough characters left in the input.
435 // Check that there are enough characters left in the input.
550 // Match space-characters
552 // One byte space characters are '\t'..'\r', ' ' and \u00a0.
598 // We have to check all 4 newline characters before emitting
615 // Table is 256 entries, so all Latin1 characters can be tested.
627 // Table is 256 entries, so all Latin1 characters can be tested.
1084 int characters) {
1091 CheckPosition(cp_offset + characters - 1, on_end_of_input);
1093 LoadCurrentCharacterUnchecked(cp_offset, characters);
1081 LoadCurrentCharacter(int cp_offset, Label* on_end_of_input, bool check_bounds, int characters) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSPrimitiveValue.cpp1034 ALWAYS_INLINE static String formatNumber(double number, const char (&characters)[characterCount]) argument
1036 return formatNumber(number, characters, characterCount - 1);
1039 static String formatNumber(double number, const char* characters) argument
1041 return formatNumber(number, characters, strlen(characters));
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLTextFormControlElement.cpp805 Vector<UChar> characters; local
806 concatTexts.toString().appendTo(characters);
807 findWordBoundary(characters.data(), characters.size(), findOption == FindStart ? characters.size() : 0, &start, &end);
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTransformerIdentityImpl.java384 characters(chars, 0, chars.length);
1113 * @param ch The characters.
1115 * @param length The number of characters to use from the
1119 * @see org.xml.sax.ContentHandler#characters
1123 public void characters(char ch[], int start, int length) throws SAXException method in class:TransformerIdentityImpl
1126 m_resultContentHandler.characters(ch, start, length);
1137 * @param ch The whitespace characters.
1139 * @param length The number of characters to use from the
1284 * the regular {@link org.xml.sax.ContentHandler#characters
1285 * characters} even
[all...]
H A DTransformerHandlerImpl.java531 * @param ch An array of characters.
533 * @param length The number of characters to use from the array.
536 * @see org.xml.sax.ContentHandler#characters
538 public void characters(char ch[], int start, int length) throws SAXException method in class:TransformerHandlerImpl
542 System.out.println("TransformerHandlerImpl#characters: " + start + ", "
547 m_contentHandler.characters(ch, start, length);
554 * @param ch An array of characters.
556 * @param length The number of characters to use from the array.
857 * the regular {@link org.xml.sax.ContentHandler#characters
858 * characters} even
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
H A DComplexTextController.cpp124 // FIXME: Instead of dividing the glyph's advance equally between the characters, this
129 TextBreakIterator* cursorPositionIterator = cursorMovementIterator(complexTextRun.characters(), stringLength);
460 // FIXME: Instead of dividing the glyph's advance equally between the characters, this
511 const UChar* cp = complexTextRun.characters();
533 nextCh = *(m_complexTextRuns[r + 1]->characters() + m_complexTextRuns[r + 1]->indexAt(0));
/external/chromium_org/third_party/libxml/src/
H A Dlegacy.c121 "SAX function characters",
241 } else if (!strcmp(name, "SAX function characters")) {
242 *((charactersSAXFunc *) result) = ctxt->sax->characters;
359 } else if (!strcmp(name, "SAX function characters")) {
360 ctxt->sax->characters = *((charactersSAXFunc *) value);
1173 * characters:
1182 characters(void *ctx, const xmlChar * ch, int len) function
1184 DEPRECATED("characters")
1195 * UNUSED: by default the DOM building will use characters
/external/libxml2/
H A Dlegacy.c121 "SAX function characters",
241 } else if (!strcmp(name, "SAX function characters")) {
242 *((charactersSAXFunc *) result) = ctxt->sax->characters;
359 } else if (!strcmp(name, "SAX function characters")) {
360 ctxt->sax->characters = *((charactersSAXFunc *) value);
1173 * characters:
1182 characters(void *ctx, const xmlChar * ch, int len) function
1184 DEPRECATED("characters")
1195 * UNUSED: by default the DOM building will use characters
/external/chromium_org/chrome/browser/history/
H A Durl_index_private_data.cc166 // The search string we receive may contain escaped characters. For reducing
169 // containing escaped characters.
569 // If a prefix was found then determine the leftover characters to be used
599 // Reduce the word set with any leftover, unprocessed characters.
794 Char16Set characters = Char16SetFromString16(term); local
795 for (Char16Set::iterator uni_char_iter = characters.begin();
796 uni_char_iter != characters.end(); ++uni_char_iter) {
858 Char16Set characters = Char16SetFromString16(word); local
859 for (Char16Set::iterator uni_char_iter = characters.begin();
860 uni_char_iter != characters
[all...]
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
H A Dbytes.pxd44 # format characters in the format string. The following format
45 # characters are allowed:
99 # may not contain NUL characters; if it does, the function returns
H A Dstring.pxd44 # format characters in the format string. The following format
45 # characters are allowed:
99 # may not contain NUL characters; if it does, the function returns
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DIncrementalSAXSource_Filter.java215 // and characters may be sufficient. I actually may not want to
216 // stop after characters, since in our application these wind up being
221 public void characters(char[] ch, int start, int length) method in class:IncrementalSAXSource_Filter
230 clientContentHandler.characters(ch,start,length);
/external/chromium_org/base/strings/
H A Dstring_util.h34 // Compares up to count characters of s1 and s2 without regard to case using
43 // number of characters that would be in an untruncated formatted
64 // Copies at most |dst_size|-1 characters, and always NULL terminates |dst|, as
65 // long as |dst_size| is not 0. Returns the length of |src| in characters.
67 // NOTE: All sizes are in number of characters, NOT in bytes.
140 // Contains the set of characters representing whitespace in the corresponding
149 // Removes characters in |remove_chars| from anywhere in |input|. Returns true
150 // if any characters were removed. |remove_chars| must be null-terminated.
159 // Replaces characters in |replace_chars| from anywhere in |input| with
161 // the |replace_with| string. Returns true if any characters wer
[all...]
H A Dstring_util.cc77 // Eat up characters until reaching a known specifier.
316 const StringPiece& characters) {
317 return input.find_first_not_of(characters) == StringPiece::npos;
321 const StringPiece16& characters) {
322 return input.find_first_not_of(characters) == StringPiece16::npos;
880 // Count the rest of the |src|, and return it's length in characters.
315 ContainsOnlyChars(const StringPiece& input, const StringPiece& characters) argument
320 ContainsOnlyChars(const StringPiece16& input, const StringPiece16& characters) argument
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTParser.cpp207 // and any number of characters that are not line terminators ...
263 // Steps 6 - 9 - If the next three characters are not "-->", abort and return failure.
422 // Steps 5 - 7 - Collect a sequence of characters that are 0-9.
423 // If not 2 characters or value is greater than 59, interpret as hours.
494 m_currentNode->parserAppendChild(Text::create(document, m_token.characters()));
551 String charactersString = m_token.characters();
/external/chromium_org/content/shell/renderer/test_runner/
H A Devent_sender.cc68 const char* characters = modifier_name.c_str(); local
69 if (!strcmp(characters, "ctrlKey")
71 || !strcmp(characters, "addSelectionKey")
75 } else if (!strcmp(characters, "shiftKey") ||
76 !strcmp(characters, "rangeSelectionKey")) {
78 } else if (!strcmp(characters, "altKey")) {
81 } else if (!strcmp(characters, "metaKey") ||
82 !strcmp(characters, "addSelectionKey")) {
85 } else if (!strcmp(characters, "metaKey")) {
88 } else if (!strcmp(characters, "autoRepea
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DXSLTElementProcessor.java192 * @param ch The characters.
194 * @param length The number of characters to use from the
197 public void characters( method in class:XSLTElementProcessor
210 * @param ch The whitespace characters.
212 * @param length The number of characters to use from the

Completed in 1300 milliseconds

1234567891011>>