Searched defs:start (Results 101 - 125 of 1486) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/platform/cf/
H A DRunLoopTimerCF.cpp48 void RunLoopTimerBase::start(double nextFireInterval, double repeatInterval) function in class:WebCore::RunLoopTimerBase
59 ASSERT_WITH_MESSAGE(m_timer, "Timer must have one of the start functions called before calling schedule().");
/external/webkit/Source/WebCore/platform/haiku/
H A DSharedTimerHaiku.cpp46 void start(double);
85 void SharedTimerHaiku::start(double fireTime) function in class:WebCore::SharedTimerHaiku
116 SharedTimerHaiku::instance()->start(fireTime);
/external/webkit/Source/WebCore/platform/text/brew/
H A DTextBoundariesBrew.cpp43 void findWordBoundary(const UChar* buffer, int len, int position, int* start, int* end) argument
46 *start = 0;
70 *start = startPos;
/external/webkit/Source/WebCore/rendering/
H A DBidiRun.h37 BidiRun(int start, int stop, RenderObject* object, BidiContext* context, WTF::Unicode::Direction dir) argument
38 : BidiCharacterRun(start, stop, context, dir)
H A DRenderTextFragment.h44 unsigned start() const { return m_start; } function in class:WebCore::RenderTextFragment
/external/webkit/Source/WebCore/storage/
H A DLocalStorageThread.cpp52 bool LocalStorageThread::start() function in class:WebCore::LocalStorageThread
/external/webkit/Source/WebCore/storage/wince/
H A DLocalStorageThreadWinCE.cpp41 bool LocalStorageThread::start() function in class:WebCore::LocalStorageThread
/external/webkit/Source/WebCore/svg/
H A DSVGLengthList.cpp39 const UChar* start = ptr; local
42 if (ptr == start)
46 String valueString(start, ptr - start);
H A DSVGStringList.cpp56 const UChar* start = ptr; local
59 if (ptr == start)
61 append(String(start, ptr - start));
H A DSVGZoomAndPan.cpp40 const UChar* start = attr->value().characters(); local
41 const UChar* end = start + attr->value().length();
42 parseZoomAndPan(start, end);
57 bool SVGZoomAndPan::parseZoomAndPan(const UChar*& start, const UChar* end) argument
59 if (skipString(start, end, disable, WTF_ARRAY_LENGTH(disable)))
61 else if (skipString(start, end, magnify, WTF_ARRAY_LENGTH(magnify)))
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DResourceLoaderAndroid.cpp40 PassRefPtr<ResourceLoaderAndroid> ResourceLoaderAndroid::start( function in class:WebCore::ResourceLoaderAndroid
48 return WebUrlLoader::start(client, handle, request, isMainResource, isMainFrame, isSync, webViewCore->webRequestContext());
/external/webkit/Source/WebKit/android/wds/
H A DDebugServer.cpp56 server->start();
80 void DebugServer::start() { function in class:android::WDS::DebugServer
85 LOGE("Failed to start the server socket connection");
/external/webkit/Source/WebKit/chromium/src/
H A DWebPopupMenuImpl.h81 virtual bool selectionRange(WebPoint& start, WebPoint& end) const { return false; } argument
/external/webkit/Source/WebKit/qt/WebCoreSupport/
H A DDeviceOrientationProviderQt.cpp41 void DeviceOrientationProviderQt::start() function in class:WebCore::DeviceOrientationProviderQt
43 m_rotation.start();
/external/webkit/Tools/QtTestBrowser/
H A Dfpstimer.cpp60 void FpsTimer::start() function in class:FpsTimer
/external/webp/src/dec/
H A Dbits.c22 const uint8_t* const start, const uint8_t* const end) {
24 assert(start);
25 assert(start <= end);
27 br->buf_ = start;
21 VP8InitBitReader(VP8BitReader* const br, const uint8_t* const start, const uint8_t* const end) argument
/external/wpa_supplicant_6/wpa_supplicant/src/common/
H A Dieee802_11_common.c66 * is used and they start with same data.
128 * @start: Pointer to the start of IEs
134 ParseRes ieee802_11_parse_elems(u8 *start, size_t len, argument
139 u8 *pos = start;
157 wpa_hexdump(MSG_MSGDUMP, "IEs", start, len);
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dp2p_hostapd.c39 int hostapd_p2p_set_noa(struct hostapd_data *hapd, u8 count, int start, argument
42 wpa_printf(MSG_DEBUG, "P2P: Set NoA parameters: count=%u start=%d "
43 "duration=%d", count, start, duration);
54 return hostapd_driver_set_noa(hapd, count, start, duration);
58 hapd->noa_start = start;
64 return hostapd_driver_set_noa(hapd, count, start, duration);
/external/wpa_supplicant_8/src/ap/
H A Dp2p_hostapd.c39 int hostapd_p2p_set_noa(struct hostapd_data *hapd, u8 count, int start, argument
42 wpa_printf(MSG_DEBUG, "P2P: Set NoA parameters: count=%u start=%d "
43 "duration=%d", count, start, duration);
54 return hostapd_driver_set_noa(hapd, count, start, duration);
58 hapd->noa_start = start;
64 return hostapd_driver_set_noa(hapd, count, start, duration);
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Dp2p_hostapd.c39 int hostapd_p2p_set_noa(struct hostapd_data *hapd, u8 count, int start, argument
42 wpa_printf(MSG_DEBUG, "P2P: Set NoA parameters: count=%u start=%d "
43 "duration=%d", count, start, duration);
54 return hostapd_driver_set_noa(hapd, count, start, duration);
58 hapd->noa_start = start;
64 return hostapd_driver_set_noa(hapd, count, start, duration);
/external/antlr/src/org/antlr/runtime/
H A DUnbufferedTokenStream.java71 public String toString(int start, int stop) { return "n/a"; } argument
73 public String toString(Token start, Token stop) { return "n/a"; } argument
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DTimerTaskTest.java24 Object sync = new Object(), start = new Object(); field in class:TimerTaskTest
41 synchronized (start) {
42 start.notify();
151 synchronized (start) {
154 start.wait();
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DWriterToASCI.java60 * @param start Offset from which to start writing characters
67 public void write(char chars[], int start, int length) argument
71 int n = length+start;
73 for (int i = start; i < n; i++)
/external/chromium/base/
H A Dfile_util_android.cc67 char *start, *trv, *suffp; local
101 start = trv + 1;
142 for (trv = start;;) {
/external/chromium/base/i18n/
H A Dbidi_line_iterator.cc46 int* start,
49 return ubidi_getVisualRun(bidi_, index, start, length);
52 void BiDiLineIterator::GetLogicalRun(int start, argument
56 ubidi_getLogicalRun(bidi_, start, end, level);
45 GetVisualRun(int index, int* start, int* length) argument

Completed in 397 milliseconds

1234567891011>>