HomeSort by relevance Sort by last modified time
    Searched refs:validChars (Results 1 - 4 of 4) sorted by null

  /external/webkit/WebCore/platform/win/
FileSystemWin.cpp 212 const char validChars[] = "0123456789abcdefghijklmnopqrstuvwxyz";
214 tempFile[i] = validChars[tempFile[i] % (sizeof(validChars) - 1)];
  /external/webkit/WebCore/platform/wince/
FileSystemWince.cpp 194 const char validChars[] = "0123456789abcdefghijklmnopqrstuvwxyz";
196 tempFile[i] = validChars[tempFile[i] % (sizeof(validChars) - 1)];
  /external/webkit/WebCore/dom/
DOMImplementation.cpp 289 static const char* const validChars = "[0-9a-zA-Z_\\-+~!$\\^{}|.%'`#&*]"; // per RFCs: 3023, 2045
290 DEFINE_STATIC_LOCAL(RegularExpression, xmlTypeRegExp, (String("^") + validChars + "+/" + validChars + "+\\+xml$", TextCaseSensitive));
  /frameworks/base/tools/aapt/
Resource.cpp 384 const char* ns, const char* attr, const char* validChars, bool required)
440 if (validChars) {
443 const char* p = validChars;
    [all...]

Completed in 97 milliseconds