/frameworks/base/core/java/android/speech/tts/ |
AbstractSynthesisCallback.java | 33 abstract void stop(); method in class:AbstractSynthesisCallback
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
Animatable.java | 31 void stop(); method in interface:Animatable
|
/frameworks/base/libs/hwui/utils/ |
Timing.h | 31 struct timeval stop; local 32 gettimeofday(&stop, NULL); 33 long long elapsed = (stop.tv_sec * 1000000) - (mStart.tv_sec * 1000000) 34 + (stop.tv_usec - mStart.tv_usec);
|
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/java/src/org/webrtc/ |
VideoSource.java | 32 * Java version of VideoSourceInterface, extended with stop/restart 45 // Stop capture feeding this source. 46 public void stop() { method in class:VideoSource 47 nativeVideoFormatAtStop = stop(nativeSource); 50 // Restart capture feeding this source. stop() must have been called since 67 // This stop() returns an owned C++ VideoFormat pointer for use in restart() 69 private static native long stop(long nativeSource); method in class:VideoSource
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/ |
CommonErrorNode.java | 36 public Token stop; field in class:CommonErrorNode 39 public CommonErrorNode(TokenStream input, Token start, Token stop, 42 //System.out.println("start: "+start+", stop: "+stop); 43 if ( stop==null || 44 (stop.getTokenIndex() < start.getTokenIndex() && 45 stop.getType()!=Token.EOF) ) 48 // in follow set. So, stop will be 1 to left to start. adjust. 51 stop = start; 55 this.stop = stop [all...] |
/external/stlport/test/unit/cppunit/ |
cppunit_timer.h | 49 void stop() { function in class:Timer 51 LARGE_INTEGER stop; local 52 QueryPerformanceCounter(&stop); 55 m_stop.HighPart += (stop.HighPart - m_restart.HighPart); 56 if (stop.LowPart < m_restart.LowPart) { 57 if (m_restart.LowPart - stop.LowPart > m_stop.LowPart) { 60 m_stop.LowPart -= m_restart.LowPart - stop.LowPart; 63 if (stop.LowPart - m_restart.LowPart > 0xFFFFFFFF - m_stop.LowPart) { 66 m_stop.LowPart += stop.LowPart - m_restart.LowPart; 70 m_stop = stop; [all...] |
/ndk/tests/device/test-gnustl-full/unit/cppunit/ |
cppunit_timer.h | 49 void stop() { function in class:Timer 51 LARGE_INTEGER stop; local 52 QueryPerformanceCounter(&stop); 55 m_stop.HighPart += (stop.HighPart - m_restart.HighPart); 56 if (stop.LowPart < m_restart.LowPart) { 57 if (m_restart.LowPart - stop.LowPart > m_stop.LowPart) { 60 m_stop.LowPart -= m_restart.LowPart - stop.LowPart; 63 if (stop.LowPart - m_restart.LowPart > 0xFFFFFFFF - m_stop.LowPart) { 66 m_stop.LowPart += stop.LowPart - m_restart.LowPart; 70 m_stop = stop; [all...] |
/ndk/tests/device/test-stlport/unit/cppunit/ |
cppunit_timer.h | 49 void stop() { function in class:Timer 51 LARGE_INTEGER stop; local 52 QueryPerformanceCounter(&stop); 55 m_stop.HighPart += (stop.HighPart - m_restart.HighPart); 56 if (stop.LowPart < m_restart.LowPart) { 57 if (m_restart.LowPart - stop.LowPart > m_stop.LowPart) { 60 m_stop.LowPart -= m_restart.LowPart - stop.LowPart; 63 if (stop.LowPart - m_restart.LowPart > 0xFFFFFFFF - m_stop.LowPart) { 66 m_stop.LowPart += stop.LowPart - m_restart.LowPart; 70 m_stop = stop; [all...] |
/system/core/include/sysutils/ |
ServiceManager.h | 26 int stop(const char *name);
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/ |
CommonErrorNode.cs | 40 public IToken stop; field in class:Antlr.Runtime.Tree.CommonErrorNode 43 public CommonErrorNode(ITokenStream input, IToken start, IToken stop, 45 //System.out.println("start: "+start+", stop: "+stop); 46 if (stop == null || 47 (stop.TokenIndex < start.TokenIndex && 48 stop.Type != TokenTypes.EndOfFile)) { 50 // in follow set. So, stop will be 1 to left to start. adjust. 53 stop = start; 57 this.stop = stop [all...] |
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
CommonErrorNode.cs | 42 public IToken stop; field in class:Antlr.Runtime.Tree.CommonErrorNode 45 public CommonErrorNode( ITokenStream input, IToken start, IToken stop, 48 //System.out.println("start: "+start+", stop: "+stop); 49 if ( stop == null || 50 ( stop.TokenIndex < start.TokenIndex && 51 stop.Type != TokenTypes.EndOfFile ) ) 54 // in follow set. So, stop will be 1 to left to start. adjust. 57 stop = start; 61 this.stop = stop [all...] |
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
ITokenStream.cs | 73 * Return the text of all tokens from start to stop, inclusive. 79 string ToString(int start, int stop); 89 string ToString(IToken start, IToken stop);
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
ITokenStream.cs | 77 * Return the text of all tokens from start to stop, inclusive. 83 string ToString( int start, int stop ); 93 string ToString( IToken start, IToken stop );
|
CommonToken.cs | 52 * start/stop are not affected by changing this. 64 int stop; field in class:Antlr.Runtime.CommonToken 75 public CommonToken( ICharStream input, int type, int channel, int start, int stop ) 81 this.stop = stop; 103 stop = ( (CommonToken)oldToken ).stop; 117 if (start <= stop && stop < input.Count) 118 return input.Substring( start, stop - start + 1 ) [all...] |
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
ParserRuleReturnScope.java | 40 * from start and stop using the input stream's toString() method. I 51 public Token start, stop; field in class:ParserRuleReturnScope 53 public Object getStop() { return stop; }
|
TokenStream.java | 61 /** Return the text of all tokens from start to stop, inclusive. 66 public String toString(int start, int stop); 74 public String toString(Token start, Token stop);
|
CommonToken.java | 41 * start/stop are not affected by changing this. 52 protected int stop; field in class:CommonToken 58 public CommonToken(CharStream input, int type, int channel, int start, int stop) { 63 this.stop = stop; 82 stop = ((CommonToken)oldToken).stop; 102 if ( start<n && stop<n) { 103 return input.substring(start,stop); 112 * that start/stop indexes are not valid. It means that that inpu [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/ |
SharedTimer.h | 47 virtual void stop() = 0; 67 virtual void stop() function in class:WebCore::MainThreadSharedTimer
|
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
sliceobject.h | 17 A slice object containing start, stop, and step data members (the 24 PyObject *start, *stop, *step; /* not NULL */ member in struct:__anon63199 32 PyAPI_FUNC(PyObject *) PySlice_New(PyObject* start, PyObject* stop, 34 PyAPI_FUNC(PyObject *) _PySlice_FromIndices(Py_ssize_t start, Py_ssize_t stop); 36 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step); 38 Py_ssize_t *start, Py_ssize_t *stop,
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
sliceobject.h | 17 A slice object containing start, stop, and step data members (the 24 PyObject *start, *stop, *step; /* not NULL */ member in struct:__anon63322 32 PyAPI_FUNC(PyObject *) PySlice_New(PyObject* start, PyObject* stop, 34 PyAPI_FUNC(PyObject *) _PySlice_FromIndices(Py_ssize_t start, Py_ssize_t stop); 36 Py_ssize_t *start, Py_ssize_t *stop, Py_ssize_t *step); 38 Py_ssize_t *start, Py_ssize_t *stop,
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/tree/ |
CommonErrorNode.as | 10 public var stop:Token; variable 13 public function CommonErrorNode(input:TokenStream, start:Token, stop:Token, 16 //System.out.println("start: "+start+", stop: "+stop); 17 if ( stop==null || 18 (stop.tokenIndex < start.tokenIndex && 19 stop.type!=TokenConstants.EOF) ) 22 // in follow set. So, stop will be 1 to left to start. adjust. 25 stop = start; 29 this.stop = stop [all...] |
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
SuspendableTimer.cpp | 52 void SuspendableTimer::stop() function in class:WebCore::SuspendableTimer 54 TimerBase::stop(); 67 TimerBase::stop();
|
/external/qemu/ |
cache-utils.h | 15 static inline void flush_icache_range(unsigned long start, unsigned long stop) 22 stop1 = (stop + dsize - 1) & ~(dsize - 1); 29 stop1 = (stop + isize - 1) & ~(isize - 1);
|
/external/chromium_org/third_party/WebKit/Source/platform/graphics/ |
Gradient.cpp | 84 void Gradient::addColorStop(const Gradient::ColorStop& stop) 86 m_stops.append(stop); 94 return a.stop < b.stop; 166 const Gradient::ColorStop* stop = stopData; local 168 if (count < 1 || stop->stop > 0.0) 170 stop += count - 1; 171 if (count < 1 || stop->stop < 1.0 183 const Gradient::ColorStop* stop = stopData; local [all...] |
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
TokenStream.as | 54 /** Return the text of all tokens from start to stop, inclusive. 59 function toStringWithRange(start:int, stop:int):String; 67 function toStringWithTokenRange(start:Token, stop:Token):String;
|