HomeSort by relevance Sort by last modified time
    Searched refs:readOnly (Results 26 - 50 of 128) sorted by null

12 3 4 5 6

  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLTextAreaElement08.js 78 The readOnly attribute specifies this control is read-only.
80 Retrieve the readOnly attribute from the 3rd TEXTAREA element and
103 vreadonly = testNode.readOnly;
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLInputElement12.js 78 The readOnly attribute indicates that this control is read-only when
81 Retrieve the readOnly attribute of the 1st INPUT element and examine
104 vreadonly = testNode.readOnly;
HTMLTextAreaElement08.js 78 The readOnly attribute specifies this control is read-only.
80 Retrieve the readOnly attribute from the 3rd TEXTAREA element and
103 vreadonly = testNode.readOnly;
  /external/webkit/Source/WebCore/html/
HTMLFormControlElement.h 77 virtual bool isReadOnlyFormControl() const { return readOnly(); }
102 bool readOnly() const { return m_readOnly; }
HTMLTextAreaElement.idl 25 readonly attribute HTMLFormElement form;
26 readonly attribute ValidityState validity;
34 attribute [Reflect] boolean readOnly;
37 readonly attribute DOMString type;
39 readonly attribute unsigned long textLength;
43 readonly attribute boolean willValidate;
44 readonly attribute DOMString validationMessage;
52 readonly attribute NodeList labels;
HTMLTextAreaElement.h 50 bool valueMissing(const String& value) const { return isRequiredFormControl() && !disabled() && !readOnly() && value.isEmpty(); }
  /libcore/luni/src/main/java/javax/security/auth/
Subject.java 79 private boolean readOnly;
96 readOnly = false;
103 * @param readOnly
116 public Subject(boolean readOnly, Set<? extends Principal> subjPrincipals,
127 this.readOnly = readOnly;
395 readOnly = true;
404 return readOnly;
486 if (readOnly) {
  /external/webkit/Source/WebKit/chromium/public/linux/
WebThemeEngine.h 120 bool readOnly;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/X11/extensions/
XShm.h 69 Bool readOnly; /* how the server should attach it */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
XShm.h 69 Bool readOnly; /* how the server should attach it */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/X11/extensions/
XShm.h 69 Bool readOnly; /* how the server should attach it */
  /external/webkit/Source/WebCore/storage/
DatabaseSync.cpp 142 void DatabaseSync::runTransaction(PassRefPtr<SQLTransactionSyncCallback> callback, bool readOnly, ExceptionCode& ec)
151 RefPtr<SQLTransactionSync> transaction = SQLTransactionSync::create(this, callback, readOnly);
Database.h 94 PassRefPtr<VoidCallback> successCallback, bool readOnly);
SQLTransaction.cpp 63 PassRefPtr<VoidCallback> successCallback, PassRefPtr<SQLTransactionWrapper> wrapper, bool readOnly)
65 return adoptRef(new SQLTransaction(db, callback, errorCallback, successCallback, wrapper, readOnly));
69 PassRefPtr<VoidCallback> successCallback, PassRefPtr<SQLTransactionWrapper> wrapper, bool readOnly)
80 , m_readOnly(readOnly)
  /packages/apps/Contacts/src/com/android/contacts/editor/
PhotoEditorView.java 95 public void setValues(DataKind kind, ValuesDelta values, EntityDelta state, boolean readOnly,
98 mReadOnly = readOnly;
EventFieldEditorView.java 111 public void setValues(DataKind kind, ValuesDelta entry, EntityDelta state, boolean readOnly,
114 super.setValues(kind, entry, state, readOnly, vig);
116 mDateView.setEnabled(isEnabled() && !readOnly);
TextFieldsEditorView.java 174 public void setValues(DataKind kind, ValuesDelta entry, EntityDelta state, boolean readOnly,
176 super.setValues(kind, entry, state, readOnly, vig);
242 fieldView.setEnabled(isEnabled() && !readOnly);
265 mExpansionView.setEnabled(!readOnly && isEnabled());
PhoneticNameEditorView.java 175 public void setValues(DataKind kind, ValuesDelta entry, EntityDelta state, boolean readOnly,
180 super.setValues(kind, entry, state, readOnly, vig);
  /external/webkit/Source/WebCore/inspector/front-end/
TextViewer.js 69 set readOnly(readOnly)
71 if (this._mainPanel.readOnly === readOnly)
73 this._mainPanel.readOnly = readOnly;
74 this._delegate.readOnlyStateChanged(readOnly);
77 get readOnly()
79 return this._mainPanel.readOnly;
233 if (!this.readOnly || this._commitEditingInProgress
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/extensions/news/javascript/
options.js 194 template.push('<textarea class="noborder" readonly>');
207 $('newKeyword').readOnly = 'readonly';
320 template.push('<textarea class="noborder" readonly>');
342 $('newKeyword').readOnly = 'readonly';
394 $('newKeyword').readOnly = false;
  /external/webkit/Source/JavaScriptCore/qt/tests/qscriptvalue/
tst_qscriptvalue.cpp 523 // ReadOnly
524 object.setProperty("readOnlyProperty", num, QScriptValue::ReadOnly);
525 // QCOMPARE(object.propertyFlags("readOnlyProperty"), QScriptValue::ReadOnly);
606 object.setProperty("flagProperty", str, QScriptValue::ReadOnly);
607 // QCOMPARE(object.propertyFlags("flagProperty"), QScriptValue::ReadOnly);
610 // QCOMPARE(object.propertyFlags("flagProperty"), QScriptValue::ReadOnly | QScriptValue::SkipInEnumeration);
613 // QCOMPARE(object.propertyFlags("flagProperty"), QScriptValue::ReadOnly | QScriptValue::SkipInEnumeration);
    [all...]
  /frameworks/base/core/java/android/database/sqlite/
SQLiteProgram.java 61 mReadOnly = info.readOnly;
  /libcore/luni/src/main/java/java/sql/
Connection.java 702 * @param readOnly
708 public void setReadOnly(boolean readOnly) throws SQLException;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.core.variables_3.2.400.v20100505.jar 
  /external/webkit/Source/WebKit/win/Interfaces/
DOMHTML.idl 706 - (BOOL)readOnly;
708 HRESULT readOnly([out, retval] BOOL* result);
711 - (void)setReadOnly:(BOOL)readOnly;
713 HRESULT setReadOnly([in] BOOL readOnly);
878 - (BOOL)readOnly;
880 HRESULT readOnly([out, retval] BOOL* result);
883 - (void)setReadOnly:(BOOL)readOnly;
885 HRESULT setReadOnly([in] BOOL readOnly);

Completed in 1100 milliseconds

12 3 4 5 6