HomeSort by relevance Sort by last modified time
    Searched defs:start (Results 226 - 250 of 3751) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/smack/src/org/xbill/DNS/tests/
primary.java 39 long start = System.currentTimeMillis(); local
56 System.out.println("; Load time: " + (end - start) + " ms");
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
verify.h 34 StateId start = fst.Start(); local
45 if (start == kNoStateId && ns > 0) {
46 LOG(ERROR) << "Verify: Fst start state ID unset";
48 } else if (start >= ns) {
49 LOG(ERROR) << "Verify: Fst start state ID exceeds number of states";
  /external/stlport/test/unit/cppunit/
cppunit_timer.h 34 void start() { function in class:Timer
  /external/valgrind/main/none/tests/s390x/
stcke.c 34 union stcke start, end; local
37 cc = stcke(start.buffer);
47 start.reader.time);
  /external/webkit/PerformanceTests/Parser/resources/
runner.js 71 var start = new Date();
74 var time = new Date() - start;
89 function start(runCount, runFunction) { function
  /external/webkit/Source/JavaScriptCore/jit/
JITCode.h 81 void* start() function in class:JSC::JITCode
  /external/webkit/Source/JavaScriptCore/runtime/
TimeoutChecker.h 47 void start() function in class:JSC::TimeoutChecker
  /external/webkit/Source/JavaScriptCore/wtf/
NonCopyingSort.h 35 inline void siftDown(RandomAccessIterator array, ptrdiff_t start, ptrdiff_t end, Predicate compareLess)
37 ptrdiff_t root = start;
55 ptrdiff_t start = (count - 2) / 2; local
57 while (start >= 0) {
58 siftDown(array, start, count - 1, compareLess);
59 start--;
64 void heapSort(RandomAccessIterator start, RandomAccessIterator end, Predicate compareLess)
66 ptrdiff_t count = end - start;
67 heapify(start, count, compareLess);
71 swap(start[endIndex], start[0])
    [all...]
  /external/webkit/Source/WebCore/bindings/v8/
ScriptProfiler.cpp 44 void ScriptProfiler::start(ScriptState* state, const String& title) function in class:WebCore::ScriptProfiler
78 m_progress->Start(total);
  /external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLInputElementCustom.cpp 103 int start = args[0]->Int32Value(); local
106 imp->setSelectionRange(start, end);
  /external/webkit/Source/WebCore/fileapi/
FileThread.cpp 53 bool FileThread::start() function in class:WebCore::FileThread
95 // Wait for FileThread::start() to complete to have m_threadID
  /external/webkit/Source/WebCore/html/
TimeRanges.cpp 34 TimeRanges::TimeRanges(float start, float end)
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)
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);
  /external/webkit/Source/WebCore/inspector/
InspectorStyleSheet.h 109 unsigned start = sourceData.range.start; local
111 ASSERT(start < end);
113 rawText = styleDeclaration.substring(start, end - start);
  /external/webkit/Source/WebCore/manual-tests/resources/
ArrayParameterTestApplet.java 15 public void start() method in class:ArrayParameterTestApplet
  /external/webkit/Source/WebCore/platform/cf/
RunLoopTimerCF.cpp 48 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/
SharedTimerHaiku.cpp 46 void start(double);
85 void SharedTimerHaiku::start(double fireTime) function in class:WebCore::SharedTimerHaiku
116 SharedTimerHaiku::instance()->start(fireTime);
  /external/webkit/Source/WebCore/rendering/
RenderTextFragment.h 44 unsigned start() const { return m_start; } function in class:WebCore::RenderTextFragment
  /external/webkit/Source/WebCore/storage/
IDBTransactionBackendImpl.cpp 98 start();
152 void IDBTransactionBackendImpl::start() function in class:WebCore::IDBTransactionBackendImpl
LocalStorageThread.cpp 52 bool LocalStorageThread::start() function in class:WebCore::LocalStorageThread
  /external/webkit/Source/WebCore/storage/wince/
LocalStorageThreadWinCE.cpp 41 bool LocalStorageThread::start() function in class:WebCore::LocalStorageThread
  /external/webkit/Source/WebCore/wml/
WMLTimerElement.cpp 120 void WMLTimerElement::start(int interval) function in class:WebCore::WMLTimerElement
  /external/webkit/Source/WebKit/android/WebCoreSupport/
WebUrlLoader.cpp 47 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/android/wds/
DebugServer.cpp 56 server->start();
80 void DebugServer::start() { function in class:android::WDS::DebugServer
85 ALOGE("Failed to start the server socket connection");
  /external/webkit/Source/WebKit/chromium/src/
AudioDestinationChromium.cpp 83 void AudioDestinationChromium::start() function in class:WebCore::AudioDestinationChromium
86 m_audioDevice->start();
  /external/webkit/Source/WebKit/qt/tests/hybridPixmap/
widget.cpp 39 void Widget::start() function in class:Widget

Completed in 1029 milliseconds

1 2 3 4 5 6 7 8 91011>>