HomeSort by relevance Sort by last modified time
    Searched refs:readonly (Results 51 - 75 of 271) sorted by null

1 23 4 5 6 7 8 91011

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ITreeVisitorAction.cs 65 private readonly Func<object, object> _preAction;
66 private readonly Func<object, object> _postAction;
AntlrRuntime_BaseTreeDebugView.cs 39 private readonly BaseTree _tree;
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/
copy-1.d 3 #objcopy: --set-section-flags .post_text_reserve=contents,alloc,load,readonly,code
12 CONTENTS, ALLOC, LOAD, READONLY, CODE
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
GrammarRuleAttribute.cs 40 private readonly string _name;
NoViableAltException.cs 41 private readonly string _grammarDecisionDescription;
42 private readonly int _decisionNumber;
43 private readonly int _stateNumber;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
GrammarRuleAttribute.cs 42 private readonly string _name;
NoViableAltException.cs 43 private readonly string _grammarDecisionDescription;
44 private readonly int _decisionNumber;
45 private readonly int _stateNumber;
  /external/webrtc/talk/app/webrtc/objc/public/
RTCVideoTrack.h 37 @property(nonatomic, readonly) RTCVideoSource* source;
RTCFileLogger.h 61 @property(nonatomic, readonly) RTCFileLoggerRotationType rotationType;
RTCOpenGLVideoRenderer.h 45 @property(nonatomic, readonly) RTCI420Frame* lastDrawnFrame;
  /external/webrtc/webrtc/api/objc/
RTCMediaSource+Private.h 23 @property(nonatomic, readonly)
RTCMediaStreamTrack+Private.h 25 @property(nonatomic, readonly)
RTCOpenGLVideoRenderer.h 30 @property(nonatomic, readonly) RTCVideoFrame *lastDrawnFrame;
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/
ARDAppClient+Internal.h 37 @property(nonatomic, readonly) BOOL hasJoinedRoomServerRoom;
45 @property(nonatomic, readonly) BOOL isLoopback;
46 @property(nonatomic, readonly) BOOL isAudioOnly;
  /external/webrtc/talk/app/webrtc/objc/
RTCPeerConnection+Internal.h 36 @property(nonatomic, assign, readonly)
  /external/webrtc/webrtc/examples/objc/AppRTCDemo/third_party/SocketRocket/
SRWebSocket.h 55 @property (nonatomic, readonly) SRReadyState readyState;
56 @property (nonatomic, readonly, retain) NSURL *url;
60 @property (nonatomic, readonly, copy) NSString *protocol;
114 @property (nonatomic, retain, readonly) NSArray *SR_SSLPinnedCertificates;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Test/BuildOptions/
DebugTreeGrammar.cs 28 internal static readonly string[] tokenNames = new string[] {
50 public static readonly string[] ruleNames =
815 public static readonly BitSet _stat_in_prog48 = new BitSet(new ulong[]{0x3CCF2UL});
816 public static readonly BitSet _expr_in_stat63 = new BitSet(new ulong[]{0x2UL});
817 public static readonly BitSet _17_in_stat98 = new BitSet(new ulong[]{0x4UL});
818 public static readonly BitSet _ID_in_stat100 = new BitSet(new ulong[]{0x1CCD0UL});
819 public static readonly BitSet _expr_in_stat102 = new BitSet(new ulong[]{0x8UL});
820 public static readonly BitSet _FUNC_in_stat128 = new BitSet(new ulong[]{0x4UL});
821 public static readonly BitSet _16_in_expr172 = new BitSet(new ulong[]{0x4UL});
822 public static readonly BitSet _expr_in_expr176 = new BitSet(new ulong[]{0x1CCD0UL})
    [all...]
ProfileTreeGrammar.cs 28 internal static readonly string[] tokenNames = new string[] {
50 public static readonly string[] ruleNames =
820 public static readonly BitSet _stat_in_prog48 = new BitSet(new ulong[]{0x3CCF2UL});
821 public static readonly BitSet _expr_in_stat63 = new BitSet(new ulong[]{0x2UL});
822 public static readonly BitSet _17_in_stat98 = new BitSet(new ulong[]{0x4UL});
823 public static readonly BitSet _ID_in_stat100 = new BitSet(new ulong[]{0x1CCD0UL});
824 public static readonly BitSet _expr_in_stat102 = new BitSet(new ulong[]{0x8UL});
825 public static readonly BitSet _FUNC_in_stat128 = new BitSet(new ulong[]{0x4UL});
826 public static readonly BitSet _16_in_expr172 = new BitSet(new ulong[]{0x4UL});
827 public static readonly BitSet _expr_in_expr176 = new BitSet(new ulong[]{0x1CCD0UL})
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/content/
ProcessText.java 24 boolean readonly =
32 finishButton.setText(readonly
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/
CharBufferTest.java 92 // readonly's contents should be the same as buf
93 CharBuffer readonly = buf.asReadOnlyBuffer(); local
94 assertNotSame(buf, readonly);
95 assertTrue(readonly.isReadOnly());
96 assertEquals(buf.position(), readonly.position());
97 assertEquals(buf.limit(), readonly.limit());
98 assertEquals(buf.isDirect(), readonly.isDirect());
99 assertEquals(buf.order(), readonly.order());
100 assertEquals(buf.capacity(), readonly.capacity());
101 assertContentEquals(buf, readonly);
428 CharBuffer readonly = buf.asReadOnlyBuffer(); local
    [all...]
DoubleBufferTest.java 113 // readonly's contents should be the same as buf
114 DoubleBuffer readonly = buf.asReadOnlyBuffer(); local
115 assertNotSame(buf, readonly);
116 assertTrue(readonly.isReadOnly());
117 assertEquals(buf.position(), readonly.position());
118 assertEquals(buf.limit(), readonly.limit());
119 assertEquals(buf.isDirect(), readonly.isDirect());
120 assertEquals(buf.order(), readonly.order());
121 assertContentEquals(buf, readonly);
123 // readonly's position, mark, and limit should be independent to bu
399 DoubleBuffer readonly = buf.asReadOnlyBuffer(); local
    [all...]
FloatBufferTest.java 89 // readonly's contents should be the same as buf
90 FloatBuffer readonly = buf.asReadOnlyBuffer(); local
91 assertNotSame(buf, readonly);
92 assertTrue(readonly.isReadOnly());
93 assertEquals(buf.position(), readonly.position());
94 assertEquals(buf.limit(), readonly.limit());
95 assertEquals(buf.isDirect(), readonly.isDirect());
96 assertEquals(buf.order(), readonly.order());
97 assertContentEquals(buf, readonly);
99 // readonly's position, mark, and limit should be independent to bu
397 FloatBuffer readonly = buf.asReadOnlyBuffer(); local
    [all...]
IntBufferTest.java 89 // readonly's contents should be the same as buf
90 IntBuffer readonly = buf.asReadOnlyBuffer(); local
91 assertNotSame(buf, readonly);
92 assertTrue(readonly.isReadOnly());
93 assertEquals(buf.position(), readonly.position());
94 assertEquals(buf.limit(), readonly.limit());
95 assertEquals(buf.isDirect(), readonly.isDirect());
96 assertEquals(buf.order(), readonly.order());
97 assertContentEquals(buf, readonly);
99 // readonly's position, mark, and limit should be independent to bu
375 IntBuffer readonly = buf.asReadOnlyBuffer(); local
    [all...]
LongBufferTest.java 89 // readonly's contents should be the same as buf
90 LongBuffer readonly = buf.asReadOnlyBuffer(); local
91 assertNotSame(buf, readonly);
92 assertTrue(readonly.isReadOnly());
93 assertEquals(buf.position(), readonly.position());
94 assertEquals(buf.limit(), readonly.limit());
95 assertEquals(buf.isDirect(), readonly.isDirect());
96 assertEquals(buf.order(), readonly.order());
97 assertContentEquals(buf, readonly);
99 // readonly's position, mark, and limit should be independent to bu
376 LongBuffer readonly = buf.asReadOnlyBuffer(); local
    [all...]
ShortBufferTest.java 88 // readonly's contents should be the same as buf
89 ShortBuffer readonly = buf.asReadOnlyBuffer(); local
90 assertNotSame(buf, readonly);
91 assertTrue(readonly.isReadOnly());
92 assertEquals(buf.position(), readonly.position());
93 assertEquals(buf.limit(), readonly.limit());
94 assertEquals(buf.isDirect(), readonly.isDirect());
95 assertEquals(buf.order(), readonly.order());
96 assertContentEquals(buf, readonly);
98 // readonly's position, mark, and limit should be independent to bu
362 ShortBuffer readonly = buf.asReadOnlyBuffer(); local
    [all...]

Completed in 1461 milliseconds

1 23 4 5 6 7 8 91011