HomeSort by relevance Sort by last modified time
    Searched full:isdefault (Results 1 - 25 of 176) sorted by null

1 2 3 4 5 6 7 8

  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
ReplyFromAccount.java 42 private static final String IS_DEFAULT = "isDefault";
50 public boolean isDefault;
54 String replyTo, boolean isDefault, boolean isCustom) {
60 this.isDefault = isDefault;
71 json.put(IS_DEFAULT, isDefault);
86 boolean isDefault = json.getBoolean(IS_DEFAULT);
89 replyTo, isDefault, isCustomFrom);
  /external/chromium_org/third_party/WebKit/Source/platform/speech/
PlatformSpeechSynthesisVoice.cpp 31 PassRefPtr<PlatformSpeechSynthesisVoice> PlatformSpeechSynthesisVoice::create(const String& voiceURI, const String& name, const String& lang, bool localService, bool isDefault)
33 return adoptRef(new PlatformSpeechSynthesisVoice(voiceURI, name, lang, localService, isDefault));
41 PlatformSpeechSynthesisVoice::PlatformSpeechSynthesisVoice(const String& voiceURI, const String& name, const String& lang, bool localService, bool isDefault)
46 , m_default(isDefault)
PlatformSpeechSynthesisVoice.h 38 static PassRefPtr<PlatformSpeechSynthesisVoice> create(const String& voiceURI, const String& name, const String& lang, bool localService, bool isDefault);
53 bool isDefault() const { return m_default; }
54 void setIsDefault(bool isDefault) { m_default = isDefault; }
57 PlatformSpeechSynthesisVoice(const String& voiceURI, const String& name, const String& lang, bool localService, bool isDefault);
  /external/mockito/src/org/mockito/mock/
MockName.java 20 boolean isDefault();
  /external/chromium_org/third_party/WebKit/Source/core/html/track/
LoadableTextTrack.h 54 virtual bool isDefault() const OVERRIDE { return m_isDefault; }
55 virtual void setIsDefault(bool isDefault) OVERRIDE { m_isDefault = isDefault; }
  /external/chromium_org/third_party/WebKit/Source/modules/speech/
SpeechSynthesisVoice.h 45 bool isDefault() const { return m_platformVoice->isDefault(); }
SpeechSynthesisVoice.idl 34 [ImplementedAs=isDefault] readonly attribute boolean default;
  /external/chromium_org/third_party/sqlite/src/src/
test_async.c 37 ** sqlite3async_initialize PARENT-VFS ISDEFAULT
46 int isDefault;
50 Tcl_WrongNumArgs(interp, 1, objv, "PARENT-VFS ISDEFAULT");
57 if( Tcl_GetBooleanFromObj(interp, objv[2], &isDefault) ){
61 rc = sqlite3async_initialize(zParent, isDefault);
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebSpeechSynthesisVoice.cpp 70 void WebSpeechSynthesisVoice::setIsDefault(bool isDefault)
72 m_private->setIsDefault(isDefault);
  /external/chromium_org/ui/keyboard/resources/elements/
kb-keyset.html 7 <polymer-element name="kb-keyset" attributes="nextKeyset isDefault"
24 isDefault: false,
  /frameworks/base/core/java/com/android/internal/app/
MediaRouteDialogPresenter.java 48 if (route.isDefault() || !route.matchesTypes(routeTypes)) {
75 if (route.isDefault() || !route.matchesTypes(routeTypes)) {
  /packages/apps/Settings/src/com/android/settings/nfc/
PaymentBackend.java 37 boolean isDefault;
69 appInfo.isDefault = service.getComponent().equals(defaultApp);
  /external/chromium_org/chrome/browser/resources/
gesture_config.js 466 * @param {boolean} isDefault Whether the preference is set to the default
469 updateResetButton: function(resetButton, isDefault) {
474 resetButton.innerHTML = isDefault ? TITLE_DEFAULT : TITLE_NOT_DEFAULT;
475 resetButton.disabled = isDefault;
480 * @param {boolean} isDefault Whether all preference are set to their default
483 updateResetAllButton: function(isDefault) {
489 button.innerHTML = isDefault ? TITLE_DEFAULT : TITLE_NOT_DEFAULT;
490 button.disabled = isDefault;
497 * @param {boolean} isDefault Whether the value is the default value.
499 updatePreferenceValueResult: function(prefName, value, isDefault) {
    [all...]
  /external/chromium_org/chrome/browser/custom_handlers/
protocol_handler_registry_unittest.cc 504 ASSERT_TRUE(registry()->IsDefault(test_protocol_handler()));
515 ASSERT_FALSE(registry()->IsDefault(ph1));
516 ASSERT_FALSE(registry()->IsDefault(ph2));
535 ASSERT_FALSE(registry()->IsDefault(ph1));
536 ASSERT_TRUE(registry()->IsDefault(ph2));
546 ASSERT_TRUE(registry()->IsDefault(ph1));
547 ASSERT_FALSE(registry()->IsDefault(ph2));
550 ASSERT_FALSE(registry()->IsDefault(ph1));
551 ASSERT_TRUE(registry()->IsDefault(ph2));
567 ASSERT_FALSE(registry()->IsDefault(ph1))
    [all...]
  /external/chromium_org/ui/keyboard/resources/layouts/
numeric.html 8 <kb-keyset id="numeric-symbol" isDefault=true>
  /external/mockito/src/org/mockito/internal/util/
MockNameImpl.java 41 public boolean isDefault() {
  /packages/inputmethods/PinyinIME/res/xml/
method.xml 20 android:isDefault="@bool/im_is_default"
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLBooleanProperty.java 32 public boolean isDefault() {
GLEnumProperty.java 33 public boolean isDefault() {
GLFloatProperty.java 31 public boolean isDefault() {
GLStringProperty.java 30 public boolean isDefault() {
GLCompositeProperty.java 95 public boolean isDefault() {
97 if (!p.isDefault()) {
GLIntegerProperty.java 39 public boolean isDefault() {
GLObjectProperty.java 36 public boolean isDefault() {
  /frameworks/base/core/java/android/net/
NetworkConfig.java 78 public boolean isDefault() {

Completed in 500 milliseconds

1 2 3 4 5 6 7 8