Searched refs:defaultValue (Results 51 - 75 of 211) sorted by relevance

123456789

/macosx-10.9.5/WebCore-7537.78.1/html/
H A DRangeInputType.cpp275 Decimal RangeInputType::parseToNumber(const String& src, const Decimal& defaultValue) const
277 return parseToDecimalForNumberType(src, defaultValue);
318 return serializeForNumberType(createStepRange(RejectAny).defaultValue());
324 const Decimal proposedNumericValue = parseToNumber(proposedValue, stepRange.defaultValue());
H A DHTMLTextAreaElement.cpp137 setNonDirtyValue(defaultValue());
233 setNonDirtyValue(defaultValue());
401 String HTMLTextAreaElement::defaultValue() const function in class:WebCore::HTMLTextAreaElement
414 void HTMLTextAreaElement::setDefaultValue(const String& defaultValue) argument
429 String value = defaultValue;
H A DHTMLTextAreaElement.h45 String defaultValue() const;
H A DInputType.h143 virtual String defaultValue() const; // Checked after even fallbackValue, only when the valueWithDefault function is called.
288 // succeeds; Returns defaultValue otherwise. This function can
289 // return NaN or Infinity only if defaultValue is NaN or Infinity.
290 virtual Decimal parseToNumber(const String&, const Decimal& defaultValue) const;
H A DNumberInputType.cpp218 Decimal NumberInputType::parseToNumber(const String& src, const Decimal& defaultValue) const
220 return parseToDecimalForNumberType(src, defaultValue);
/macosx-10.9.5/WebKit-7537.78.2/efl/WebCoreSupport/
H A DEditorClientEfl.cpp195 bool EditorClientEfl::canCopyCut(Frame*, bool defaultValue) const
197 return defaultValue;
200 bool EditorClientEfl::canPaste(Frame*, bool defaultValue) const
202 return defaultValue;
/macosx-10.9.5/WebKit-7537.78.2/wince/WebCoreSupport/
H A DEditorClientWinCE.cpp171 bool EditorClientWinCE::canCopyCut(WebCore::Frame*, bool defaultValue) const
173 return defaultValue;
176 bool EditorClientWinCE::canPaste(WebCore::Frame*, bool defaultValue) const
178 return defaultValue;
H A DChromeClientWinCE.cpp202 bool ChromeClientWinCE::runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result) argument
204 return m_webView->runJavaScriptPrompt(message, defaultValue, result);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/qt/
H A DQtDialogRunner.h47 bool initForPrompt(const QString& message, const QString& defaultValue);
/macosx-10.9.5/ICU-511.35/icuSources/tools/makeconv/
H A Dgencnvex.c406 * then defaultValue=compute the mapping result for this whole sequence
407 * else defaultValue=0
414 uint32_t defaultValue) {
469 *section++=((uint32_t)count<<UCNV_EXT_TO_U_BYTE_SHIFT)|defaultValue;
511 defaultValue=0;
525 defaultValue=getToUnicodeValue(extData, table, m);
530 section[j]|=defaultValue;
536 if(!generateToUTable(extData, table, subStart, subLimit, unitIndex+1, defaultValue)) {
713 uint32_t defaultValue) {
755 *sectionValues++=defaultValue;
412 generateToUTable(CnvExtData *extData, UCMTable *table, int32_t start, int32_t limit, int32_t unitIndex, uint32_t defaultValue) argument
711 generateFromUTable(CnvExtData *extData, UCMTable *table, int32_t start, int32_t limit, int32_t unitIndex, uint32_t defaultValue) argument
[all...]
/macosx-10.9.5/securityd-55199.3/src/
H A DAuthorizationRule.h121 static bool getBool(CFDictionaryRef config, CFStringRef key, bool required, bool defaultValue);
122 static double getDouble(CFDictionaryRef config, CFStringRef key, bool required, double defaultValue);
123 static string getString(CFDictionaryRef config, CFStringRef key, bool required, const char *defaultValue);
/macosx-10.9.5/configd-596.15/scutil.tproj/
H A Dscutil.c118 _copyStringFromSTDIN(CFStringRef prompt, CFStringRef defaultValue) argument
130 if (defaultValue != NULL) {
131 SCPrint(TRUE, stdout, CFSTR("%@ [%@]: "), prompt, defaultValue);
154 if (is_user_prompt && defaultValue != NULL && modlen == 0) {
155 CFRetain(defaultValue);
156 return defaultValue;
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGCommon.h82 static Node* defaultValue() { return 0; } function in struct:JSC::DFG::NodePointerTraits
/macosx-10.9.5/WebCore-7537.78.1/bridge/jsc/
H A DBridgeJSC.h99 virtual JSValue defaultValue(ExecState*, PreferredPrimitiveType) const = 0;
/macosx-10.9.5/WebCore-7537.78.1/bridge/qt/
H A Dqt_instance.h78 virtual JSValue defaultValue(ExecState*, PreferredPrimitiveType) const;
/macosx-10.9.5/WebKit-7537.78.2/blackberry/Api/
H A DDumpRenderTreeClient.h67 virtual String runJavaScriptPrompt(const String& message, const String& defaultValue) = 0;
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebCoreSupport/
H A DEditorClientBlackBerry.cpp307 bool EditorClientBlackBerry::canCopyCut(Frame*, bool defaultValue) const
309 return defaultValue;
312 bool EditorClientBlackBerry::canPaste(Frame*, bool defaultValue) const
314 return defaultValue;
/macosx-10.9.5/WebKit-7537.78.2/gtk/WebCoreSupport/
H A DEditorClientGtk.cpp305 bool EditorClient::canCopyCut(WebCore::Frame*, bool defaultValue) const
307 return defaultValue;
310 bool EditorClient::canPaste(WebCore::Frame*, bool defaultValue) const
312 return defaultValue;
/macosx-10.9.5/WebKit-7537.78.2/mac/Plugins/Hosted/
H A DProxyInstance.h78 virtual JSC::JSValue defaultValue(JSC::ExecState*, JSC::PreferredPrimitiveType) const;
/macosx-10.9.5/WebKit-7537.78.2/qt/WebCoreSupport/
H A DEditorClientQt.cpp268 bool EditorClientQt::canCopyCut(WebCore::Frame*, bool defaultValue) const
270 return defaultValue;
273 bool EditorClientQt::canPaste(WebCore::Frame*, bool defaultValue) const
275 return defaultValue;
/macosx-10.9.5/WebKit-7537.78.2/wince/
H A DWebView.h77 bool runJavaScriptPrompt(const WTF::String& message, const WTF::String& defaultValue, WTF::String& result);
/macosx-10.9.5/WebKit-7537.78.2/qt/Api/
H A Dqwebsettings.cpp608 int defaultValue = 0; local
611 defaultValue = global->fontSizes.value(type);
613 return d->fontSizes.value(type, defaultValue);
977 QString defaultValue; local
980 defaultValue = global->fontFamilies.value(which);
982 return d->fontFamilies.value(which, defaultValue);
1018 bool defaultValue = false; local
1021 defaultValue = global->attributes.value(attr);
1023 return d->attributes.value(attr, defaultValue);
/macosx-10.9.5/WebKit-7537.78.2/mac/WebCoreSupport/
H A DWebEditorClient.h115 virtual bool canCopyCut(WebCore::Frame*, bool defaultValue) const OVERRIDE;
116 virtual bool canPaste(WebCore::Frame*, bool defaultValue) const OVERRIDE;
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/
H A DWebKitUIClient.cpp60 static WKStringRef runJavaScriptPrompt(WKPageRef page, WKStringRef message, WKStringRef defaultValue, WKFrameRef, const void* clientInfo) argument
63 toImpl(defaultValue)->string().utf8());
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/InjectedBundle/
H A DInjectedBundlePageUIClient.cpp64 void InjectedBundlePageUIClient::willRunJavaScriptPrompt(WebPage* page, const String& message, const String& defaultValue, WebFrame* frame) argument
67 m_client.willRunJavaScriptPrompt(toAPI(page), toAPI(message.impl()), toAPI(defaultValue.impl()), toAPI(frame), m_client.clientInfo);

Completed in 257 milliseconds

123456789