HomeSort by relevance Sort by last modified time
    Searched defs:start (Results 426 - 450 of 3727) sorted by null

<<11121314151617181920>>

  /external/valgrind/main/coregrind/
pub_core_aspacemgr.h 78 /* Is the area [start .. start+len-1] validly accessible by the
86 // ( Addr start, SizeT len, UInt prot );
93 ( Addr start, SizeT len, UInt prot );
132 Addr start; member in struct:__anon16922
148 fixed requests. If start is zero, a floating request is issued; if
152 ( Addr start, SizeT len, /*OUT*/Bool* ok );
154 /* Returns True if [start, start + len - 1] is covered by a single
163 ( Addr start, SizeT len)
382 Addr start; member in struct:__anon16925
    [all...]
  /external/webkit/Source/WebCore/css/
CSSPropertySourceData.h 46 SourceRange(unsigned start, unsigned end);
48 unsigned start; member in struct:WebCore::SourceRange
  /external/webkit/Source/WebCore/dom/
DynamicNodeList.cpp 68 Node* DynamicNodeList::itemForwardsFromCurrent(Node* start, unsigned offset, int remainingOffset) const
71 for (Node* n = start; n; n = n->traverseNextNode(m_rootNode.get())) {
86 Node* DynamicNodeList::itemBackwardsFromCurrent(Node* start, unsigned offset, int remainingOffset) const
89 for (Node* n = start; n; n = n->traversePreviousNode(m_rootNode.get())) {
107 Node* start = m_rootNode->firstChild(); local
112 start = m_caches->lastItem;
118 return itemBackwardsFromCurrent(start, offset, remainingOffset);
119 return itemForwardsFromCurrent(start, offset, remainingOffset);
SpaceSplitString.cpp 56 unsigned start = 0; local
58 while (start < length && isHTMLSpace(characters[start]))
59 ++start;
60 if (start >= length)
62 unsigned end = start + 1;
66 m_vector.append(AtomicString(characters + start, end - start));
68 start = end + 1;
  /external/webkit/Source/WebCore/html/
HTMLIFrameElement.cpp 79 unsigned start = 0; local
81 while (start < length && isASCIISpace(characters[start]))
82 ++start;
83 if (start >= length)
85 unsigned end = start + 1;
90 String sandboxToken = String(characters + start, end - start);
100 start = end + 1;
HTMLMarqueeElement.cpp 119 void HTMLMarqueeElement::start() function in class:WebCore::HTMLMarqueeElement
122 marqueeRenderer->start();
  /external/webkit/Source/WebCore/manual-tests/resources/
ArrayParameterTestApplet.class 
  /external/webkit/Source/WebCore/platform/
FileStream.cpp 54 void FileStream::start() function in class:WebCore::FileStream
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
TilesProfiler.cpp 49 void TilesProfiler::start() function in class:WebCore::TilesProfiler
  /external/webkit/Source/WebCore/platform/graphics/skia/
GradientSkia.cpp 83 size_t start = 0; local
88 start = 1;
96 start = 1;
99 for (size_t i = start; i < start + count; i++) {
108 pos[start + count] = WebCoreFloatToSkScalar(1.0);
109 colors[start + count] = colors[start + count - 1];
  /external/webkit/Source/WebCore/platform/qt/
SharedTimerQt.cpp 48 void start(double);
95 void SharedTimerQt::start(double fireTime) function in class:WebCore::SharedTimerQt
106 m_timer.start(intervalInMS, this);
136 SharedTimerQt::inst()->start(fireTime);
  /external/webkit/Source/WebKit2/Platform/gtk/
RunLoopGtk.cpp 111 void RunLoop::TimerBase::start(double fireInterval, bool repeat) function in class:RunLoop::TimerBase
  /external/webkit/Source/WebKit2/Shared/
WebMemorySampler.cpp 55 void WebMemorySampler::start(const double interval) function in class:WebKit::WebMemorySampler
64 void WebMemorySampler::start(const SandboxExtension::Handle& sampleLogFileHandle, const String& sampleLogFilePath, const double interval) function in class:WebKit::WebMemorySampler
71 start(interval);
  /external/webkit/Tools/DumpRenderTree/gtk/
TextInputController.cpp 58 int start = static_cast<int>(JSValueToNumber(context, arguments[1], exception)); local
64 DumpRenderTreeSupportGtk::setComposition(view, stringBuffer.get(), start, end);
137 int start, end; local
138 if (!DumpRenderTreeSupportGtk::selectedRange(view, &start, &end))
142 arrayValues[0] = JSValueMakeNumber(context, start);
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
http_server.py 30 """A class to help start/stop the lighttpd server used by layout tests."""
109 def start(self): member in class:Lighttpd
219 # Wait for server to start.
226 raise google.httpd_utils.HttpdNotStarted('Failed to start httpd.')
  /external/webkit/Tools/WebKitTestRunner/qt/
TestControllerQt.cpp 53 void start(int msec) function in class:WTR::TestControllerRunLoop
89 TestControllerRunLoop::instance()->start(static_cast<int>(timeout * 1000));
  /external/wpa_supplicant_8/src/ap/
eap_user_db.c 25 char *buf, *start; local
34 start = buf;
35 while (*start) {
36 char *pos3 = os_strchr(start, ',');
40 eap_server_get_type(start,
44 if (os_strcmp(start, "TTLS-PAP") == 0) {
48 if (os_strcmp(start, "TTLS-CHAP") == 0) {
52 if (os_strcmp(start, "TTLS-MSCHAP") == 0) {
56 if (os_strcmp(start, "TTLS-MSCHAPV2") == 0) {
61 start);
    [all...]
  /external/wpa_supplicant_8/src/wps/
wps_er_ssdp.c 26 char buf[MULTICAST_MAX_READ], *pos, *pos2, *start; local
59 for (start = buf; start && *start; start = pos) {
60 pos = os_strchr(start, '\n');
66 if (os_strstr(start, "schemas-wifialliance-org:device:"
69 if (os_strstr(start, "schemas-wifialliance-org:service:"
72 if (os_strncasecmp(start, "LOCATION:", 9) == 0) {
73 start += 9
    [all...]
  /frameworks/av/cmds/stagefright/
SineSource.cpp 27 status_t SineSource::start(MetaData *params) { function in class:android::SineSource
  /frameworks/av/libvideoeditor/lvpp/
DummyVideoSource.cpp 68 status_t DummyVideoSource::start(MetaData *params) { function in class:android::DummyVideoSource
69 ALOGV("start: E");
87 ALOGV("start: X");
  /frameworks/av/libvideoeditor/vss/stagefrightshells/src/
MediaBufferPuller.cpp 49 void MediaBufferPuller::start() { function in class:android::MediaBufferPuller
125 // Wait for the start signal
152 // Wait for the start signal
  /frameworks/av/media/libmediaplayerservice/nuplayer/mp4/
MP4Source.cpp 33 mListener->start();
126 void MP4Source::start() { function in class:android::MP4Source
127 mLooper->start(false /* runOnCallingThread */);
128 mParser->start(new StreamSource(mSource));
  /frameworks/av/media/libstagefright/rtsp/
UDPPusher.cpp 62 void UDPPusher::start() { function in class:android::UDPPusher
VideoSource.h 48 virtual status_t start(MetaData *params) { function in class:android::VideoSource
  /frameworks/av/services/camera/libcameraservice/camera2/
BurstCapture.cpp 41 status_t BurstCapture::start(Vector<CameraMetadata> &/*metadatas*/, function in class:android::camera2::BurstCapture
95 jpeg->start(buffers, 1);

Completed in 2417 milliseconds

<<11121314151617181920>>