OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:readonly
(Results
326 - 350
of
2256
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/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/llvm/test/Transforms/InstCombine/
strto-1.ll
8
; CHECK: declare i64 @strtol(i8*
readonly
, i8** nocapture, i32)
11
; CHECK: declare double @strtod(i8*
readonly
, i8** nocapture, i32)
14
; CHECK: declare float @strtof(i8*
readonly
, i8** nocapture, i32)
17
; CHECK: declare i64 @strtoul(i8*
readonly
, i8** nocapture, i32)
20
; CHECK: declare i64 @strtoll(i8*
readonly
, i8** nocapture, i32)
23
; CHECK: declare double @strtold(i8*
readonly
, i8** nocapture)
26
; CHECK: declare i64 @strtoull(i8*
readonly
, i8** nocapture, i32)
/frameworks/rs/driver/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
{
/external/chromium_org/third_party/WebKit/Source/bindings/tests/idls/
TestObject.idl
42
readonly
attribute long readOnlyLongAttr;
43
readonly
attribute DOMString readOnlyStringAttr;
44
readonly
attribute TestObject readOnlyTestObjectAttr;
45
static
readonly
attribute long staticReadOnlyLongAttr;
47
static
readonly
attribute TestSubObjConstructor TestSubObj;
49
readonly
attribute TestEnumType readOnlyEnumAttr;
187
readonly
attribute any cachedAttribute1;
188
readonly
attribute any cachedAttribute2;
239
[CheckSecurityForNode]
readonly
attribute Document contentDocument;
259
readonly
attribute long description
[
all
...]
/external/chromium_org/content/browser/geolocation/
wifi_data_provider_corewlan_mac.mm
33
@property (nonatomic,
readonly
) NSString* ssid;
34
@property (nonatomic,
readonly
) NSString* bssid;
35
@property (nonatomic,
readonly
) NSData* bssidData;
36
@property (nonatomic,
readonly
) NSNumber* securityMode;
37
@property (nonatomic,
readonly
) NSNumber* phyMode;
38
@property (nonatomic,
readonly
) NSNumber* channel;
39
@property (nonatomic,
readonly
) NSNumber* rssi;
40
@property (nonatomic,
readonly
) NSNumber* noise;
41
@property (nonatomic,
readonly
) NSData* ieData;
42
@property (nonatomic,
readonly
) BOOL isIBSS
[
all
...]
/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/chromium_org/third_party/WebKit/Source/core/dom/
Range.idl
27
[GetterRaisesException]
readonly
attribute Node startContainer;
28
[GetterRaisesException]
readonly
attribute long startOffset;
29
[GetterRaisesException]
readonly
attribute Node endContainer;
30
[GetterRaisesException]
readonly
attribute long endOffset;
31
[GetterRaisesException]
readonly
attribute boolean collapsed;
32
[GetterRaisesException]
readonly
attribute Node commonAncestorContainer;
Clipboard.idl
33
[CustomGetter]
readonly
attribute Array types;
34
readonly
attribute FileList files;
41
readonly
attribute DataTransferItemList items;
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/objc/public/
RTCPeerConnection.h
45
@property(nonatomic, strong,
readonly
) NSArray *localStreams;
48
@property(nonatomic, assign,
readonly
) RTCSessionDescription *localDescription;
51
@property(nonatomic, assign,
readonly
) RTCSessionDescription *remoteDescription;
54
@property(nonatomic, assign,
readonly
) RTCSignalingState signalingState;
55
@property(nonatomic, assign,
readonly
) RTCICEConnectionState iceConnectionState;
56
@property(nonatomic, assign,
readonly
) RTCICEGatheringState iceGatheringState;
/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/chromium_org/chrome/browser/ui/cocoa/
profile_signin_confirmation_view_controller.h
65
@property(
readonly
, nonatomic) ui::ProfileSigninConfirmationDelegate* delegate;
66
@property(
readonly
, nonatomic) NSButton* createProfileButton;
67
@property(
readonly
, nonatomic) NSTextView* explanationField;
/external/chromium_org/third_party/WebKit/Source/core/css/
CSSRule.idl
44
readonly
attribute unsigned short type;
48
readonly
attribute CSSStyleSheet parentStyleSheet;
49
readonly
attribute CSSRule parentRule;
CSSStyleDeclaration.idl
35
readonly
attribute unsigned long length;
39
readonly
attribute CSSRule parentRule;
40
[EnabledAtRuntime=CSSVariables]
readonly
attribute CSSVariablesMap var;
/external/chromium_org/third_party/WebKit/Source/core/html/ime/
Composition.idl
35
readonly
attribute DOMString text;
36
readonly
attribute long selectionStart;
37
readonly
attribute long selectionEnd;
InputMethodContext.idl
34
readonly
attribute Composition composition;
35
readonly
attribute DOMString locale;
36
readonly
attribute HTMLElement target;
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGFEBlendElement.idl
37
readonly
attribute SVGAnimatedString in1;
38
readonly
attribute SVGAnimatedString in2;
39
readonly
attribute SVGAnimatedEnumeration mode;
SVGGraphicsElement.idl
32
readonly
attribute SVGAnimatedTransformList transform;
34
readonly
attribute SVGElement nearestViewportElement;
35
readonly
attribute SVGElement farthestViewportElement;
SVGTextPathElement.idl
37
readonly
attribute SVGAnimatedLength startOffset;
38
readonly
attribute SVGAnimatedEnumeration method;
39
readonly
attribute SVGAnimatedEnumeration spacing;
SVGTransform.idl
32
readonly
attribute unsigned short type;
33
[ImplementedAs=svgMatrix]
readonly
attribute SVGMatrix matrix;
34
readonly
attribute float angle;
/external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerGlobalScope.idl
34
[Replaceable]
readonly
attribute WorkerGlobalScope self;
35
[Replaceable]
readonly
attribute WorkerLocation location;
41
[Replaceable]
readonly
attribute WorkerNavigator navigator;
/external/chromium_org/third_party/WebKit/Source/modules/encryptedmedia/
MediaKeySession.idl
31
readonly
attribute MediaKeyError error;
34
readonly
attribute DOMString keySystem;
35
readonly
attribute DOMString sessionId;
/external/chromium_org/third_party/WebKit/Source/modules/indexeddb/
IDBDatabase.idl
30
readonly
attribute DOMString name;
31
readonly
attribute IDBAny version;
32
readonly
attribute DOMStringList objectStoreNames;
Completed in 431 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>