/external/chromium_org/chrome/common/ |
D | chrome_constants.cc | 54 const base::FilePath::CharType kBrowserProcessExecutableNameChromium[] = 56 const base::FilePath::CharType kBrowserProcessExecutableName[] = 58 const base::FilePath::CharType kHelperProcessExecutableNameChromium[] = 60 const base::FilePath::CharType kHelperProcessExecutableName[] = 63 const base::FilePath::CharType kBrowserProcessExecutableNameChromium[] = 65 const base::FilePath::CharType kBrowserProcessExecutableName[] = 67 const base::FilePath::CharType kHelperProcessExecutableNameChromium[] = 69 const base::FilePath::CharType kHelperProcessExecutableName[] = 73 const base::FilePath::CharType kBrowserProcessExecutableName[] = FPL("chrome"); 74 const base::FilePath::CharType kBrowserProcessExecutableNameChromium[] = [all …]
|
D | chrome_constants.h | 18 extern const base::FilePath::CharType kBrowserProcessExecutableName[]; 19 extern const base::FilePath::CharType kHelperProcessExecutableName[]; 20 extern const base::FilePath::CharType kBrowserProcessExecutablePath[]; 21 extern const base::FilePath::CharType kHelperProcessExecutablePath[]; 22 extern const base::FilePath::CharType kBrowserProcessExecutableNameChromium[]; 23 extern const base::FilePath::CharType kHelperProcessExecutableNameChromium[]; 24 extern const base::FilePath::CharType kBrowserProcessExecutablePathChromium[]; 25 extern const base::FilePath::CharType kHelperProcessExecutablePathChromium[]; 27 extern const base::FilePath::CharType kFrameworkName[]; 37 extern const base::FilePath::CharType* const kHelperFlavorSuffixes[]; [all …]
|
/external/chromium/chrome/common/ |
D | chrome_constants.h | 19 extern const FilePath::CharType kBrowserProcessExecutableName[]; 20 extern const FilePath::CharType kHelperProcessExecutableName[]; 21 extern const FilePath::CharType kBrowserProcessExecutablePath[]; 22 extern const FilePath::CharType kHelperProcessExecutablePath[]; 24 extern const FilePath::CharType kFrameworkName[]; 37 extern const FilePath::CharType kExtensionFileExtension[]; 38 extern const FilePath::CharType kExtensionKeyFileExtension[]; 41 extern const FilePath::CharType kArchivedHistoryFilename[]; 42 extern const FilePath::CharType kCacheDirname[]; 43 extern const FilePath::CharType kMediaCacheDirname[]; [all …]
|
D | chrome_constants.cc | 28 const FilePath::CharType kBrowserProcessExecutableName[] = FPL("chrome.exe"); 29 const FilePath::CharType kHelperProcessExecutableName[] = FPL("chrome.exe"); 31 const FilePath::CharType kBrowserProcessExecutableName[] = FPL("chrome"); 34 const FilePath::CharType kHelperProcessExecutableName[] = FPL("exe"); 36 const FilePath::CharType kBrowserProcessExecutableName[] = FPL(PRODUCT_STRING); 37 const FilePath::CharType kHelperProcessExecutableName[] = 41 const FilePath::CharType kBrowserProcessExecutablePath[] = FPL("chrome.exe"); 42 const FilePath::CharType kHelperProcessExecutablePath[] = FPL("chrome.exe"); 44 const FilePath::CharType kBrowserProcessExecutablePath[] = FPL("chrome"); 45 const FilePath::CharType kHelperProcessExecutablePath[] = FPL("chrome"); [all …]
|
/external/chromium_org/third_party/WebKit/Source/wtf/ |
D | ASCIICType.h | 46 template<typename CharType> inline bool isASCII(CharType c) in isASCII() 51 template<typename CharType> inline bool isASCIIAlpha(CharType c) in isASCIIAlpha() 56 template<typename CharType> inline bool isASCIIDigit(CharType c) in isASCIIDigit() 61 template<typename CharType> inline bool isASCIIAlphanumeric(CharType c) in isASCIIAlphanumeric() 66 template<typename CharType> inline bool isASCIIHexDigit(CharType c) in isASCIIHexDigit() 71 template<typename CharType> inline bool isASCIILower(CharType c) in isASCIILower() 76 template<typename CharType> inline bool isASCIIOctalDigit(CharType c) in isASCIIOctalDigit() 81 template<typename CharType> inline bool isASCIIPrintable(CharType c) in isASCIIPrintable() 99 template<typename CharType> inline bool isASCIISpace(CharType c) in isASCIISpace() 104 template<typename CharType> inline bool isASCIIUpper(CharType c) in isASCIIUpper() [all …]
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
D | ParsingUtilities.h | 34 template<typename CharType> 35 bool skipExactly(const CharType*& position, const CharType* end, CharType delimiter) in skipExactly() 44 template<typename CharType, bool characterPredicate(CharType)> 45 bool skipExactly(const CharType*& position, const CharType* end) in skipExactly() 54 template<typename CharType> 55 void skipUntil(const CharType*& position, const CharType* end, CharType delimiter) in skipUntil() 61 template<typename CharType, bool characterPredicate(CharType)> 62 void skipUntil(const CharType*& position, const CharType* end) in skipUntil() 68 template<typename CharType, bool characterPredicate(CharType)> 69 void skipWhile(const CharType*& position, const CharType* end) in skipWhile()
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | JSONParser.cpp | 62 template<typename CharType> 63 bool parseConstToken(const CharType* start, const CharType* end, const CharType** tokenEnd, const c… in parseConstToken() 72 template<typename CharType> 73 bool readInt(const CharType* start, const CharType* end, const CharType** tokenEnd, bool canHaveLea… in readInt() 91 template<typename CharType> 92 bool parseNumberToken(const CharType* start, const CharType* end, const CharType** tokenEnd) in parseNumberToken() 98 CharType c = *start; in parseNumberToken() 141 template<typename CharType> 142 bool readHexDigits(const CharType* start, const CharType* end, const CharType** tokenEnd, int digit… in readHexDigits() 147 CharType c = *start++; in readHexDigits() [all …]
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
D | HTMLSrcsetParser.cpp | 44 template<typename CharType> 45 inline bool isComma(CharType character) in isComma() 50 template<typename CharType> 51 static bool parseDescriptors(const CharType* descriptorsStart, const CharType* descriptorsEnd, floa… in parseDescriptors() 53 const CharType* position = descriptorsStart; in parseDescriptors() 58 skipWhile<CharType, isHTMLSpace<CharType> >(position, descriptorsEnd); in parseDescriptors() 59 const CharType* currentDescriptorStart = position; in parseDescriptors() 60 skipWhile<CharType, isNotHTMLSpace<CharType> >(position, descriptorsEnd); in parseDescriptors() 61 const CharType* currentDescriptorEnd = position; in parseDescriptors() 80 template<typename CharType> [all …]
|
D | HTMLParserIdioms.h | 66 template<typename CharType> 67 inline bool isHTMLSpace(CharType character) in isHTMLSpace() 82 template<typename CharType> 83 inline bool isHTMLSpaceOrComma(CharType character) in isHTMLSpaceOrComma() 85 return isHTMLSpace<CharType>(character) || character == ','; in isHTMLSpaceOrComma() 93 template<typename CharType> 94 inline bool isNotHTMLSpace(CharType character) in isNotHTMLSpace() 96 return !isHTMLSpace<CharType>(character); in isNotHTMLSpace()
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
D | SVGParserUtilities.h | 39 template <typename CharType> 40 bool parseSVGNumber(CharType* ptr, size_t length, double& number); 49 template <typename CharType> 50 bool parseFloatPoint(const CharType*& current, const CharType* end, FloatPoint&); 51 template <typename CharType> 52 bool parseFloatPoint2(const CharType*& current, const CharType* end, FloatPoint&, FloatPoint&); 53 template <typename CharType> 54 bool parseFloatPoint3(const CharType*& current, const CharType* end, FloatPoint&, FloatPoint&, Floa… 58 template <typename CharType> 59 inline bool isSVGSpace(CharType c) in isSVGSpace() [all …]
|
D | SVGParserUtilities.cpp | 46 template <typename CharType, typename FloatType> 47 static bool genericParseNumber(const CharType*& ptr, const CharType* end, FloatType& number, bool s… in genericParseNumber() 51 const CharType* start = ptr; in genericParseNumber() 73 const CharType* ptrStartIntPart = ptr; in genericParseNumber() 78 const CharType* ptrScanIntPart = ptr - 1; in genericParseNumber() 146 template <typename CharType> 147 bool parseSVGNumber(CharType* begin, size_t length, double& number) in parseSVGNumber() 149 const CharType* ptr = begin; in parseSVGNumber() 150 const CharType* end = ptr + length; in parseSVGNumber() 184 template <typename CharType> [all …]
|
D | SVGAngle.cpp | 73 template<typename CharType> 74 static SVGAngle::SVGAngleType stringToAngleType(const CharType*& ptr, const CharType* end) in stringToAngleType() 80 const CharType firstChar = *ptr; in stringToAngleType() 87 const CharType secondChar = *ptr; in stringToAngleType() 94 const CharType thirdChar = *ptr; in stringToAngleType() 105 const CharType fourthChar = *ptr; in stringToAngleType() 137 template<typename CharType> 140 const CharType* ptr = value.getCharacters<CharType>(); in parseValue() 141 const CharType* end = ptr + value.length(); in parseValue()
|
/external/chromium_org/chrome/browser/autofill/ |
D | form_structure_browsertest.cc | 25 const base::FilePath::CharType kTestName[] = FILE_PATH_LITERAL("heuristics"); 112 const base::FilePath::CharType kFileNamePattern[] = in IN_PROC_BROWSER_TEST_F() 120 const base::FilePath::CharType kFileNamePattern[] = in IN_PROC_BROWSER_TEST_F() 129 const base::FilePath::CharType kFileNamePattern[] = 138 const base::FilePath::CharType kFileNamePattern[] = 147 const base::FilePath::CharType kFileNamePattern[] = 156 const base::FilePath::CharType kFileNamePattern[] = 165 const base::FilePath::CharType kFileNamePattern[] = 174 const base::FilePath::CharType kFileNamePattern[] = 183 const base::FilePath::CharType kFileNamePattern[] = [all …]
|
/external/chromium_org/third_party/WebKit/Source/platform/text/ |
D | ParserUtilities.h | 29 template<typename CharType> 30 inline bool skipString(const CharType*& ptr, const CharType* end, const CharType* name, int length) in skipString() 34 if (memcmp(name, ptr, sizeof(CharType) * length)) in skipString() 52 template<typename CharType> 53 inline bool skipString(const CharType*& ptr, const CharType* end, const char* str) in skipString()
|
/external/chromium_org/chromeos/ |
D | chromeos_paths.cc | 14 const base::FilePath::CharType kDefaultAppOrderFileName[] = 21 const base::FilePath::CharType kDefaultUserPolicyKeysDir[] = 24 const base::FilePath::CharType kOwnerKeyFileName[] = 27 const base::FilePath::CharType kInstallAttributesFileName[] = 30 const base::FilePath::CharType kUptimeFileName[] = 33 const base::FilePath::CharType kUpdateRebootNeededUptimeFile[] = 36 const base::FilePath::CharType kDeviceLocalAccountExtensionDir[] = 39 const base::FilePath::CharType kDeviceLocalAccountExternalDataDir[] =
|
D | chromeos_constants.cc | 11 const base::FilePath::CharType kDriveCacheDirname[] = FPL("GCache"); 12 const base::FilePath::CharType kNssCertDbPath[] = FPL(".pki/nssdb/cert9.db"); 13 const base::FilePath::CharType kNssDirPath[] = FPL(".pki"); 14 const base::FilePath::CharType kNssKeyDbPath[] = FPL(".pki/nssdb/key4.db");
|
D | chromeos_constants.h | 15 CHROMEOS_EXPORT extern const base::FilePath::CharType kDriveCacheDirname[]; 16 CHROMEOS_EXPORT extern const base::FilePath::CharType kNssCertDbPath[]; 17 CHROMEOS_EXPORT extern const base::FilePath::CharType kNssDirPath[]; 18 CHROMEOS_EXPORT extern const base::FilePath::CharType kNssKeyDbPath[];
|
/external/chromium_org/third_party/WebKit/Source/wtf/text/ |
D | StringBuffer.h | 38 template <typename CharType> 46 CharType* characters; in StringBuffer() 64 CharType* characters; in resize() 69 CharType* characters; in resize() 77 …CharType* characters() { return length() ? const_cast<CharType*>(m_data->getCharacters<CharType>()… in characters() 79 …CharType& operator[](unsigned i) { ASSERT_WITH_SECURITY_IMPLICATION(i < length()); return characte…
|
/external/chromium_org/extensions/common/ |
D | constants.h | 16 extern const base::FilePath::CharType kManifestFilename[]; 19 extern const base::FilePath::CharType kLocaleFolder[]; 22 extern const base::FilePath::CharType kMessagesFilename[]; 25 extern const base::FilePath::CharType kPlatformSpecificFolder[]; 50 extern const base::FilePath::CharType kExtensionFileExtension[]; 53 extern const base::FilePath::CharType kExtensionKeyFileExtension[];
|
D | constants.cc | 13 const base::FilePath::CharType kManifestFilename[] = 15 const base::FilePath::CharType kLocaleFolder[] = 17 const base::FilePath::CharType kMessagesFilename[] = 19 const base::FilePath::CharType kPlatformSpecificFolder[] = 35 const base::FilePath::CharType kExtensionFileExtension[] = 37 const base::FilePath::CharType kExtensionKeyFileExtension[] =
|
/external/chromium_org/base/files/ |
D | file_path_constants.cc | 10 const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("\\/"); 12 const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("/"); 17 const FilePath::CharType FilePath::kCurrentDirectory[] = FILE_PATH_LITERAL("."); 18 const FilePath::CharType FilePath::kParentDirectory[] = FILE_PATH_LITERAL(".."); 20 const FilePath::CharType FilePath::kExtensionSeparator = FILE_PATH_LITERAL('.');
|
/external/chromium/chrome/browser/importer/ |
D | firefox_profile_lock.cc | 57 const FilePath::CharType* FirefoxProfileLock::kLockFileName = 59 const FilePath::CharType* FirefoxProfileLock::kOldLockFileName = 63 const FilePath::CharType* FirefoxProfileLock::kLockFileName = 65 const FilePath::CharType* FirefoxProfileLock::kOldLockFileName = 68 const FilePath::CharType* FirefoxProfileLock::kLockFileName =
|
/external/chromium_org/chrome/browser/importer/ |
D | firefox_profile_lock.cc | 57 const base::FilePath::CharType* FirefoxProfileLock::kLockFileName = 59 const base::FilePath::CharType* FirefoxProfileLock::kOldLockFileName = 63 const base::FilePath::CharType* FirefoxProfileLock::kLockFileName = 65 const base::FilePath::CharType* FirefoxProfileLock::kOldLockFileName = 68 const base::FilePath::CharType* FirefoxProfileLock::kLockFileName =
|
/external/chromium_org/remoting/host/ |
D | branding.cc | 19 const base::FilePath::CharType kConfigDir[] = 22 const base::FilePath::CharType kConfigDir[] = 26 const base::FilePath::CharType kConfigDir[] = 29 const base::FilePath::CharType kConfigDir[] =
|
/external/chromium/chrome/browser/ |
D | browsing_data_local_storage_helper_browsertest.cc | 27 const FilePath::CharType kTestFile0[] = 30 const FilePath::CharType kTestFile1[] = 33 const FilePath::CharType kTestFileInvalid[] = 37 const FilePath::CharType kTestFileExtension[] = FILE_PATH_LITERAL( 45 const FilePath::CharType* kFilesToCreate[] = { in CreateLocalStorageFilesForTest() 141 const FilePath::CharType file1[] = in IN_PROC_BROWSER_TEST_F() 143 const FilePath::CharType file2[] = in IN_PROC_BROWSER_TEST_F() 165 const FilePath::CharType file[] = in IN_PROC_BROWSER_TEST_F()
|