Searched refs:notFound (Results 1 - 25 of 98) sorted by relevance

1234

/external/webkit/Source/JavaScriptCore/wtf/
H A DNotFound.h31 const size_t notFound = static_cast<size_t>(-1); member in namespace:WTF
35 using WTF::notFound;
/external/webkit/Source/WebCore/platform/
H A DContentType.cpp45 if (semi != notFound) {
47 if (start != notFound) {
49 if (start != notFound) {
52 if (quote != notFound && end != notFound)
56 if (end == notFound)
73 if (semi != notFound)
H A DLinkHash.cpp37 return notFound;
43 return notFound;
49 return notFound;
55 return notFound;
61 return notFound;
67 return notFound;
105 size_t previousSlash = slash ? reverseFind(path.data(), path.size(), '/', slash - 1) : notFound;
107 if (previousSlash == notFound || (previousSlash > 3 && path[previousSlash - 2] == ':' && path[previousSlash - 1] == '/')) {
116 } while ((slash = findSlashDotDotSlash(path.data(), path.size(), slash)) != notFound);
123 if (!refPos || refPos == notFound)
[all...]
/external/webkit/Source/WebCore/platform/mac/
H A DLocalizedStringsMac.mm43 NSString *notFound = @"localized string not found";
44 NSString *result = [bundle localizedStringForKey:(NSString *)keyString.get() value:notFound table:nil];
46 ASSERT_WITH_MESSAGE(result != notFound, "could not find localizable string %s in bundle", key);
/external/webkit/Source/WebKit/mac/Misc/
H A DWebLocalizableStrings.mm61 NSString *notFound = @"localized string not found";
63 NSString *result = [bundle localizedStringForKey:(NSString *)keyString value:notFound table:nil];
65 ASSERT_WITH_MESSAGE(result != notFound, "could not find localizable string %s in bundle", key);
/external/webkit/Source/WebCore/html/parser/
H A DHTMLFormattingElementList.cpp62 if (index != notFound) {
72 ASSERT(index != notFound);
99 if (index != notFound)
H A DHTMLMetaCharsetParser.cpp64 if (pos == notFound)
H A DHTMLParserIdioms.cpp113 if (eIndex == notFound)
117 if (dotIndex != notFound) {
118 if (eIndex == notFound)
125 if (eIndex != notFound) {
/external/webkit/Source/WebCore/platform/win/
H A DLocalizedStringsWin.cpp78 static CFStringRef notFound = CFSTR("localized string not found");
81 RetainPtr<CFStringRef> result(AdoptCF, CFCopyLocalizedStringWithDefaultValue(keyString.get(), 0, webKitBundle(), notFound, 0));
82 ASSERT_WITH_MESSAGE(result.get() != notFound, "could not find localizable string %s in bundle", key);
/external/webkit/Source/WebCore/storage/
H A DIDBPendingTransactionMonitor.cpp49 if (pos == notFound)
/external/webkit/Source/WebCore/wml/
H A DWMLEventHandlingElement.cpp64 ASSERT(m_doElements.find(doElement) == WTF::notFound);
74 if (position == WTF::notFound)
H A DWMLTaskElement.cpp79 ASSERT(m_variableSetterElements.find(element) == WTF::notFound);
86 ASSERT(position != WTF::notFound);
/external/webkit/Source/JavaScriptCore/wtf/text/
H A DStringImpl.cpp535 return notFound;
549 return notFound;
552 return notFound;
572 return notFound;
584 return notFound;
594 return notFound;
597 return notFound;
607 return notFound;
617 return notFound;
628 return notFound;
[all...]
H A DWTFString.h165 { return m_impl ? m_impl->find(c, start) : notFound; }
167 { return m_impl ? m_impl->find(str.impl(), start) : notFound; }
169 { return m_impl ? m_impl->find(matchFunction, start) : notFound; }
171 { return m_impl ? m_impl->find(str, start) : notFound; }
175 { return m_impl ? m_impl->reverseFind(c, start) : notFound; }
177 { return m_impl ? m_impl->reverseFind(str.impl(), start) : notFound; }
181 { return m_impl ? m_impl->findIgnoringCase(str, start) : notFound; }
183 { return m_impl ? m_impl->findIgnoringCase(str.impl(), start) : notFound; }
185 { return m_impl ? m_impl->reverseFindIgnoringCase(str.impl(), start) : notFound; }
199 bool contains(UChar c) const { return find(c) != notFound; }
[all...]
/external/webkit/Source/WebCore/svg/
H A DSVGURIReference.cpp52 if (url.find('#') != notFound) { // format is #target
/external/webkit/Source/WebKit/android/wds/
H A DDebugServer.h58 if (i != notFound)
/external/webkit/Source/WebKit/chromium/tests/
H A DArenaTestHelpers.h56 ASSERT_NE(slot, notFound);
/external/webkit/Source/WebKit2/Shared/Plugins/Netscape/
H A DNetscapePluginModule.cpp54 ASSERT(initializedNetscapePluginModules().find(this) == notFound);
131 ASSERT(pluginModuleIndex != notFound);
179 ASSERT(initializedNetscapePluginModules().find(this) != notFound);
190 ASSERT(initializedNetscapePluginModules().find(this) == notFound);
/external/webkit/Tools/DumpRenderTree/chromium/
H A DTask.cpp47 if (index != notFound)
/external/webkit/Source/WebCore/html/
H A DDataGridColumnList.cpp83 if (index == notFound)
97 if (colIndex == notFound)
/external/webkit/Source/JavaScriptCore/runtime/
H A DUString.h98 { return m_impl ? m_impl->find(c, start) : notFound; }
100 { return m_impl ? m_impl->find(str.impl(), start) : notFound; }
102 { return m_impl ? m_impl->find(str, start) : notFound; }
106 { return m_impl ? m_impl->reverseFind(c, start) : notFound; }
108 { return m_impl ? m_impl->reverseFind(str.impl(), start) : notFound; }
/external/webkit/Source/WebCore/platform/wince/
H A DFileSystemWinCE.cpp47 if (positionSlash == notFound)
50 if (positionBackslash == notFound)
156 if (lastDivPos != notFound) {
177 if (pos == notFound)
185 if (pos == notFound)
/external/webkit/Source/WebCore/page/
H A DUserContentURLPattern.cpp67 if (schemeEndPos == notFound)
82 if (hostEndPos == notFound)
99 if (m_host.find("*") != notFound)
H A DWindowFeatures.cpp248 if (separatorPosition != notFound && colonPosition != notFound)
250 if (separatorPosition == notFound)
257 if (separatorPosition != notFound) {
/external/webkit/Source/JavaScriptCore/parser/
H A DParserArena.cpp71 return m_refCountedObjects.find(object) != notFound;

Completed in 367 milliseconds

1234