HomeSort by relevance Sort by last modified time
    Searched refs:override (Results 101 - 125 of 470) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaBench.cs 126 public override bool CanRead { get { return false; } }
127 public override bool CanSeek { get { return false; } }
128 public override bool CanWrite { get { return true; } }
129 public override Int64 Length { get { return 0; } }
130 public override Int64 Position { get { return 0; } set { } }
131 public override void Flush() { }
132 public override long Seek(long offset, SeekOrigin origin) { return 0; }
133 public override void SetLength(long value) { }
134 public override int Read(byte[] buffer, int offset, int count) { return 0; }
136 public override void WriteByte(byte b)
    [all...]
LzmaAlone.cs 14 public override bool CanRead { get { return true; }}
15 public override bool CanWrite { get { return false; }}
16 public override bool CanSeek { get { return false; }}
17 public override long Length { get { return s1.Length + s2.Length - skipSize; } }
18 public override long Position
23 public override void Flush() { }
24 public override int Read(byte[] buffer, int offset, int count)
46 public override void Write(byte[] buffer, int offset, int count)
50 public override long Seek(long offset, System.IO.SeekOrigin origin)
54 public override void SetLength(long value)
    [all...]
  /external/chromium/chrome/browser/resources/
wrench_menu.js 51 * @override
100 * @override
108 * @override
121 * @override
147 * @override
163 * @override
207 * @override
235 * @override
248 * @override
282 * @override
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/
wrench_menu.js 51 * @override
100 * @override
108 * @override
121 * @override
147 * @override
163 * @override
207 * @override
235 * @override
248 * @override
282 * @override
    [all...]
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaDecoder.cs 374 public override bool CanRead { get { return true; }}
375 public override bool CanWrite { get { return true; }}
376 public override bool CanSeek { get { return true; }}
377 public override long Length { get { return 0; }}
378 public override long Position
383 public override void Flush() { }
384 public override int Read(byte[] buffer, int offset, int count)
388 public override void Write(byte[] buffer, int offset, int count)
391 public override long Seek(long offset, System.IO.SeekOrigin origin)
395 public override void SetLength(long value) {}
    [all...]
  /external/kernel-headers/original/linux/
icmpv6.h 27 override:1, member in struct:icmp6hdr::__anon21766::icmpv6_nd_advt
34 override:1,
72 #define icmp6_override icmp6_dataun.u_nd_advt.override
  /external/smack/src/com/kenai/jbosh/
ServiceLib.java 102 String override = System.getProperty(ofClass.getName()); local
103 if (override != null) {
104 result.add(override);
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
ANTLRFileStream.as 32 public override function get sourceName():String {
Lexer.as 44 public override function reset():void {
126 public override function get sourceName():String {
131 * for efficiency reasons. Subclass and override this method and
141 * char buffer start..stop. If there is a text override in 'text',
142 * use that to set the token's text. Override this method to emit
222 * text override.
238 public override function reportError(e:RecognitionException):void {
242 public override function getErrorMessage(e:RecognitionException, tokenNames:Array):String {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
NoViableAltException.cs 111 public override void GetObjectData(SerializationInfo info, StreamingContext context) {
121 public override string ToString() {
ANTLRFileStream.cs 85 override public string SourceName
EarlyExitException.cs 84 public override void GetObjectData(SerializationInfo info, StreamingContext context) {
Lexer.cs 61 /** <summary>Return the text matched so far for the current token or any text override.</summary> */
91 public override void Reset() {
169 public override string SourceName {
177 * for efficiency reasons. Subclass and override this method and
189 * char buffer start..stop. If there is a text override in 'text',
190 * use that to set the token's text. Override this method to emit
195 * If you are building trees, then you should also override
265 public override void ReportError(RecognitionException e) {
280 public override string GetErrorMessage(RecognitionException e, string[] tokenNames) {
MismatchedNotSetException.cs 67 public override string ToString() {
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
MismatchedTokenException.cs 121 public override void GetObjectData(SerializationInfo info, StreamingContext context)
131 public override string ToString()
NoViableAltException.cs 127 public override void GetObjectData(SerializationInfo info, StreamingContext context)
138 public override string ToString()
  /external/chromium_org/third_party/libjingle/source/talk/base/
common.h 84 // Even for release builds, allow for the override of LogAssert. Though no
86 // and allow applications to override the assert behavior.
180 // virtual void foo() OVERRIDE;
182 #define OVERRIDE override
184 #define OVERRIDE override
186 #define OVERRIDE
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/arch/x86/tests/
jmpfar.asm 15 ;mov ax, [1234:5678] ; YASM: invalid segment in effective address; NASM: invalid segment override
  /external/chromium_org/tools/json_schema_compiler/
dart_generator.py 73 override = self._GetOverride([type_.name], document_with=type_)
74 c.Cblock(override if override is not None else self._GenerateType(type_))
154 override = self._GetOverride([type_.name, prop.name], document_with=prop)
155 c.Concat(override if override is not None
168 # Check if there's an override for this method.
169 override = self._GetOverride([type_.name, prop.name], document_with=prop)
170 c.Cblock(override if override is not Non
    [all...]
  /external/v8/src/
regexp.js 310 var override = lastMatchInfoOverride;
311 if (override.length <= 3) return '';
312 return override[override.length - 3];
336 var override = lastMatchInfoOverride;
337 start_index = override[override.length - 2];
338 subject = override[override.length - 1];
351 var override = lastMatchInfoOverride
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
dictobject.h 132 supports PyMapping_Keys() and PyObject_GetItem()). If override is true,
138 int override);
141 iterable objects of length 2. If override is true, the last occurrence
147 int override);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
dictobject.h 132 supports PyMapping_Keys() and PyObject_GetItem()). If override is true,
138 int override);
141 iterable objects of length 2. If override is true, the last occurrence
147 int override);
  /bionic/libc/bionic/
strerror_r.cpp 57 errno_restorer.override(ERANGE);
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/
CommonErrorNode.as 33 public override function get isNil():Boolean {
62 public override function toString():String {
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
FastQueue.cs 118 public override string ToString() {

Completed in 822 milliseconds

1 2 3 45 6 7 8 91011>>