Searched defs:start (Results 201 - 225 of 1817) sorted by relevance

1234567891011>>

/external/valgrind/main/coregrind/
H A Dpub_core_aspacemgr.h78 /* 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:__anon13787
148 fixed requests. If start is zero, a floating request is issued; if
152 ( Addr start, SizeT len, /*OUT*/Bool* ok );
179 extern Bool VG_(am_notify_mprotect)( Addr start, SizeT len, UInt prot );
187 extern Bool VG_(am_notify_munmap)( Addr start, SizeT len );
195 ( Addr start, Size
375 Addr start; member in struct:__anon13790
[all...]
/external/webkit/Source/JavaScriptCore/wtf/
H A DPageReservation.h43 Before using memory it must be committed by calling commit, which is passed start
77 void commit(void* start, size_t size) argument
80 ASSERT(isPageAligned(start));
82 ASSERT(contains(start, size));
85 OSAllocator::commit(start, size, m_writable, m_executable);
88 void decommit(void* start, size_t size) argument
91 ASSERT(isPageAligned(start));
93 ASSERT(contains(start, size));
96 OSAllocator::decommit(start, size);
/external/webkit/Source/JavaScriptCore/yarr/
H A DYarrJIT.h50 typedef int (*YarrJITCode)(const UChar* input, unsigned start, unsigned length, int* output) YARR_CALL;
66 int execute(const UChar* input, unsigned start, unsigned length, int* output) argument
68 return reinterpret_cast<YarrJITCode>(m_ref.m_code.executableAddress())(input, start, length, output);
81 int execute(YarrCodeBlock& jitObject, const UChar* input, unsigned start, unsigned length, int* output);
/external/webkit/Source/WebCore/bindings/js/
H A DCachedScriptSourceProvider.h48 JSC::UString getRange(int start, int end) const { return JSC::UString(m_cachedScript->script().characters() + start, end - start); } argument
H A DStringSourceProvider.h46 JSC::UString getRange(int start, int end) const { return JSC::UString(m_source.characters() + start, end - start); } argument
/external/webkit/Source/WebCore/css/
H A DCSSPropertySourceData.cpp46 : start(0)
51 SourceRange::SourceRange(unsigned start, unsigned end) argument
52 : start(start)
H A DCSSPropertySourceData.h46 SourceRange(unsigned start, unsigned end);
48 unsigned start; member in struct:WebCore::SourceRange
/external/webkit/Source/WebCore/dom/
H A DSpaceSplitString.cpp56 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/fileapi/
H A DFileThread.cpp53 bool FileThread::start() function in class:WebCore::FileThread
95 // Wait for FileThread::start() to complete to have m_threadID
/external/webkit/Source/WebCore/html/
H A DImageResizerThread.cpp53 bool ImageResizerThread::start(PassRefPtr<SharedBuffer> imageData, AsyncImageResizer::CallbackInfo* callbackInfo, AsyncImageResizer::OutputType outputType, IntSize desiredBounds, float quality, AsyncImageResizer::AspectRatioOption aspectRatioOption, AsyncImageResizer::OrientationOption orientationOption) function in class:WebCore::ImageResizerThread
H A DTimeRanges.cpp34 TimeRanges::TimeRanges(float start, float end) argument
36 add(start, end);
50 float TimeRanges::start(unsigned index, ExceptionCode& ec) const function in class:TimeRanges
68 void TimeRanges::add(float start, float end) argument
70 ASSERT(start <= end);
72 Range addedRange(start, end);
115 if (time >= start(n, unused) && time <= end(n, unused))
127 float startTime = start(ndx, unused);
H A DTimeRanges.h44 static PassRefPtr<TimeRanges> create(float start, float end) argument
46 return adoptRef(new TimeRanges(start, end));
52 float start(unsigned index, ExceptionCode&) const;
55 void add(float start, float end);
63 TimeRanges(float start, float end);
66 // We consider all the Ranges to be semi-bounded as follow: [start, end[
69 Range(float start, float end) argument
71 m_start = start;
/external/webkit/Source/WebCore/inspector/
H A DInspectorStyleSheet.h109 unsigned start = sourceData.range.start; local
111 ASSERT(start < end);
113 rawText = styleDeclaration.substring(start, end - start);
/external/webkit/Source/WebCore/manual-tests/resources/
H A DArrayParameterTestApplet.class ... _r1/s?defs= " () public void init () public void start () public void stop () public void destroy () public void arrayFunction (java ...
/external/webkit/Source/WebCore/platform/qt/
H A DSharedTimerQt.cpp48 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/WebCore/platform/text/
H A DTextBoundaries.cpp96 void findWordBoundary(const UChar* chars, int len, int position, int* start, int* end) argument
102 *start = textBreakPrevious(it);
/external/webkit/Source/WebCore/svg/
H A DSVGDocument.cpp83 void SVGDocument::startPan(const FloatPoint& start) argument
86 m_translate = FloatPoint(start.x() - rootElement()->currentTranslate().x(), rootElement()->currentTranslate().y() + start.y());
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DWebUrlLoader.cpp47 PassRefPtr<WebUrlLoader> WebUrlLoader::start(FrameLoaderClient* client, WebCore::ResourceHandle* resourceHandle, function in class:android::WebUrlLoader
56 loader->m_loaderClient->start(isMainResource, isMainFrame, isSync, context);
/external/webkit/Source/WebKit/chromium/src/
H A DAudioDestinationChromium.cpp83 void AudioDestinationChromium::start() function in class:WebCore::AudioDestinationChromium
86 m_audioDevice->start();
/external/webkit/Source/WebKit2/WebProcess/Downloads/curl/
H A DDownloadCurl.cpp36 void Download::start(WebPage* initiatingWebPage) function in class:WebKit::Download
/external/webkit/Source/WebKit2/WebProcess/Downloads/qt/
H A DDownloadQt.cpp35 void Download::start(WebPage* initiatingWebPage) function in class:WebKit::Download
/external/webkit/Source/WebKit2/WebProcess/Downloads/soup/
H A DDownloadSoup.cpp36 void Download::start(WebPage* initiatingWebPage) function in class:WebKit::Download
/external/webkit/Tools/DumpRenderTree/qt/
H A DTextInputControllerQt.cpp133 void TextInputController::setMarkedText(const QString& string, int start, int end) argument
136 QInputMethodEvent::Attribute selection(QInputMethodEvent::Selection, start, end, QVariant());
/external/webkit/Tools/Scripts/webkitpy/layout_tests/port/
H A Dhttp_server.py30 """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/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DCommonToken.cs50 * start/stop are not affected by changing this.
59 int start; field in class:Antlr.Runtime.CommonToken
71 public CommonToken(ICharStream input, int type, int channel, int start, int stop) { argument
75 this.start = start;
94 start = ((CommonToken)oldToken).start;
107 if (start < input.Count && stop < input.Count)
108 text = input.Substring(start, stop - start
[all...]

Completed in 9574 milliseconds

1234567891011>>