Searched refs:isDefault (Results 1 - 25 of 82) sorted by relevance

1234

/external/mockito/src/org/mockito/mock/
H A DMockName.java20 boolean isDefault(); method in interface:MockName
/external/chromium_org/third_party/WebKit/Source/platform/speech/
H A DPlatformSpeechSynthesisVoice.cpp31 PlatformSpeechSynthesisVoice* PlatformSpeechSynthesisVoice::create(const String& voiceURI, const String& name, const String& lang, bool localService, bool isDefault) argument
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) argument
46 , m_default(isDefault)
H A DPlatformSpeechSynthesisVoice.h37 static PlatformSpeechSynthesisVoice* create(const String& voiceURI, const String& name, const String& lang, bool localService, bool isDefault);
52 bool isDefault() const { return m_default; } function in class:blink::FINAL
53 void setIsDefault(bool isDefault) { m_default = isDefault; } argument
58 PlatformSpeechSynthesisVoice(const String& voiceURI, const String& name, const String& lang, bool localService, bool isDefault);
/external/chromium_org/third_party/WebKit/Source/modules/speech/
H A DSpeechSynthesisVoice.h45 bool isDefault() const { return m_platformVoice->isDefault(); } function in class:blink::FINAL
H A DSpeechSynthesisVoice.idl34 [ImplementedAs=isDefault] readonly attribute boolean default;
/external/chromium_org/third_party/WebKit/Source/platform/exported/
H A DWebSpeechSynthesisVoice.cpp69 void WebSpeechSynthesisVoice::setIsDefault(bool isDefault) argument
71 m_private->setIsDefault(isDefault);
/external/chromium_org/third_party/sqlite/src/ext/async/
H A Dsqlite3async.h69 int sqlite3async_initialize(const char *zParent, int isDefault);
/external/chromium_org/chrome/browser/resources/
H A Dgesture_config.js280 * @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/core/html/track/
H A DLoadableTextTrack.h58 virtual bool isDefault() const OVERRIDE { return m_isDefault; }
59 virtual void setIsDefault(bool isDefault) OVERRIDE { m_isDefault = isDefault; }
H A DTextTrack.h110 virtual bool isDefault() const { return false; } function in class:blink::TextTrack
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLAreaElement.h40 bool isDefault() const { return m_shape == Default; } function in class:blink::FINAL
H A DHTMLMapElement.cpp55 if (area->isDefault()) {
/external/llvm/include/llvm/
H A DPassRegistry.h89 PassInfo& Registeree, bool isDefault,
/external/mockito/src/org/mockito/internal/util/
H A DMockNameImpl.java41 public boolean isDefault() { method in class:MockNameImpl
/external/srec/portable/include/
H A DPANSIFileSystem.h148 * @param isDefault True if the file-system should be the default file-system
151 PORTABLE_API ESR_ReturnCode PANSIFileSystemSetDefault(ESR_BOOL isDefault);
/external/chromium_org/third_party/sqlite/src/src/
H A Dtest_async.c46 int isDefault; local
57 if( Tcl_GetBooleanFromObj(interp, objv[2], &isDefault) ){
61 rc = sqlite3async_initialize(zParent, isDefault);
/external/chromium_org/chrome/browser/ui/cocoa/autofill/
H A Dautofill_input_field.h62 @property(nonatomic, readonly) BOOL isDefault; variable
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFallbackThemeEngine.h91 bool isDefault; // Whether the button is default button. member in struct:blink::WebFallbackThemeEngine::ButtonExtraParams
H A DWebThemeEngine.h129 bool isDefault; // Whether the button is default button. member in struct:blink::WebThemeEngine::ButtonExtraParams
/external/chromium_org/ui/keyboard/resources/elements/
H A Dkb-keyset.js9 isDefault: false,
/external/llvm/lib/IR/
H A DPass.cpp209 const void *PassID, bool isDefault)
212 *this, isDefault);
208 RegisterAGBase(const char *Name, const void *InterfaceID, const void *PassID, bool isDefault) argument
H A DPassRegistry.cpp95 bool isDefault,
121 if (isDefault) {
92 registerAnalysisGroup(const void *InterfaceID, const void *PassID, PassInfo& Registeree, bool isDefault, bool ShouldFree) argument
/external/chromium_org/third_party/skia/src/utils/
H A DSkRTConf.cpp112 if (confArray->getAt(0)->isDefault()) {
126 if (!confArray->getAt(0)->isDefault()) {
145 if (!confArray->getAt(0)->isDefault()) {
/external/skia/src/utils/
H A DSkRTConf.cpp112 if (confArray->getAt(0)->isDefault()) {
126 if (!confArray->getAt(0)->isDefault()) {
145 if (!confArray->getAt(0)->isDefault()) {
/external/mockito/src/org/mockito/internal/stubbing/defaultanswers/
H A DReturnsEmptyValues.java67 if (name.isDefault()) {

Completed in 461 milliseconds

1234