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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSTokenizer.h 71 template <typename CharacterType>
72 inline CharacterType* tokenStart();
79 template <typename CharacterType>
80 inline CharacterType*& currentCharacter();
82 template <typename CharacterType>
83 inline CharacterType* dataStart();
85 template <typename CharacterType>
86 inline void setTokenStart(CharacterType*);
88 template <typename CharacterType>
91 template <typename CharacterType>
    [all...]
CSSMarkup.cpp 35 template <typename CharacterType>
36 static inline bool isCSSTokenizerIdentifier(const CharacterType* characters, unsigned length)
38 const CharacterType* end = characters + length;
71 template <typename CharacterType>
72 static inline bool isCSSTokenizerURL(const CharacterType* characters, unsigned length)
74 const CharacterType* end = characters + length;
77 CharacterType c = characters[0];
111 template <typename CharacterType>
112 static inline String quoteCSSStringInternal(const CharacterType* characters, unsigned length)
119 CharacterType ch = characters[i]
    [all...]
CSSTokenizer-in.cpp 42 enum CharacterType {
74 static const CharacterType typesOfASCIICharacters[128] = {
207 template <typename CharacterType>
208 static inline bool isCSSLetter(CharacterType character)
213 template <typename CharacterType>
214 static inline bool isCSSEscape(CharacterType character)
219 template <typename CharacterType>
220 static inline bool isURILetter(CharacterType character)
225 template <typename CharacterType>
226 static inline bool isIdentifierStartAfterDash(CharacterType* currentCharacter
    [all...]
CSSParserValues.h 83 template <typename CharacterType>
84 const CharacterType* characters() const;
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
TextEncodingRegistry.h 45 template <typename CharacterType>
46 const char* atomicCanonicalTextEncodingName(const CharacterType*, size_t);
ASCIIFastPath.h 52 template<size_t size, typename CharacterType> struct NonASCIIMask;
67 template<typename CharacterType>
70 return !(word & NonASCIIMask<sizeof(MachineWord), CharacterType>::value());
75 template<typename CharacterType>
76 inline bool charactersAreAllASCII(const CharacterType* characters, size_t length)
79 const CharacterType* end = characters + length;
88 const CharacterType* wordEnd = alignToMachineWord(end);
89 const size_t loopIncrement = sizeof(MachineWord) / sizeof(CharacterType);
101 MachineWord nonASCIIBitMask = NonASCIIMask<sizeof(MachineWord), CharacterType>::value();
AtomicString.cpp 133 template<typename CharacterType>
135 const CharacterType* s;
159 template<typename CharacterType>
162 const CharacterType* characters;
166 template<typename CharacterType>
168 static unsigned hash(const HashAndCharacters<CharacterType>& buffer)
174 static bool equal(StringImpl* const& string, const HashAndCharacters<CharacterType>& buffer)
179 static void translate(StringImpl*& location, const HashAndCharacters<CharacterType>& buffer, unsigned hash)
411 template<typename CharacterType>
414 HashAndCharacters<CharacterType> buffer = { stringImpl->existingHash(), stringImpl->getCharacters<CharacterType>(), stringImpl->le (…)
    [all...]
StringImpl.h 47 template<typename CharacterType> struct HashAndCharactersTranslator;
112 template<typename CharacterType> friend struct WTF::HashAndCharactersTranslator;
495 template<typename CharacterType>
496 inline size_t find(const CharacterType* characters, unsigned length, CharacterType matchCharacter, unsigned index = 0)
538 template<typename CharacterType>
539 inline size_t findNextLineStart(const CharacterType* characters, unsigned length, unsigned index = 0)
542 CharacterType c = characters[index++];
555 CharacterType c2 = characters[index];
569 template<typename CharacterType>
    [all...]
TextEncodingRegistry.cpp 271 template <typename CharacterType>
272 const char* atomicCanonicalTextEncodingName(const CharacterType* characters, size_t length)
277 CharacterType c = characters[i];
WTFString.h 88 template<bool isSpecialCharacter(UChar), typename CharacterType>
89 bool isAllSpecialCharacters(const CharacterType*, size_t);
177 // Return characters8() or characters16() depending on CharacterType.
178 template <typename CharacterType>
179 inline const CharacterType* getCharacters() const;
444 template <typename CharacterType>
445 void removeInternal(const CharacterType*, unsigned, int);
447 template <typename CharacterType>
448 void appendInternal(CharacterType);
573 template<typename CharacterType>
    [all...]
WTFString.cpp 123 template <typename CharacterType>
124 inline void String::appendInternal(CharacterType c)
315 template <typename CharacterType>
316 inline void String::removeInternal(const CharacterType* characters, unsigned position, int lengthToRemove)
318 CharacterType* data;
320 memcpy(data, characters, position * sizeof(CharacterType));
322 (length() - lengthToRemove - position) * sizeof(CharacterType));
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
SpaceSplitString.cpp 33 template <typename CharacterType>
34 static inline bool hasNonASCIIOrUpper(const CharacterType* characters, unsigned length)
37 CharacterType ored = 0;
39 CharacterType c = characters[i];
55 template <typename CharacterType>
56 inline void SpaceSplitStringData::createVector(const CharacterType* characters, unsigned length)
60 while (start < length && isHTMLSpace<CharacterType>(characters[start]))
65 while (end < length && isNotHTMLSpace<CharacterType>(characters[end]))
SpaceSplitString.h 61 template <typename CharacterType>
62 inline void createVector(const CharacterType*, unsigned);
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFontElement.cpp 50 template <typename CharacterType>
51 static bool parseFontSize(const CharacterType* characters, unsigned length, int& size)
56 const CharacterType* position = characters;
57 const CharacterType* end = characters + length;
61 if (!isHTMLSpace<CharacterType>(*position))
HTMLDimension.cpp 39 template <typename CharacterType>
40 static HTMLDimension parseDimension(const CharacterType* characters, size_t lastParsedIndex, size_t endOfCurrentToken)
65 Vector<CharacterType> fractionNumbers;
HTMLLinkElement.cpp 57 template <typename CharacterType>
58 static void parseSizes(const CharacterType* value, unsigned length, Vector<IntSize>& iconSizes)
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLParserIdioms.cpp 142 template <typename CharacterType>
143 static bool parseHTMLIntegerInternal(const CharacterType* position, const CharacterType* end, int& value)
150 if (!isHTMLSpace<CharacterType>(*position))
206 template <typename CharacterType>
207 static bool parseHTMLNonNegativeIntegerInternal(const CharacterType* position, const CharacterType* end, unsigned& value)
211 if (!isHTMLSpace<CharacterType>(*position))
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
break_lines.cpp 146 template<typename CharacterType, bool treatNoBreakSpaceAsBreak>
147 static inline int nextBreakablePosition(LazyLineBreakIterator& lazyBreakIterator, const CharacterType* str, unsigned length, int pos)
152 CharacterType lastLastCh = pos > 1 ? str[pos - 2] : static_cast<CharacterType>(lazyBreakIterator.secondToLastCharacter());
153 CharacterType lastCh = pos > 0 ? str[pos - 1] : static_cast<CharacterType>(lazyBreakIterator.lastCharacter());
156 CharacterType ch = str[i];
RenderListMarker.cpp 89 template <typename CharacterType>
90 static inline String toAlphabeticOrNumeric(numberType number, const CharacterType* sequence, unsigned sequenceSize, SequenceType type)
96 CharacterType letters[lettersSize];
126 template <typename CharacterType>
127 static String toSymbolic(int number, const CharacterType* symbols, unsigned symbolsSize)
143 template <typename CharacterType>
144 static String toAlphabetic(int number, const CharacterType* alphabet, unsigned alphabetSize)
149 template <typename CharacterType>
150 static String toNumeric(int number, const CharacterType* numerals, unsigned numeralsSize)
155 template <typename CharacterType, size_t size
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathStringSource.cpp 59 template <typename CharacterType>
60 static bool parseSVGSegmentTypeHelper(const CharacterType*& current, SVGPathSegType& pathSegType)
134 template <typename CharacterType>
135 static bool nextCommandHelper(const CharacterType*& current, SVGPathSegType previousCommand, SVGPathSegType& nextCommand)
226 template <typename CharacterType>
227 static bool parseArcToSegmentHelper(const CharacterType*& current, const CharacterType* end, float& rx, float& ry, float& angle, bool& largeArc, bool& sweep, FloatPoint& targetPoint)
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
WidthCache.h 68 template<typename CharacterType> SmallStringKey(CharacterType* characters, unsigned short length)
Character.cpp 364 template <typename CharacterType>
365 static inline String normalizeSpacesInternal(const CharacterType* characters, unsigned length)
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorStyleSheet.cpp 100 template <typename CharacterType> inline void setRuleHeaderEnd(const CharacterType*, unsigned);
127 template <typename CharacterType>
128 inline void StyleSheetHandler::setRuleHeaderEnd(const CharacterType* dataStart, unsigned listEndOffset)
131 if (isHTMLSpace<CharacterType>(*(dataStart + listEndOffset - 1)))
203 template <typename CharacterType>
204 static inline void fixUnparsedProperties(const CharacterType* characters, CSSRuleSourceData* ruleData)
228 while (isHTMLSpace<CharacterType>(characters[propertyEndInStyleSheet]))
240 while (valueStartInStyleSheet < propertyEndInStyleSheet && isHTMLSpace<CharacterType>(characters[valueStartInStyleSheet]))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
Color.cpp 129 template <typename CharacterType>
130 static inline bool parseHexColorInternal(const CharacterType* name, unsigned length, RGBA32& rgb)
  /external/chromium_org/third_party/WebKit/Source/core/css/parser/
CSSPropertyParser.cpp     [all...]

Completed in 718 milliseconds

1 2