HomeSort by relevance Sort by last modified time
    Searched defs:stop (Results 1 - 25 of 638) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/bindings/js/
ScriptProfiler.cpp 49 PassRefPtr<ScriptProfile> ScriptProfiler::stop(ScriptState* state, const String& title) function in class:WebCore::ScriptProfiler
  /external/chromium/chrome/browser/safe_browsing/
chunk_range.h 22 // Each ChunkRange represents a continuous range of chunk numbers [start, stop].
27 ChunkRange(int start, int stop);
31 inline int stop() const { return stop_; } function in class:ChunkRange
34 return start_ == rhs.start() && stop_ == rhs.stop();
  /external/webkit/Source/WebCore/platform/graphics/haiku/
GradientHaiku.cpp 56 const ColorStop& stop = m_stops[i]; local
58 color.red = static_cast<uint8>(stop.red * 255);
59 color.green = static_cast<uint8>(stop.green * 255);
60 color.blue = static_cast<uint8>(stop.blue * 255);
61 color.alpha = static_cast<uint8>(stop.alpha * 255);
62 m_gradient->AddColor(color, stop.stop);
  /external/webkit/Tools/Scripts/webkitpy/common/thread/
threadedmessagequeue.py 44 def stop(self): member in class:ThreadedMessageQueue
  /frameworks/base/core/java/android/os/
SystemService.java 27 /** Request that the init daemon stop a named service. */
28 public static void stop(String name) { method in class:SystemService
29 SystemProperties.set("ctl.stop", name);
  /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
  /development/tools/glesv2debugger/src/com/android/glesv2debugger/
Activator.java 55 * org.eclipse.ui.plugin.AbstractUIPlugin#stop(org.osgi.framework.BundleContext
59 public void stop(BundleContext context) throws Exception { method in class:Activator
61 super.stop(context);
  /external/antlr/src/org/antlr/runtime/
ParserRuleReturnScope.java 38 * from start and stop using the input stream's toString() method. I
49 public Token start, stop; field in class:ParserRuleReturnScope
51 public Object getStop() { return stop; }
  /external/javasqlite/src/main/java/SQLite/
Vm.java 61 public native void stop() throws SQLite.Exception; method in class:Vm
  /external/skia/src/core/
SkBuffer.cpp 68 char* stop = p + n; local
71 } while (p < stop);
SkPtrRecorder.cpp 6 Pair* stop = fList.end(); local
7 while (p < stop) {
  /external/webkit/Source/WebCore/dom/
ActiveDOMObject.cpp 77 void ActiveDOMObject::stop() function in class:WebCore::ActiveDOMObject
  /external/webkit/Source/WebCore/page/
SuspendableTimer.cpp 54 void SuspendableTimer::stop() function in class:WebCore::SuspendableTimer
56 TimerBase::stop();
69 TimerBase::stop();
  /external/webkit/Source/WebCore/platform/
SharedTimer.h 47 virtual void stop() = 0;
70 virtual void stop() function in class:WebCore::MainThreadSharedTimer
  /external/webkit/Source/WebCore/platform/sql/
SQLiteTransaction.cpp 90 void SQLiteTransaction::stop() function in class:WebCore::SQLiteTransaction
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
DeviceMotionProviderQt.cpp 45 void DeviceMotionProviderQt::stop() function in class:WebCore::DeviceMotionProviderQt
47 m_acceleration.stop();
48 m_deviceOrientation->stop();
DeviceOrientationProviderQt.cpp 46 void DeviceOrientationProviderQt::stop() function in class:WebCore::DeviceOrientationProviderQt
48 m_rotation.stop();
  /external/webkit/Source/WebKit2/UIProcess/
ResponsivenessTimer.cpp 44 m_timer.stop();
49 m_timer.stop();
60 m_timer.stop();
74 void ResponsivenessTimer::stop() function in class:WebKit::ResponsivenessTimer
82 m_timer.stop();
  /frameworks/base/media/libmediaplayerservice/nuplayer/
NuPlayerSource.h 31 virtual void stop() {} function in struct:android::NuPlayer::Source
  /system/core/nexus/
DhcpClient.cpp 102 mServiceManager->stop("dhcpcd");
114 int DhcpClient::stop() { function in class:DhcpClient
128 if (mServiceManager->stop("dhcpcd")) {
129 LOGW("Failed to stop DHCP service (%s)", strerror(errno));
VpnController.cpp 44 int VpnController::stop() { function in class:VpnController
  /system/vold/
NetlinkHandler.cpp 41 int NetlinkHandler::stop() { function in class:NetlinkHandler
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis2/
Visualization2RS.java 41 public void stop() { method in class:Visualization2RS
42 super.stop();
  /bionic/libc/kernel/arch-sh/asm/
timer.h 22 int (*stop)(void); member in struct:sys_timer_ops

Completed in 4835 milliseconds

1 2 3 4 5 6 7 8 91011>>