HomeSort by relevance Sort by last modified time
    Searched refs:defaultValue (Results 226 - 250 of 461) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/services/java/com/android/server/pm/
UserManagerService.java 795 private int readIntAttribute(XmlPullParser parser, String attr, int defaultValue) {
797 if (valueString == null) return defaultValue;
801 return defaultValue;
805 private long readLongAttribute(XmlPullParser parser, String attr, long defaultValue) {
807 if (valueString == null) return defaultValue;
811 return defaultValue;
    [all...]
  /prebuilts/misc/common/commons-cli/
commons-cli-1.2.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.p2.garbagecollector_1.0.100.v20100503.jar 
org.eclipse.equinox.security_1.0.200.v20100503.jar 
  /external/icu4c/i18n/unicode/
calendar.h     [all...]
  /external/webkit/Source/WebCore/page/
Chrome.cpp 313 bool Chrome::runJavaScriptPrompt(Frame* frame, const String& prompt, const String& defaultValue, String& result)
322 bool ok = m_client->runJavaScriptPrompt(frame, frame->displayStringModifiedByEncoding(prompt), frame->displayStringModifiedByEncoding(defaultValue), result);
ChromeClient.h 130 virtual bool runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result) = 0;
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
ChromeClientEfl.cpp 286 bool ChromeClientEfl::runJavaScriptPrompt(Frame* frame, const String& message, const String& defaultValue, String& result)
289 ewk_view_run_javascript_prompt(m_view, kit(frame), message.utf8().data(), defaultValue.utf8().data(), &value);
  /external/webkit/Source/WebKit2/UIProcess/
WebUIClient.cpp 127 String WebUIClient::runJavaScriptPrompt(WebPageProxy* page, const String& message, const String& defaultValue, WebFrameProxy* frame)
132 WebString* string = toImpl(m_client.runJavaScriptPrompt(toAPI(page), toAPI(message.impl()), toAPI(defaultValue.impl()), toAPI(frame), m_client.clientInfo));
  /libcore/luni/src/main/java/java/util/
Properties.java 172 * @param defaultValue
176 public String getProperty(String name, String defaultValue) {
183 return defaultValue;
  /packages/apps/Calendar/src/com/android/calendar/
Utils.java 322 public static String[] getSharedPreference(Context context, String key, String[] defaultValue) {
329 return defaultValue;
332 public static String getSharedPreference(Context context, String key, String defaultValue) {
334 return prefs.getString(key, defaultValue);
337 public static int getSharedPreference(Context context, String key, int defaultValue) {
339 return prefs.getInt(key, defaultValue);
342 public static boolean getSharedPreference(Context context, String key, boolean defaultValue) {
344 return prefs.getBoolean(key, defaultValue);
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
ValuesDelta.java 125 public Integer getAsInteger(String key, Integer defaultValue) {
131 return defaultValue;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
CallLogProvider.java 180 * @param defaultValue A default value to return if the query parameter does not exist.
185 private int getIntParam(Uri uri, String key, int defaultValue) {
188 return defaultValue;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/builders/
BaseBuilder.java 295 * @param defaultValue The default value to return if the property was not found.
298 protected boolean loadProjectBooleanProperty(String propertyName, boolean defaultValue) {
300 return ProjectHelper.loadBooleanProperty(project, propertyName, defaultValue);
368 int severity = marker.getAttribute(IMarker.SEVERITY, -1 /*defaultValue*/);
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
DefaultDataContext.java 364 public String getValue(String path, String defaultValue) {
  /external/webkit/Source/WebCore/html/
HTMLInputElement.h 162 String defaultValue() const;
  /external/webkit/Source/WebKit/chromium/src/
ChromeClientImpl.h 101 const WTF::String& defaultValue, WTF::String& result);
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
ChromeClientHaiku.cpp 239 bool ChromeClientHaiku::runJavaScriptPrompt(Frame*, const String& message, const String& defaultValue, String& result)
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebChromeClient.h 88 virtual bool runJavaScriptPrompt(WebCore::Frame*, const WTF::String& message, const WTF::String& defaultValue, WTF::String& result);
  /external/webkit/Source/WebKit/qt/Api/
qwebelement.cpp 401 exist, \a defaultValue is returned.
405 QString QWebElement::attribute(const QString &name, const QString &defaultValue) const
412 return defaultValue;
417 attribute does not exist, \a defaultValue is returned.
421 QString QWebElement::attributeNS(const QString &namespaceUri, const QString &name, const QString &defaultValue) const
428 return defaultValue;
    [all...]
  /external/webkit/Source/WebKit/win/Interfaces/
DOMHTML.idl 601 - (NSString *)defaultValue;
603 HRESULT defaultValue([out, retval] BSTR* result);
606 - (void)setDefaultValue:(NSString *)defaultValue;
823 - (NSString *)defaultValue;
825 HRESULT defaultValue([out, retval] BSTR* result);
828 - (void)setDefaultValue:(NSString *)defaultValue;
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebChromeClient.h 104 virtual bool runJavaScriptPrompt(WebCore::Frame*, const String& message, const String& defaultValue, String& result);
  /frameworks/base/core/java/android/preference/
MultiCheckPreference.java 268 protected void onSetInitialValue(boolean restoreValue, Object defaultValue) {
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
ReliabilityTestActivity.java 260 public boolean onJsPrompt(WebView view, String url, String message, String defaultValue,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseViewRule.java 337 private String getValue(String valueId, String defaultValue) {
339 if (defaultValue == null) {
340 defaultValue = "";
344 defaultValue, null);
    [all...]

Completed in 1342 milliseconds

1 2 3 4 5 6 7 8 91011>>