Searched defs:characters (Results 1 - 25 of 168) sorted by relevance

1234567

/external/chromium_org/base/i18n/
H A Dbreak_iterator_unittest.cc315 // An English word consisting of four ASCII characters.
318 // characters.
320 // A Thai word (which means "feel") consisting of three Thai characters.
323 std::vector<string16> characters; local
326 characters.push_back(WideToUTF16(kCharacters[i]));
327 text.append(characters.back());
333 EXPECT_EQ(characters[i], iter.GetString());
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLFontElement.cpp51 static bool parseFontSize(const CharacterType* characters, unsigned length, int& size) argument
56 const CharacterType* position = characters;
57 const CharacterType* end = characters + length;
H A DHTMLDimension.cpp40 static HTMLDimension parseDimension(const CharacterType* characters, size_t lastParsedIndex, size_t endOfCurrentToken) argument
46 while (lastParsedIndex < endOfCurrentToken && isASCIISpace((characters[lastParsedIndex])))
54 while (position < endOfCurrentToken && isASCIIDigit(characters[position]))
59 unsigned integerValue = charactersToUIntStrict(characters + lastParsedIndex, position - lastParsedIndex, &ok);
63 if (position < endOfCurrentToken && characters[position] == '.') {
66 while (position < endOfCurrentToken && (isASCIIDigit(characters[position]) || isASCIISpace(characters[position]))) {
67 if (isASCIIDigit(characters[position]))
68 fractionNumbers.append(characters[position]);
81 while (position < endOfCurrentToken && isASCIISpace(characters[positio
[all...]
/external/chromium_org/ui/base/accelerators/
H A Dplatform_accelerator_cocoa.h27 NSString* characters() const { return characters_.get(); } function in class:ui::PlatformAcceleratorCocoa
33 // String of characters for the key equivalent.
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSMarkup.cpp36 static inline bool isCSSTokenizerIdentifier(const CharacterType* characters, unsigned length) argument
38 const CharacterType* end = characters + length;
41 if (characters != end && characters[0] == '-')
42 ++characters;
45 if (characters == end || !(characters[0] == '_' || characters[0] >= 128 || isASCIIAlpha(characters[0])))
47 ++characters;
72 isCSSTokenizerURL(const CharacterType* characters, unsigned length) argument
112 quoteCSSStringInternal(const CharacterType* characters, unsigned length) argument
[all...]
H A DCSSDefaultStyleSheets.cpp80 static PassRefPtrWillBeRawPtr<StyleSheetContents> parseUASheet(const char* characters, unsigned size) argument
82 return parseUASheet(String(characters, size));
/external/chromium_org/third_party/WebKit/Source/core/frame/csp/
H A DMediaListDirective.cpp19 Vector<UChar> characters; local
20 value.appendTo(characters);
21 parse(characters.data(), characters.data() + characters.size());
H A DSourceListDirective.cpp20 Vector<UChar> characters; local
21 value.appendTo(characters);
23 m_sourceList.parse(characters.data(), characters.data() + characters.size());
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DLatin1TextIterator.h33 Latin1TextIterator(const LChar* characters, int currentCharacter, int lastCharacter, int /*endCharacter*/) argument
34 : m_characters(characters)
57 const LChar* characters() const { return m_characters; } function in class:WebCore::Latin1TextIterator
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DSurrogatePairAwareTextIterator.cpp33 SurrogatePairAwareTextIterator::SurrogatePairAwareTextIterator(const UChar* characters, int currentCharacter, int lastCharacter, int endCharacter) argument
34 : m_characters(characters)
H A DSurrogatePairAwareTextIterator.h57 const UChar* characters() const { return m_characters; } function in class:WebCore::SurrogatePairAwareTextIterator
H A DTextBoundaries.cpp38 int endOfFirstWordBoundaryContext(const UChar* characters, int length) argument
43 U16_NEXT(characters, i, length, ch);
50 int startOfLastWordBoundaryContext(const UChar* characters, int length) argument
55 U16_PREV(characters, 0, i, ch);
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringBuffer.h46 CharType* characters; local
47 m_data = StringImpl::createUninitialized(length, characters);
64 CharType* characters; local
65 m_data = StringImpl::createUninitialized(newLength, characters);
76 CharType* characters() { return length() ? const_cast<CharType*>(m_data->getCharacters<CharType>()) : 0; } function in class:WTF::StringBuffer
78 CharType& operator[](unsigned i) { ASSERT_WITH_SECURITY_IMPLICATION(i < length()); return characters()[i]; }
/external/chromium_org/third_party/sfntly/cpp/src/sample/subtly/
H A Dcharacter_predicate.cc36 AcceptSet::AcceptSet(IntegerSet* characters) argument
37 : characters_(characters) {
/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) {
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLParserIdioms.cpp41 static String stripLeadingAndTrailingHTMLSpaces(String string, const CharType* characters, unsigned length) argument
47 if (isNotHTMLSpace<CharType>(characters[numLeadingSpaces]))
55 if (isNotHTMLSpace<CharType>(characters[length - numTrailingSpaces - 1]))
99 // String::toDouble() accepts leading + and whitespace characters, which are not valid here.
120 // String::toDouble() accepts leading + and whitespace characters, which are not valid here.
373 inline StringImpl* findStringIfStatic(const CharType* characters, unsigned length)
379 unsigned hash = StringHasher::computeHashAndMaskTop8Bits(characters, length);
390 if (!equal(it->value, characters, length))
395 String attemptStaticStringCreation(const LChar* characters, size_t size)
397 String string(findStringIfStatic(characters, siz
[all...]
H A DAtomicHTMLToken.h86 const String& characters() const function in class:WebCore::AtomicHTMLToken
211 // "data" for Comment, "characters" for Character
/external/chromium_org/tools/grit/grit/gather/
H A Digoogle_strings.py54 def characters(self, content): member in class:IgoogleStringsContentHandler
H A Dmuppet_strings.py61 def characters(self, content): member in class:MuppetStringsContentHandler
/external/chromium_org/tools/grit/grit/
H A Dgrd_reader.py103 def characters(self, content): member in class:GrdContentHandler
134 def characters(self, content): member in class:GrdPartContentHandler
135 self.parent.characters(content)
H A Dxtb_reader.py86 def characters(self, content): member in class:XtbContentHandler
88 # We are inside a <translation> node so just add the characters to our
91 # This naive way of handling characters is OK because in the XTB format,
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DProcessorCharacters.java101 * @param ch The characters.
103 * @param length The number of characters to use from the
107 * @see org.xml.sax.ContentHandler#characters
109 public void characters( method in class:ProcessorCharacters
157 * Accumulate characters, until a non-whitespace event has
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTScanner.cpp54 bool VTTScanner::scan(const LChar* characters, size_t charactersCount) argument
61 matched = WTF::equal(m_data.characters8, characters, charactersCount);
63 matched = WTF::equal(m_data.characters16, characters, charactersCount);
H A DVTTToken.h75 const String& characters() const { return m_data; } function in class:WebCore::VTTToken

Completed in 5540 milliseconds

1234567