HomeSort by relevance Sort by last modified time
    Searched refs:notFound (Results 1 - 25 of 29) sorted by null

1 2

  /external/webkit/JavaScriptCore/wtf/
NotFound.h 31 const size_t notFound = static_cast<size_t>(-1);
35 using WTF::notFound;
HashMap.h 331 const_iterator notFound = b.end();
334 if (bPos == notFound || it->second != bPos->second)
  /external/webkit/WebKit/mac/Misc/
WebLocalizableStrings.mm 61 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);
  /libcore/luni/src/main/java/org/apache/harmony/security/fortress/
Engine.java 96 throw notFound(serviceName, algorithm);
102 throw notFound(serviceName, algorithm);
112 private NoSuchAlgorithmException notFound(String serviceName, String algorithm) throws NoSuchAlgorithmException {
135 throw notFound(serviceName, algorithm);
  /external/webkit/WebKit/android/wds/
DebugServer.h 56 if (i != notFound)
  /external/webkit/WebCore/wml/
WMLEventHandlingElement.cpp 64 ASSERT(m_doElements.find(doElement) == WTF::notFound);
74 if (position == WTF::notFound)
WMLTaskElement.cpp 79 ASSERT(m_variableSetterElements.find(element) == WTF::notFound);
86 ASSERT(position != WTF::notFound);
WMLGoElement.cpp 53 ASSERT(m_postfieldElements.find(postfield) == WTF::notFound);
60 ASSERT(position != WTF::notFound);
WMLPageState.cpp 168 if (index != WTF::notFound)
WMLSelectElement.cpp 437 if (indices.find(parsedValue) == notFound)
  /external/webkit/WebCore/html/
DataGridColumnList.cpp 83 if (index == notFound)
97 if (colIndex == notFound)
HTMLFormElement.cpp 527 ASSERT(imgElements.find(e) == notFound);
533 ASSERT(imgElements.find(e) != notFound);
  /external/webkit/JavaScriptCore/parser/
ParserArena.cpp 70 return m_refCountedObjects.find(object) != notFound;
  /external/webkit/WebKit/win/
WebLocalizableStrings.cpp 168 static CFStringRef notFound = CFSTR("localized string not found");
172 return notFound;
175 CFStringRef result = CFCopyLocalizedStringWithDefaultValue(keyString.get(), 0, bundle, notFound, 0);
177 ASSERT_WITH_MESSAGE(result != notFound, "could not find localizable string %s in bundle", key);
  /external/webkit/JavaScriptCore/runtime/
PropertySlot.h 28 #include <wtf/NotFound.h>
74 bool isCacheable() const { return m_offset != WTF::notFound; }
185 m_offset = WTF::notFound;
JSObject.cpp 133 if ((m_structure->get(propertyName, attributes, specificValue) != WTF::notFound) && attributes & ReadOnly)
205 if (m_structure->get(propertyName, attributes, specificValue) != WTF::notFound) {
418 if (m_structure->get(propertyName, attributes, specificValue) != WTF::notFound)
496 if (offset != WTF::notFound)
503 if (offset != WTF::notFound)
541 if (offset == WTF::notFound)
Structure.h 236 return WTF::notFound;
248 return WTF::notFound;
268 return WTF::notFound;
Structure.cpp 235 if (keyCount == notFound)
652 return notFound;
662 return notFound;
686 return notFound;
762 ASSERT(get(propertyName) == notFound);
867 return notFound;
882 return notFound;
    [all...]
JSObject.h 144 return offset != WTF::notFound ? getDirectOffset(offset) : JSValue();
150 return offset != WTF::notFound ? locationForOffset(offset) : 0;
157 return offset != WTF::notFound ? locationForOffset(offset) : 0;
438 if (offset != WTF::notFound) {
480 if (offset != WTF::notFound) {
  /external/webkit/WebKit/android/WebCoreSupport/
GeolocationPermissions.cpp 114 if (m_queuedOrigins.find(originString) == WTF::notFound) {
135 if (index == WTF::notFound)
222 if (index == WTF::notFound || !index)
  /cts/tests/tests/net/src/android/net/cts/
ListeningPortsTest.java 130 } catch (FileNotFoundException notFound) {
  /external/webkit/WebCore/dom/
EventTarget.cpp 171 if (entry->find(registeredListener) != notFound) // duplicate listener
192 if (index == notFound)
  /external/webkit/WebCore/loader/
ImageLoader.cpp 62 bool hasPendingEvents(ImageLoader* loader) { return m_dispatchSoonList.find(loader) != notFound; }
  /external/webkit/WebCore/page/mac/
FrameMac.mm 179 *resultDistanceFromStartOfCell = notFound;
196 *resultDistance = notFound;
  /external/webkit/WebKit/mac/WebView/
WebHTMLRepresentation.mm 352 if (distance == notFound)

Completed in 788 milliseconds

1 2