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

1 2 3 4 5 6 7 8 9

  /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 PlatformSpeechSynthesisVoice* PlatformSpeechSynthesisVoice::create(const String& voiceURI, const String& name, const String& lang, bool localService, bool isDefault)
33 return 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 37 static PlatformSpeechSynthesisVoice* create(const String& voiceURI, const String& name, const String& lang, bool localService, bool isDefault);
52 bool isDefault() const { return m_default; }
53 void setIsDefault(bool isDefault) { m_default = isDefault; }
58 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 58 virtual bool isDefault() const OVERRIDE { return m_isDefault; }
59 virtual void setIsDefault(bool isDefault) OVERRIDE { m_isDefault = isDefault; }
  /external/chromium_org/ui/keyboard/resources/elements/
kb-keyset.html 7 <polymer-element name="kb-keyset" attributes="align flick isDefault nextKeyset
  /external/chromium_org/chrome/browser/resources/
gesture_config.js 280 * @param {boolean} isDefault Whether the preference is set to the default
283 updateResetButton: function(resetButton, isDefault) {
288 resetButton.innerHTML = isDefault ? TITLE_DEFAULT : TITLE_NOT_DEFAULT;
289 resetButton.disabled = isDefault;
294 * @param {boolean} isDefault Whether all preference are set to their default
297 updateResetAllButton: function(isDefault) {
303 button.innerHTML = isDefault ? TITLE_DEFAULT : TITLE_NOT_DEFAULT;
304 button.disabled = isDefault;
311 * @param {boolean} isDefault Whether the value is the default value.
313 updatePreferenceValueResult: function(prefName, value, isDefault) {
    [all...]
  /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/WebKit/Source/platform/exported/
WebSpeechSynthesisVoice.cpp 69 void WebSpeechSynthesisVoice::setIsDefault(bool isDefault)
71 m_private->setIsDefault(isDefault);
  /external/chromium_org/chrome/browser/custom_handlers/
protocol_handler_registry_unittest.cc 544 ASSERT_TRUE(registry()->IsDefault(test_protocol_handler()));
555 ASSERT_FALSE(registry()->IsDefault(ph1));
556 ASSERT_FALSE(registry()->IsDefault(ph2));
575 ASSERT_FALSE(registry()->IsDefault(ph1));
576 ASSERT_TRUE(registry()->IsDefault(ph2));
586 ASSERT_TRUE(registry()->IsDefault(ph1));
587 ASSERT_FALSE(registry()->IsDefault(ph2));
590 ASSERT_FALSE(registry()->IsDefault(ph1));
591 ASSERT_TRUE(registry()->IsDefault(ph2));
607 ASSERT_FALSE(registry()->IsDefault(ph1))
    [all...]
  /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);
  /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 38 boolean isDefault;
70 appInfo.isDefault = service.getComponent().equals(defaultApp);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/apps/
DefaultClearer.java 70 boolean isDefault(Context context) {
100 if (isDefault(context)) {
  /external/chromium_org/ui/keyboard/resources/layouts/
numeric.html 7 <kb-keyset id="numeric-symbol" isDefault=true>
  /external/mockito/src/org/mockito/internal/util/
MockNameImpl.java 41 public boolean isDefault() {
  /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 37 public boolean isDefault() {
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAreaElement.h 40 bool isDefault() const { return m_shape == Default; }
  /frameworks/base/core/java/android/net/
NetworkConfig.java 77 public boolean isDefault() {

Completed in 1327 milliseconds

1 2 3 4 5 6 7 8 9