/external/v8/test/mjsunit/ |
cyrillic.js | 39 // Actually no characters are between the cases in Cyrillic. 103 // Test range that covers both greek and cyrillic characters.
|
/external/webkit/Source/WebCore/bindings/v8/ |
V8Binding.h | 159 return reinterpret_cast<const uint16_t*>(str.characters());
|
/external/webkit/Source/WebCore/dom/ |
Document.cpp | 244 // a) Name start characters must have one of the categories Ll, Lu, Lo, Lt, Nl. 245 // b) Name characters other than Name-start characters must have one of the categories Mc, Me, Mn, Lm, or Nd. 246 // c) Characters in the compatibility area (i.e. with character code greater than #xF900 and less than #xFFFE) are not allowed in XML names. 247 // 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. 248 // 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. 249 // f) Characters #x20DD-#x20E0 are excluded (in accordance with Unicode, section 5.14). 252 // i) Characters ':' and '_' are allowed as name-start characters 1223 const UChar* characters = title.characters(); local 3849 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/Source/WebCore/platform/graphics/ |
WidthIterator.cpp | 66 unsigned expansionOpportunityCount = Font::expansionOpportunityCount(m_run.characters(), m_end, m_run.ltr() ? LTR : RTL, isAfterExpansion);
|
/external/webkit/Source/WebCore/platform/graphics/mac/ |
SimpleFontDataMac.mm | 428 bool SimpleFontData::containsCharacters(const UChar* characters, int length) const 430 NSString *string = [[NSString alloc] initWithCharactersNoCopy:const_cast<unichar*>(characters) length:length freeWhenDone:NO];
|
/external/webkit/Source/WebCore/platform/network/ |
FormDataBuilder.cpp | 60 // FIXME: Is it correct to use percent escaping here? Other browsers do not encode these characters yet, 105 // The RFC 2046 spec says the alphanumeric characters plus the 106 // following characters are legal for boundaries: '()+_,-./:=? 107 // However the following characters, though legal, cause some sites 126 // Append 16 random 7bit ascii AlphaNumeric characters. 146 // FIXME: This loses data irreversibly if the input name includes characters you can't encode 166 // FIXME: This loses data irreversibly if the filename includes characters you can't encode 169 appendQuotedString(buffer, encoding.encode(filename.characters(), filename.length(), QuestionMarksForUnencodables)); 196 // Same safe characters as Netscape for compatibility.
|
/external/webkit/Source/WebCore/platform/text/ |
Base64.cpp | 169 // Valid data is (n * 4 + [0,2,3]) characters long. 209 return base64DecodeInternal<UChar>(in.characters(), in.length(), out, policy);
|
/external/webkit/Source/WebCore/platform/win/ |
FileSystemWin.cpp | 96 memcpy(buffer.data(), path.characters(), path.length() * sizeof(UChar)); 209 char tempFile[] = "XXXXXXXX.tmp"; // Use 8.3 style name (more characters aren't helpful due to 8.3 short file names) 214 // Limit to valid filesystem characters, also excluding others that could be problematic, like punctuation.
|
/external/webkit/Source/WebCore/rendering/ |
RenderEmbeddedObject.cpp | 201 run = TextRun(m_replacementText.characters(), m_replacementText.length());
|
/external/webkit/Source/WebCore/svg/ |
SVGAnimateMotionElement.cpp | 134 const UChar* cur = s.characters();
|
SVGAnimateTransformElement.cpp | 175 const UChar* ptr = parseString.characters();
|
/external/webkit/Source/WebCore/xml/ |
XMLHttpRequest.cpp | 507 m_requestEntityBody = FormData::create(encoding.encode(body.characters(), body.length(), EntitiesForUnencodables)); 534 m_requestEntityBody = FormData::create(UTF8Encoding().encode(body.characters(), body.length(), EntitiesForUnencodables)); 876 stringBuilder.append(it->first.characters(), it->first.length()); 879 stringBuilder.append(it->second.characters(), it->second.length()); [all...] |
XSLStyleSheetLibxslt.cpp | 151 const char* buffer = reinterpret_cast<const char*>(string.characters());
|
/external/webkit/Source/WebKit/chromium/src/ |
DebuggerAgentManager.cpp | 277 v8::Debug::SendCommand(reinterpret_cast<const uint16_t*>(cmd.characters()), cmd.length(), data);
|
/external/webkit/Source/WebKit/chromium/src/mac/ |
WebInputEventFactory.mm | 127 // There are several kinds of characters for which we produce key code from char code: 134 // Cmd switches Roman letters for Dvorak-QWERTY layout, so try modified characters first. 135 NSString* s = [event characters]; 156 return [event characters];
|
/external/webkit/Source/WebKit/win/ |
WebDataSource.cpp | 257 BString urlString((LPOLESTR)unreachableURL.string().characters(), unreachableURL.string().length());
|
WebElementPropertyBag.cpp | 104 V_BSTR(pVar) = SysAllocStringLen(string.characters(), string.length());
|
/external/webkit/Source/WebKit2/Platform/CoreIPC/ |
ArgumentCoders.h | 251 encoder->encodeBytes(reinterpret_cast<const uint8_t*>(string.characters()), length * sizeof(UChar));
|
/external/webkit/Source/WebKit2/WebProcess/Downloads/cfnet/ |
DownloadCFNet.cpp | 134 RetainPtr<CFStringRef> bundlePath(AdoptCF, CFStringCreateWithCharactersNoCopy(0, reinterpret_cast<const UniChar*>(m_bundlePath.characters()), m_bundlePath.length(), kCFAllocatorNull));
|
/external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/ |
main.cpp | 576 if (obj->eventLogging && event->data.key.characters) 577 pluginLog(instance, "keyDown '%c'", CFStringGetCharacterAtIndex(reinterpret_cast<CFStringRef>(event->data.key.characters), 0)); 583 if (obj->eventLogging && event->data.key.characters) { 584 pluginLog(instance, "keyUp '%c'", CFStringGetCharacterAtIndex(reinterpret_cast<CFStringRef>(event->data.key.characters), 0));
|
/libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/ |
XMLReaderAdapterTest.java | 268 adapter.characters(ch, 2, 5); 274 assertEquals("characters", logger.getMethod());
|
/ndk/sources/host-tools/nawk-20071023/ |
FIXES | 131 line state ^ for RE's in the set of valid characters; this led to a 155 patterns of characters. in any case, the notations [:lower:], etc., 714 changed NCHARS to 256 to handle 8-bit characters in strings [all...] |
/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/device_validator/dvlib/src/com/android/dvlib/ |
DeviceSchema.java | 292 public void characters(char[] ch, int start, int length) { method in class:DeviceSchema.ValidationHandler
|