HomeSort by relevance Sort by last modified time
    Searched refs:characters (Results 226 - 250 of 389) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/WebCore/dom/
Document.cpp 233 // a) Name start characters must have one of the categories Ll, Lu, Lo, Lt, Nl.
234 // b) Name characters other than Name-start characters must have one of the categories Mc, Me, Mn, Lm, or Nd.
235 // c) Characters in the compatibility area (i.e. with character code greater than #xF900 and less than #xFFFE) are not allowed in XML names.
236 // d) Characters which have a font or compatibility decomposition (i.e. those with a "compatibility formatting tag" in field 5 of the database -- marked by field 5 beginning with a "<") are not allowed.
237 // e) The following characters are treated as name-start characters rather than name characters, because the property file classifies them as Alphabetic: [#x02BB-#x02C1], #x0559, #x06E5, #x06E6.
238 // f) Characters #x20DD-#x20E0 are excluded (in accordance with Unicode, section 5.14).
241 // i) Characters ':' and '_' are allowed as name-start characters
1147 const UChar* characters = title.characters(); local
3371 const UChar* characters = name.characters(); local
    [all...]
xml_expat_tokenizer.cpp 191 tokenizer->characters(s, len);
534 void XMLTokenizer::characters(const XML_Char *s, int len) function in class:WebCore::XMLTokenizer
675 tokenizer->characters(s, len);
746 enum XML_Status result = XML_Parse(m_parser, (const char*)parseString.characters(), sizeof(UChar) * parseString.length(), false);
  /external/webkit/WebCore/platform/graphics/mac/
SimpleFontDataMac.mm 362 bool SimpleFontData::containsCharacters(const UChar* characters, int length) const
364 NSString *string = [[NSString alloc] initWithCharactersNoCopy:const_cast<unichar*>(characters) length:length freeWhenDone:NO];
  /external/webkit/WebCore/platform/network/
FormDataBuilder.cpp 114 // FIXME: Is it correct to use percent escaping here? Other browsers do not encode these characters yet,
140 // The RFC 2046 spec says the alphanumeric characters plus the
141 // following characters are legal for boundaries: '()+_,-./:=?
142 // However the following characters, though legal, cause some sites
161 // Append 16 random 7bit ascii AlphaNumeric characters.
181 // FIXME: This loses data irreversibly if the input name includes characters you can't encode
201 // FIXME: This loses data irreversibly if the filename includes characters you can't encode
204 appendQuotedString(buffer, encoding.encode(filename.characters(), filename.length(), QuestionMarksForUnencodables));
233 // Same safe characters as Netscape for compatibility.
  /external/webkit/WebCore/platform/qt/
ClipboardQt.cpp 146 QByteArray array(reinterpret_cast<const char*>(data.characters()),
  /external/webkit/WebCore/platform/win/
FileSystemWin.cpp 94 memcpy(buffer.data(), path.characters(), path.length() * sizeof(UChar));
205 char tempFile[] = "XXXXXXXX.tmp"; // Use 8.3 style name (more characters aren't helpful due to 8.3 short file names)
210 // Limit to valid filesystem characters, also excluding others that could be problematic, like punctuation.
  /external/webkit/WebCore/rendering/
InlineIterator.h 214 return text->characters()[pos];
  /external/webkit/WebCore/svg/
SVGAnimateMotionElement.cpp 127 const UChar* cur = s.characters();
SVGAnimateTransformElement.cpp 151 const UChar* ptr = parseString.characters();
SVGLength.cpp 239 const UChar* ptr = s.characters();
SVGParserUtilities.cpp 147 const UChar* cur = s.characters();
165 const UChar* cur = points.characters();
229 const UChar* ptr = s.characters();
835 const UChar* ptr = input.characters();
SVGTransformable.cpp 192 const UChar* start = transform.characters();
  /external/webkit/WebCore/xml/
XSLStyleSheetLibxslt.cpp 153 const char* buffer = reinterpret_cast<const char*>(string.characters());
  /external/webkit/WebKit/android/benchmark/
Intercept.cpp 98 // Don't send spaces or control characters.
112 client->didReceiveData(m_handle, (const char*)base64.characters(),
  /external/webkit/WebKit/android/jni/
WebHistory.cpp 274 urlStr = env->NewString((unsigned short*)urlString.characters(), urlString.length());
279 (unsigned short*) originalUrlString.characters(),
285 titleStr = env->NewString((unsigned short*)titleString.characters(), titleString.length());
377 int l = SkUTF16_ToUTF8(str.characters(), strLen, data);
WebStorage.cpp 66 jstring jUrl = env->NewString(url.characters(), url.length());
  /external/webkit/WebKit/chromium/src/
ContextMenuClientImpl.cpp 87 TextBreakIterator* it = wordBreakIterator(text.characters(), text.length());
94 // the selection only when there were no selected characters on OS X.
DebuggerAgentManager.cpp 278 v8::Debug::SendCommand(reinterpret_cast<const uint16_t*>(cmd.characters()), cmd.length(), data);
  /external/webkit/WebKit/win/
WebDataSource.cpp 247 BString urlString((LPOLESTR)unreachableURL.string().characters(), unreachableURL.string().length());
WebDownload.cpp 169 *bundlePath = SysAllocStringLen(bundle.characters(), bundle.length());
WebElementPropertyBag.cpp 106 V_BSTR(pVar) = SysAllocStringLen(string.characters(), string.length());
  /libcore/luni/src/main/java/org/apache/xalan/processor/
XSLTElementProcessor.java 192 * @param ch The characters.
194 * @param length The number of characters to use from the
197 public void characters( method in class:XSLTElementProcessor
201 handler.error(XSLTErrorResources.ER_CHARS_NOT_ALLOWED, null, null);//"Characters are not allowed at this point in the document!",
210 * @param ch The whitespace characters.
212 * @param length The number of characters to use from the
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
DefaultHandlerTest.java 176 method = "characters",
181 h.characters("The quick brown fox".toCharArray(), 4, 11);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
GpxParser.java 127 * Processes new characters for the node content. The characters are simply stored,
131 public void characters(char[] ch, int start, int length) throws SAXException { method in class:GpxParser.GpxHandler
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
LayoutDeviceHandler.java 62 * on the endElement, by using the content found in characters().
113 public void characters(char[] ch, int start, int length) throws SAXException { method in class:LayoutDeviceHandler

Completed in 2474 milliseconds

1 2 3 4 5 6 7 8 91011>>