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

1 2 3 4 5 6 7 8 9

  /external/webkit/Source/JavaScriptCore/API/
OpaqueJSString.h 43 static PassRefPtr<OpaqueJSString> create(const UChar* characters, unsigned length)
45 return adoptRef(new OpaqueJSString(characters, length));
50 UChar* characters() { return this ? m_characters : 0; } function in struct:OpaqueJSString
65 OpaqueJSString(const UChar* characters, unsigned length)
69 memcpy(m_characters, characters, length * sizeof(UChar));
  /external/webkit/Source/JavaScriptCore/wtf/text/
StringBuffer.h 71 UChar* characters() { return m_data; } function in class:WTF::StringBuffer
StringBuilder.cpp 65 allocateBuffer(m_buffer->characters(), m_buffer->length());
84 allocateBuffer(m_buffer->characters(), newCapacity);
88 allocateBuffer(m_string.characters(), newCapacity);
129 allocateBuffer(m_buffer->characters(), std::max(requiredLength, m_buffer->length() * 2));
132 allocateBuffer(m_string.characters(), std::max(requiredLength, requiredLength * 2));
140 void StringBuilder::append(const UChar* characters, unsigned length)
144 ASSERT(characters);
146 memcpy(appendUninitialized(length), characters, static_cast<size_t>(length) * 2); local
149 void StringBuilder::append(const char* characters, unsigned length)
153 ASSERT(characters);
    [all...]
  /external/webkit/Source/WebCore/editing/
SmartReplaceICU.cpp 42 const UChar* characters = string.characters(); local
44 uset_add(smartSet, characters[i]);
58 smartSet = uset_openPattern(whitespaceAndNewline.characters(), whitespaceAndNewline.length(), &ec);
82 USet* icuPunct = uset_openPattern(punctuationClass.characters(), punctuationClass.length(), &ec);
  /external/webkit/Source/WebCore/html/parser/
CSSPreloadScanner.cpp 56 const HTMLToken::DataVector& characters = token.characters(); local
57 for (HTMLToken::DataVector::const_iterator iter = characters.begin(); iter != characters.end() && m_state != DoneParsingImportRules; ++iter)
149 static String parseCSSStringOrURL(const UChar* characters, size_t length)
154 while (reducedLength && isHTMLSpace(characters[offset])) {
158 while (reducedLength && isHTMLSpace(characters[offset + reducedLength - 1]))
162 && (characters[offset] == 'u' || characters[offset] == 'U')
163 && (characters[offset + 1] == 'r' || characters[offset + 1] == 'R'
    [all...]
HTMLParserIdioms.cpp 37 const UChar* characters = string.characters(); local
42 if (isNotHTMLSpace(characters[numLeadingSpaces]))
51 if (isNotHTMLSpace(characters[length - numTrailingSpaces - 1]))
73 // String::toDouble() accepts leading + and whitespace characters, which are not valid here.
177 const UChar* position = input.characters();
  /libcore/luni/src/main/java/org/xml/sax/
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...]
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
HandlerBase.java 240 * @param ch The characters.
242 * @param length The number of characters to use from the
246 * @see org.xml.sax.DocumentHandler#characters
248 public void characters (char ch[], int start, int length)
263 * @param ch The whitespace characters.
265 * @param length The number of characters to use from the
245 public void characters (char ch[], int start, int length) method in class:HandlerBase
  /libcore/luni/src/test/java/libcore/java/lang/
OldCharacterTest.java 93 char[] characters = { local
123 Character.getDirectionality(characters[i]));
  /external/webkit/Source/JavaScriptCore/runtime/
Identifier.h 51 const UChar* characters() const { return m_string.characters(); } function in class:JSC::Identifier
UString.cpp 60 UString::UString(const UChar* characters, unsigned length)
61 : m_impl(characters ? StringImpl::create(characters, length) : 0)
66 UString::UString(const UChar* characters)
68 if (!characters)
72 while (characters[length] != UChar(0))
75 m_impl = StringImpl::create(characters, length);
79 UString::UString(const char* characters, unsigned length)
80 : m_impl(characters ? StringImpl::create(characters, length) : 0
324 const UChar* characters = this->characters(); local
    [all...]
  /external/webkit/Source/WebCore/dom/
SpaceSplitString.cpp 34 const UChar* characters = string.characters(); local
39 UChar c = characters[i];
54 const UChar* characters = m_string.characters(); local
58 while (start < length && isHTMLSpace(characters[start]))
63 while (end < length && isNotHTMLSpace(characters[end]))
66 m_vector.append(AtomicString(characters + start, end - start));
DatasetDOMStringMap.cpp 42 const UChar* characters = name.characters(); local
45 if (isASCIIUpper(characters[i]))
56 const UChar* characters = name.characters(); local
59 if (characters[i] != '-')
60 newStringBuffer.append(characters[i]);
62 if ((i + 1 < length) && isASCIILower(characters[i + 1])) {
63 newStringBuffer.append(toASCIIUpper(characters[i + 1]));
66 newStringBuffer.append(characters[i])
103 const UChar* characters = name.characters(); local
122 const UChar* characters = name.characters(); local
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLIFrameElement.cpp 77 const UChar* characters = attribute->value().characters(); local
81 while (start < length && isASCIISpace(characters[start]))
86 while (end < length && !isASCIISpace(characters[end]))
90 String sandboxToken = String(characters + start, end - start);
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
ProcessorCharacters.java 101 * @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/apache-xml/src/main/java/org/apache/xalan/templates/
ElemTextLiteral.java 79 * Set the characters that will be output to the result tree..
81 * @param v Array of characters that will be output to the result tree
89 * Get the characters that will be output to the result tree..
91 * @return Array of characters that will be output to the result tree
124 * possibly other characters) when outputting text nodes.
149 * possibly other characters) when outputting text nodes.
213 rth.characters(m_ch, 0, m_ch.length);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
ExtendedContentHandler.java 89 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
  /external/icu4c/common/
dictionarydata.h 82 UCharsDictionaryMatcher(const UChar *c, UDataMemory *f) : characters(c), file(f) { }
88 const UChar *characters; member in class:UCharsDictionaryMatcher
99 : characters(c), transformConstant(t), file(f) { }
107 const char *characters; member in class:BytesDictionaryMatcher
  /external/libvpx/libvpx/examples/
gen_example_doxy.php 111 * encoded entities to ordinary characters, since a
125 $characters = array ('&' variable
129 $input = preg_replace($entities, $characters, $input);
  /external/webkit/Source/WebCore/platform/
LinkHash.cpp 34 static inline size_t findSlashDotDotSlash(const UChar* characters, size_t length, size_t position)
40 if (characters[i] == '/' && characters[i + 1] == '.' && characters[i + 2] == '.' && characters[i + 3] == '/')
46 static inline size_t findSlashSlash(const UChar* characters, size_t length, size_t position)
52 if (characters[i] == '/' && characters[i + 1] == '/')
58 static inline size_t findSlashDotSlash(const UChar* characters, size_t length, size_t position)
64 if (characters[i] == '/' && characters[i + 1] == '.' && characters[i + 2] == '/'
213 const UChar* characters = attributeURL.characters(); local
    [all...]
  /external/webkit/Source/WebCore/platform/text/
TextCodecLatin1.cpp 121 UChar* characters; local
122 String result = String::createUninitialized(length, characters);
127 UChar* destination = characters;
160 static CString encodeComplexWindowsLatin1(const UChar* characters, size_t length, UnencodableHandling handling)
168 U16_NEXT(characters, i, length, c);
170 // Do an efficient check to detect characters other than 00-7F and A0-FF.
192 CString TextCodecLatin1::encode(const UChar* characters, size_t length, UnencodableHandling handling)
201 UChar c = characters[i];
211 return encodeComplexWindowsLatin1(characters, length, handling);
  /external/webkit/Source/WebCore/rendering/mathml/
RenderMathMLFenced.cpp 67 Vector<UChar> characters; local
70 characters.append(separators[i]);
72 m_separators = !characters.size() ? 0 : StringImpl::create(characters.data() , characters.size());
  /external/webkit/Source/WebCore/wml/
WMLVariables.cpp 70 const UChar* characters = name.characters(); local
71 if (!isValidFirstVariableNameCharacter(characters[0]))
76 if (!isValidVariableNameCharacter(characters[i]))
89 const UChar* characters = text.characters(); local
104 if (characters[nameStartPosition] == '(') {
185 // Consume all remaining characters, as there's nothing more to substitute
190 // Consume all characters until the variable reference beginning
  /frameworks/base/sax/java/android/sax/
RootElement.java 170 public void characters(char[] buffer, int start, int length) method in class:RootElement.Handler

Completed in 1315 milliseconds

1 2 3 4 5 6 7 8 9