Searched refs:readOnly (Results 1 - 25 of 79) sorted by relevance

1234

/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/
H A DMyPermissionCollection.java29 public MyPermissionCollection(boolean readOnly) { argument
30 if (readOnly) {
/external/webkit/LayoutTests/storage/
H A Dread-and-write-transactions-dont-run-together.js20 function runTransaction(db, readOnly)
22 var transactionFunction = (readOnly ? db.readTransaction : db.transaction);
24 if (readOnly) {
39 log((readOnly ? "Read" : "Write") + " transaction failed: " + error.message);
43 if (readOnly)
/external/webkit/Source/JavaScriptCore/tests/mozilla/js1_2/version120/
H A Dregress-99663.js104 actual = readOnly(e.message);
118 actual = readOnly(e.message);
132 actual = readOnly(e.message);
146 function readOnly(msg) function
/external/webkit/Source/WebCore/platform/sql/
H A DSQLiteTransaction.cpp35 SQLiteTransaction::SQLiteTransaction(SQLiteDatabase& db, bool readOnly) argument
38 , m_readOnly(readOnly)
H A DSQLiteTransaction.h39 SQLiteTransaction(SQLiteDatabase& db, bool readOnly = false);
/external/webkit/Source/WebCore/rendering/
H A DHitTestRequest.h45 bool readOnly() const { return m_requestType & ReadOnly; } function in class:WebCore::HitTestRequest
/external/webrtc/src/system_wrappers/source/
H A Dfile_impl.cc117 int FileWrapperImpl::OpenFile(const char *fileNameUTF8, bool readOnly, argument
126 _readOnly = readOnly;
141 if(readOnly)
148 if(readOnly)
158 if(readOnly)
165 if(readOnly)
H A Dfile_impl.h32 bool readOnly,
/external/webkit/LayoutTests/dom/html/level2/html/
H A DHTMLInputElement12.js78 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;
H A DHTMLTextAreaElement08.js78 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/
H A DHTMLInputElement12.js78 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;
H A DHTMLTextAreaElement08.js78 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/webrtc/src/system_wrappers/interface/
H A Dfile_wrapper.h35 // Opens a file in read or write mode, decided by the readOnly parameter.
37 bool readOnly,
73 // called with |loop| == true or |readOnly| == true.
/external/webkit/Source/JavaScriptCore/runtime/
H A DSymbolTable.h98 void pack(int index, bool readOnly, bool dontEnum) argument
101 if (readOnly)
/external/webkit/Source/WebCore/storage/
H A DSQLTransactionSync.h53 static PassRefPtr<SQLTransactionSync> create(DatabaseSync*, PassRefPtr<SQLTransactionSyncCallback>, bool readOnly = false);
68 SQLTransactionSync(DatabaseSync*, PassRefPtr<SQLTransactionSyncCallback>, bool readOnly);
H A DDatabaseSync.h68 void runTransaction(PassRefPtr<SQLTransactionSyncCallback>, bool readOnly, ExceptionCode&);
H A DSQLTransactionSync.cpp52 PassRefPtr<SQLTransactionSync> SQLTransactionSync::create(DatabaseSync* db, PassRefPtr<SQLTransactionSyncCallback> callback, bool readOnly) argument
54 return adoptRef(new SQLTransactionSync(db, callback, readOnly));
57 SQLTransactionSync::SQLTransactionSync(DatabaseSync* db, PassRefPtr<SQLTransactionSyncCallback> callback, bool readOnly) argument
60 , m_readOnly(readOnly)
H A DSQLTransaction.h65 PassRefPtr<VoidCallback>, PassRefPtr<SQLTransactionWrapper>, bool readOnly = false);
82 PassRefPtr<VoidCallback>, PassRefPtr<SQLTransactionWrapper>, bool readOnly);
H A DDatabaseSync.cpp142 void DatabaseSync::runTransaction(PassRefPtr<SQLTransactionSyncCallback> callback, bool readOnly, ExceptionCode& ec) argument
151 RefPtr<SQLTransactionSync> transaction = SQLTransactionSync::create(this, callback, readOnly);
/external/webkit/Source/WebKit/chromium/src/
H A DWebFormControlElement.cpp48 return constUnwrap<HTMLFormControlElement>()->readOnly();
/external/webkit/Source/WebCore/html/
H A DTextFieldInputType.cpp72 if (element()->disabled() || element()->readOnly())
88 if (element()->disabled() || element()->readOnly() || !element()->focused())
H A DHTMLTextAreaElement.idl34 attribute [Reflect] boolean readOnly;
H A DHTMLFormControlElement.h77 virtual bool isReadOnlyFormControl() const { return readOnly(); }
102 bool readOnly() const { return m_readOnly; } function in class:WebCore::HTMLFormControlElement
/external/webkit/Source/WebKit/chromium/public/linux/
H A DWebThemeEngine.h120 bool readOnly; member in struct:WebKit::WebThemeEngine::InnerSpinButtonExtraParams
/external/webkit/Source/WebCore/inspector/front-end/
H A DTextViewer.js69 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 || thi
[all...]

Completed in 399 milliseconds

1234