Searched refs:defaultValue (Results 1 - 25 of 174) sorted by relevance

1234567

/macosx-10.10/WebCore-7600.1.25/html/
H A DResetInputType.cpp61 String ResetInputType::defaultValue() const function in class:WebCore::ResetInputType
H A DResetInputType.h46 virtual String defaultValue() const override;
H A DSubmitInputType.cpp78 String SubmitInputType::defaultValue() const function in class:WebCore::SubmitInputType
H A DSubmitInputType.h48 virtual String defaultValue() const override;
H A DHTMLOutputElement.idl31 [TreatNullAs=NullString] attribute DOMString defaultValue;
H A DHTMLOutputElement.h47 String defaultValue() const;
H A DStepRange.h66 Decimal defaultValue() const function in struct:WebCore::StepRange::StepDescription
88 Decimal defaultValue() const function in class:WebCore::StepRange
/macosx-10.10/IOHIDFamily-606.1.7/IOHIDLib/
H A DIOHIDTransactionElement.c37 IOHIDValueRef defaultValue; member in struct:__IOHIDTransactionElement
83 if (element->defaultValue) CFRelease(element->defaultValue);
114 if (element->defaultValue) CFRelease(element->defaultValue);
116 element->defaultValue = value ? (IOHIDValueRef)CFRetain(value) : NULL;
121 return element->defaultValue;
/macosx-10.10/WebCore-7600.1.25/Modules/webaudio/
H A DAudioParam.h50 static PassRefPtr<AudioParam> create(AudioContext* context, const String& name, double defaultValue, double minValue, double maxValue, unsigned units = 0) argument
52 return adoptRef(new AudioParam(context, name, defaultValue, minValue, maxValue, units));
71 float defaultValue() const { return static_cast<float>(m_defaultValue); } function in class:WebCore::AudioParam
106 AudioParam(AudioContext* context, const String& name, double defaultValue, double minValue, double maxValue, unsigned units = 0) argument
109 , m_value(defaultValue)
110 , m_defaultValue(defaultValue)
114 , m_smoothedValue(defaultValue)
H A DAudioParamTimeline.h55 // otherwise defaultValue is returned.
56 float valueForContextTime(AudioContext*, float defaultValue, bool& hasValue);
59 // and returns the last parameter value calculated for "values" or the defaultValue if none were calculated.
63 float valuesForTimeRange(double startTime, double endTime, float defaultValue, float* values, unsigned numberOfValues, double sampleRate, double controlRate);
106 float valuesForTimeRangeImpl(double startTime, double endTime, float defaultValue, float* values, unsigned numberOfValues, double sampleRate, double controlRate);
H A DAudioParamTimeline.cpp114 float AudioParamTimeline::valueForContextTime(AudioContext* context, float defaultValue, bool& hasValue) argument
122 return defaultValue;
132 value = valuesForTimeRange(startTime, endTime, defaultValue, &value, 1, sampleRate, controlRate);
138 float AudioParamTimeline::valuesForTimeRange(double startTime, double endTime, float defaultValue, float* values, unsigned numberOfValues, double sampleRate, double controlRate) argument
145 values[i] = defaultValue;
147 return defaultValue;
150 float value = valuesForTimeRangeImpl(startTime, endTime, defaultValue, values, numberOfValues, sampleRate, controlRate);
155 float AudioParamTimeline::valuesForTimeRangeImpl(double startTime, double endTime, float defaultValue, float* values, unsigned numberOfValues, double sampleRate, double controlRate) argument
159 return defaultValue;
164 values[i] = defaultValue;
[all...]
H A DAudioParam.idl35 readonly attribute unrestricted float defaultValue;
/macosx-10.10/WebCore-7600.1.25/css/
H A DViewportStyleResolver.cpp101 float defaultValue = ViewportArguments::ValueAuto; local
107 defaultValue = 1;
111 return defaultValue;
144 return defaultValue;
154 return defaultValue;
158 return defaultValue;
H A DSourceSizeList.cpp67 static unsigned defaultValue(RenderStyle& style, RenderView* view) function in namespace:WebCore
92 return defaultValue(view->style(), view);
103 return defaultValue(style, view);
/macosx-10.10/JavaScriptCore-7600.1.17/bytecode/
H A DOperands.h42 static T defaultValue() { return T(); } function in struct:JSC::OperandValueTraits
57 m_arguments.fill(Traits::defaultValue(), numArguments);
58 m_locals.fill(Traits::defaultValue(), numLocals);
64 m_arguments.fill(Traits::defaultValue(), other.numberOfArguments());
65 m_locals.fill(Traits::defaultValue(), other.numberOfLocals());
107 m_locals[i] = Traits::defaultValue();
120 return Traits::defaultValue();
126 ASSERT(m_arguments[idx] == Traits::defaultValue());
132 ASSERT(idx >= m_locals.size() || m_locals[idx] == Traits::defaultValue());
243 fill(Traits::defaultValue());
[all...]
/macosx-10.10/WebCore-7600.1.25/page/
H A DWindowFeatures.h86 static bool boolFeature(const DialogFeaturesMap&, const char* key, bool defaultValue = false);
87 static float floatFeature(const DialogFeaturesMap&, const char* key, float min, float max, float defaultValue);
H A DWindowFeatures.cpp211 bool WindowFeatures::boolFeature(const DialogFeaturesMap& features, const char* key, bool defaultValue) argument
215 return defaultValue;
220 float WindowFeatures::floatFeature(const DialogFeaturesMap& features, const char* key, float min, float max, float defaultValue) argument
224 return defaultValue;
230 return defaultValue;
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Models/
H A DSetting.js32 WebInspector.Setting = function(name, defaultValue)
36 this._defaultValue = defaultValue;
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/efl/
H A Dewk_window_features_private.h72 static bool getWindowFeatureBoolValue(WKDictionaryRef windowFeatures, const char* featureName, bool defaultValue);
73 static double getWindowFeatureDoubleValue(WKDictionaryRef windowFeatures, const char* featureName, double defaultValue);
H A Dewk_window_features.cpp63 bool EwkWindowFeatures::getWindowFeatureBoolValue(WKDictionaryRef windowFeatures, const char* featureName, bool defaultValue) argument
67 return value ? WKBooleanGetValue(value) : defaultValue;
70 double EwkWindowFeatures::getWindowFeatureDoubleValue(WKDictionaryRef windowFeatures, const char* featureName, double defaultValue) argument
74 return value ? WKDoubleGetValue(value) : defaultValue;
/macosx-10.10/Security-57031.1.35/Security/authd/
H A Dauthutilities.c105 _copy_cf_string(CFTypeRef str, const char * defaultValue) argument
122 if (result == NULL && defaultValue) {
123 size_t len = strlen(defaultValue);
127 strlcpy(result, defaultValue, len);
134 _get_cf_int(CFTypeRef num, int64_t defaultValue) argument
136 int64_t result = defaultValue;
141 result = defaultValue;
149 _get_cf_bool(CFTypeRef value, bool defaultValue) argument
151 bool result = defaultValue;
/macosx-10.10/Security-57031.1.35/securityd/src/
H A Dtokencache.cpp68 static unsigned long getFile(const string &path, unsigned long defaultValue) argument
79 return defaultValue;
82 static string getFile(const string &path, const string &defaultValue) argument
92 return defaultValue;
/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGStyleElement.cpp67 DEPRECATED_DEFINE_STATIC_LOCAL(const AtomicString, defaultValue, ("text/css", AtomicString::ConstructFromLiteral));
69 return n.isNull() ? defaultValue : n;
79 DEPRECATED_DEFINE_STATIC_LOCAL(const AtomicString, defaultValue, ("all", AtomicString::ConstructFromLiteral));
81 return n.isNull() ? defaultValue : n;
/macosx-10.10/cddafs-253/Classes/
H A DTBundle.h77 CFStringRef defaultValue,
/macosx-10.10/configd-699.1.5/scutil.tproj/
H A Dscutil.h69 CFStringRef defaultValue);

Completed in 114 milliseconds

1234567