HomeSort by relevance Sort by last modified time
    Searched full:readonly (Results 201 - 225 of 871) sorted by null

1 2 3 4 5 6 7 891011>>

  /dalvik/libcore/security/src/main/java/java/security/
PermissionCollection.java 42 private boolean readOnly; // = false;
81 return readOnly;
89 readOnly = true;
  /external/webkit/JavaScriptCore/runtime/
Error.cpp 86 error->putWithAttributes(exec, Identifier(exec, "line"), jsNumber(exec, lineNumber), ReadOnly | DontDelete);
88 error->putWithAttributes(exec, Identifier(exec, "sourceId"), jsNumber(exec, sourceID), ReadOnly | DontDelete);
90 error->putWithAttributes(exec, Identifier(exec, "sourceURL"), jsString(exec, sourceURL), ReadOnly | DontDelete);
BooleanConstructor.cpp 34 putDirectWithoutTransition(exec->propertyNames().prototype, booleanPrototype, DontEnum | DontDelete | ReadOnly);
37 putDirectWithoutTransition(exec->propertyNames().length, jsNumber(exec, 1), ReadOnly | DontDelete | DontEnum);
ErrorConstructor.cpp 36 putDirectWithoutTransition(exec->propertyNames().prototype, errorPrototype, DontEnum | DontDelete | ReadOnly);
37 putDirectWithoutTransition(exec->propertyNames().length, jsNumber(exec, 1), DontDelete | ReadOnly | DontEnum);
MathObject.cpp 91 putDirectWithoutTransition(Identifier(exec, "E"), jsNumber(exec, exp(1.0)), DontDelete | DontEnum | ReadOnly);
92 putDirectWithoutTransition(Identifier(exec, "LN2"), jsNumber(exec, log(2.0)), DontDelete | DontEnum | ReadOnly);
93 putDirectWithoutTransition(Identifier(exec, "LN10"), jsNumber(exec, log(10.0)), DontDelete | DontEnum | ReadOnly);
94 putDirectWithoutTransition(Identifier(exec, "LOG2E"), jsNumber(exec, 1.0 / log(2.0)), DontDelete | DontEnum | ReadOnly);
95 putDirectWithoutTransition(Identifier(exec, "LOG10E"), jsNumber(exec, 1.0 / log(10.0)), DontDelete | DontEnum | ReadOnly);
96 putDirectWithoutTransition(Identifier(exec, "PI"), jsNumber(exec, piDouble), DontDelete | DontEnum | ReadOnly);
97 putDirectWithoutTransition(Identifier(exec, "SQRT1_2"), jsNumber(exec, sqrt(0.5)), DontDelete | DontEnum | ReadOnly);
98 putDirectWithoutTransition(Identifier(exec, "SQRT2"), jsNumber(exec, sqrt(2.0)), DontDelete | DontEnum | ReadOnly);
NativeErrorConstructor.cpp 39 putDirect(exec->propertyNames().length, jsNumber(exec, 1), DontDelete | ReadOnly | DontEnum); // ECMA 15.11.7.5
40 putDirect(exec->propertyNames().prototype, nativeErrorPrototype, DontDelete | ReadOnly | DontEnum);
RegExpObject.cpp 52 global regExpObjectGlobal DontDelete|ReadOnly|DontEnum
53 ignoreCase regExpObjectIgnoreCase DontDelete|ReadOnly|DontEnum
54 multiline regExpObjectMultiline DontDelete|ReadOnly|DontEnum
55 source regExpObjectSource DontDelete|ReadOnly|DontEnum
  /frameworks/base/media/libdrm/mobile2/include/util/domcore/
CharacterDataImpl.h 48 * NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
67 * NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
89 * NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
NodeImpl.h 116 * NO_MODIFICATION_ALLOWED_ERR: Raised when the node is readonly.
192 * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly or
193 * if the parent of the node being inserted is readonly.
205 * NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly.
226 * <br>NO_MODIFICATION_ALLOWED_ERR: Raised if this node is readonly or
227 * if the previous parent of the node being inserted is readonly.
  /external/icu4c/samples/ustring/
ustring.cpp 403 static const UChar readonly[]={ variable
429 // set "one" to contain the 3 UChars from readonly
431 one.setTo(readonly, LENGTHOF(readonly));
444 // * UnicodeString using readonly-alias to a const UChar array
445 // construct a string that aliases a readonly buffer
446 UnicodeString three(FALSE, readonly, LENGTHOF(readonly));
447 printUnicodeString("readonly-alias string: ", three);
451 printUnicodeString("readonly-aliasing string after modification: ", three)
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Boolean/
15.6.3.1-4.js 30 DontDelete, ReadOnly ].
32 This tests the ReadOnly property of Boolean.prototype
  /external/webkit/JavaScriptCore/tests/mozilla/ecma/Number/
15.7.3.1-2.js 26 the attributes [DontEnum, DontDelete, ReadOnly]
28 this test checks the ReadOnly attribute of Number.prototype
  /external/webkit/WebCore/html/
HTMLAttributeNames.in 37 aria-readonly
229 readonly
  /external/webkit/WebCore/storage/
SQLStatement.h 54 static PassRefPtr<SQLStatement> create(const String&, const Vector<SQLValue>&, PassRefPtr<SQLStatementCallback>, PassRefPtr<SQLStatementErrorCallback>, bool readOnly);
69 SQLStatement(const String& statement, const Vector<SQLValue>& arguments, PassRefPtr<SQLStatementCallback> callback, PassRefPtr<SQLStatementErrorCallback> errorCallback, bool readOnly);
  /external/webkit/WebCore/svg/
SVGPathSeg.idl 52 readonly attribute unsigned short pathSegType;
53 readonly attribute DOMString pathSegTypeAsLetter;
  /external/webkit/WebKit/win/Interfaces/
DOMWindow.idl 46 //readonly attribute Document document;
60 //readonly attribute double devicePixelRatio;
  /bionic/libc/kernel/common/linux/mtd/
blktrans.h 31 int readonly; member in struct:mtd_blktrans_dev
  /external/bluetooth/bluez/doc/
input-api.txt 42 Properties boolean Connected [readonly]
  /external/kernel-headers/original/linux/mtd/
blktrans.h 29 int readonly; member in struct:mtd_blktrans_dev
  /external/webkit/JavaScriptCore/tests/mozilla/ecma_3/Exceptions/
15.11.7.6-003.js 38 * SUMMARY: Prototype of predefined error objects should be ReadOnly
45 var summary = 'Prototype of predefined error objects should be ReadOnly';
55 * Tests that |F.prototype| is ReadOnly
84 status = 'Testing ReadOnly attribute of |' + list[i] + '.prototype|';
  /external/webkit/WebCore/css/
CSSCharsetRule.idl 26 readonly attribute [ConvertNullStringTo=Null] DOMString encoding;
CSSFontFaceRule.idl 25 readonly attribute CSSStyleDeclaration style;
CSSPageRule.idl 29 readonly attribute CSSStyleDeclaration style;
CSSRuleList.idl 33 readonly attribute unsigned long length;
CSSStyleRule.idl 29 readonly attribute CSSStyleDeclaration style;

Completed in 308 milliseconds

1 2 3 4 5 6 7 891011>>