HomeSort by relevance Sort by last modified time
    Searched full:readonly (Results 226 - 250 of 1957) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/JavaScriptCore/runtime/
PropertyDescriptor.cpp 41 return !(m_attributes & ReadOnly);
72 m_attributes = ReadOnly | DontDelete | DontEnum;
97 m_attributes &= ~ReadOnly;
111 m_attributes &= ~ReadOnly;
118 m_attributes &= ~ReadOnly;
120 m_attributes |= ReadOnly;
146 m_attributes &= ~ReadOnly;
153 m_attributes &= ~ReadOnly;
172 if (sharedSeen & WritablePresent && mismatch & ReadOnly)
186 if (sharedSeen & WritablePresent && mismatch & ReadOnly)
    [all...]
NumberConstructor.cpp 49 NaN numberConstructorNaNValue DontEnum|DontDelete|ReadOnly
50 NEGATIVE_INFINITY numberConstructorNegInfinity DontEnum|DontDelete|ReadOnly
51 POSITIVE_INFINITY numberConstructorPosInfinity DontEnum|DontDelete|ReadOnly
52 MAX_VALUE numberConstructorMaxValue DontEnum|DontDelete|ReadOnly
53 MIN_VALUE numberConstructorMinValue DontEnum|DontDelete|ReadOnly
63 putDirectWithoutTransition(exec->globalData(), exec->propertyNames().prototype, numberPrototype, DontEnum | DontDelete | ReadOnly);
66 putDirectWithoutTransition(exec->globalData(), exec->propertyNames().length, jsNumber(1), ReadOnly | DontEnum | DontDelete);
RegExpConstructor.cpp 78 lastMatch regExpConstructorLastMatch DontDelete|ReadOnly
79 $& regExpConstructorLastMatch DontDelete|ReadOnly|DontEnum
80 lastParen regExpConstructorLastParen DontDelete|ReadOnly
81 $+ regExpConstructorLastParen DontDelete|ReadOnly|DontEnum
82 leftContext regExpConstructorLeftContext DontDelete|ReadOnly
83 $` regExpConstructorLeftContext DontDelete|ReadOnly|DontEnum
84 rightContext regExpConstructorRightContext DontDelete|ReadOnly
85 $' regExpConstructorRightContext DontDelete|ReadOnly|DontEnum
86 $1 regExpConstructorDollar1 DontDelete|ReadOnly
87 $2 regExpConstructorDollar2 DontDelete|ReadOnly
    [all...]
  /external/clang/test/SemaObjC/
property-user-setter.m 4 @property(readonly) int x;
5 @property(readonly) int y;
6 @property(readonly) int z;
23 self.z = 2; // expected-error {{assignment to readonly property}}
27 // Test when property is 'readonly' but it has a setter in
31 @property(readonly) int identifier;
48 @property(readonly) int rprop;
  /external/webkit/Source/WebCore/dom/
Range.idl 26 readonly attribute Node startContainer
28 readonly attribute long startOffset
30 readonly attribute Node endContainer
32 readonly attribute long endOffset
34 readonly attribute boolean collapsed
36 readonly attribute Node commonAncestorContainer
126 readonly attribute DOMString text;
Clipboard.idl 34 readonly attribute [CustomGetter] Array types;
35 readonly attribute FileList files;
46 readonly attribute [Conditional=DATA_TRANSFER_ITEMS, EnabledAtRuntime=DataTransferItems] DataTransferItems items;
ErrorEvent.idl 38 readonly attribute DOMString message;
39 readonly attribute DOMString filename;
40 readonly attribute unsigned long lineno;
EventException.idl 37 readonly attribute unsigned short code;
38 readonly attribute DOMString name;
39 readonly attribute DOMString message;
  /frameworks/compile/libbcc/lib/Renderscript/runtime/
rsClamp.ll 5 define float @_Z7rsClampfff(float %value, float %low, float %high) nounwind readonly {
13 define signext i8 @_Z7rsClampccc(i8 signext %value, i8 signext %low, i8 signext %high) nounwind readonly {
21 define zeroext i8 @_Z7rsClamphhh(i8 zeroext %value, i8 zeroext %low, i8 zeroext %high) nounwind readonly {
29 define signext i16 @_Z7rsClampsss(i16 signext %value, i16 signext %low, i16 signext %high) nounwind readonly {
37 define zeroext i16 @_Z7rsClampttt(i16 zeroext %value, i16 zeroext %low, i16 zeroext %high) nounwind readonly {
45 define i32 @_Z7rsClampiii(i32 %value, i32 %low, i32 %high) nounwind readonly {
53 define i32 @_Z7rsClampjjj(i32 %value, i32 %low, i32 %high) nounwind readonly {
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FatFileSystem.java 50 FatFileSystem(BlockDevice api, boolean readOnly) throws IOException {
52 this(api, readOnly, false);
56 * Constructor for FatFileSystem in specified readOnly mode
59 * @param readOnly if this FS should be read-lonly
63 private FatFileSystem(BlockDevice device, boolean readOnly,
67 super(readOnly);
101 Fat16RootDirectory.read((Fat16BootSector) bs,readOnly);
115 * @param readOnly if the {@code FatFileSystem} should be in read-only mode
120 public static FatFileSystem read(BlockDevice device, boolean readOnly)
123 return new FatFileSystem(device, readOnly);
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenConstants.cs 67 public static readonly IToken EndOfFile = Tokens<CommonToken>.EndOfFile;
69 public static readonly IToken Invalid = new CommonToken( TokenTypes.Invalid );
76 public static readonly IToken Skip = new CommonToken( TokenTypes.Invalid );
82 public static readonly T EndOfFile = new T()
87 public static readonly T Invalid = new T()
92 public static readonly T Skip = new T()
Constants.cs 44 public static readonly string VERSION = "3.1b1";
47 public static readonly string DEBUG_PROTOCOL_VERSION = "2";
49 public static readonly string ANTLRWORKS_DIR = "antlrworks";
  /external/llvm/test/CodeGen/X86/
codemodel.ll 8 define i32 @foo() nounwind readonly {
18 define i32 @foo2() nounwind readonly {
28 define i32 @foo3() nounwind readonly {
38 define i32 @foo4() nounwind readonly {
50 define i32 @foo1() nounwind readonly {
59 define i32 @foo5() nounwind readonly {
  /external/webrtc/src/system_wrappers/source/
file_impl.cc 117 int FileWrapperImpl::OpenFile(const char *fileNameUTF8, bool readOnly,
126 _readOnly = readOnly;
141 if(readOnly)
148 if(readOnly)
158 if(readOnly)
165 if(readOnly)
  /external/llvm/test/Transforms/GVN/
calls-readonly.ll 7 define i8* @test(i8* %P, i8* %Q, i32 %x, i32 %y) nounwind readonly {
27 declare i32 @strlen(i8*) nounwind readonly
29 declare i8* @strchr(i8*, i32) nounwind readonly
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Number/
15.7.3.4-3.js 26 the attributes [DontEnum, DontDelete, ReadOnly]
28 this test checks the ReadOnly attribute of Number.NaN
67 testcases[tc].reason += "property should be readonly ";
15.7.3.5-3.js 26 the attributes [DontEnum, DontDelete, ReadOnly]
28 this test checks the ReadOnly attribute of Number.NEGATIVE_INFINITY
63 testcases[tc].reason += "property should be readonly ";
15.7.3.6-3.js 26 the attributes [DontEnum, DontDelete, ReadOnly]
28 this test checks the ReadOnly attribute of Number.POSITIVE_INFINITY
64 testcases[tc].reason += "property should be readonly ";
  /external/webkit/Source/WebCore/fileapi/
FileReader.idl 44 readonly attribute unsigned short readyState;
55 readonly attribute [Custom] DOMObject result;
57 readonly attribute FileError error;
  /external/webkit/Source/WebCore/html/
DataGridColumnList.idl 34 readonly attribute unsigned long length;
36 readonly attribute DataGridColumn sortColumn;
37 readonly attribute DataGridColumn primaryColumn;
ImageData.idl 34 readonly attribute long width;
35 readonly attribute long height;
37 readonly attribute CanvasPixelArray data;
  /external/webkit/Source/WebCore/page/
Performance.idl 35 readonly attribute PerformanceNavigation navigation;
36 readonly attribute PerformanceTiming timing;
37 readonly attribute [V8CustomGetter] MemoryInfo memory;
  /external/webkit/Source/WebCore/storage/
IDBDatabase.idl 32 readonly attribute DOMString name;
33 readonly attribute DOMString version;
34 readonly attribute DOMStringList objectStoreNames;
IDBDatabaseException.idl 33 readonly attribute unsigned short code;
34 readonly attribute DOMString name;
35 readonly attribute DOMString message;
IDBObjectStore.idl 31 readonly attribute DOMString name;
32 readonly attribute [ConvertNullStringTo=Null] DOMString keyPath;
33 readonly attribute DOMStringList indexNames;

Completed in 1266 milliseconds

1 2 3 4 5 6 7 8 91011>>