Searched defs:Start (Results 251 - 275 of 883) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/webrtc/modules/utility/source/
H A Dprocess_thread_impl.cc43 int32_t ProcessThreadImpl::Start() function in class:webrtc::ProcessThreadImpl
53 int32_t retVal = _thread->Start(id);
/external/chromium_org/third_party/webrtc/system_wrappers/source/
H A Dthread_win.cc70 bool ThreadWindows::Start(unsigned int& thread_id) { function in class:webrtc::ThreadWindows
/external/chromium_org/third_party/webrtc/test/
H A Dframe_generator_capturer.cc99 if (!thread_->Start(thread_id)) {
126 void FrameGeneratorCapturer::Start() { function in class:webrtc::test::FrameGeneratorCapturer
H A Dvcm_capturer.cc69 void VcmCapturer::Start() { started_ = true; } function in class:webrtc::test::VcmCapturer
/external/chromium_org/tools/android/forwarder2/
H A Ddevice_controller.cc44 void DeviceController::Start() { function in class:forwarder2::DeviceController
101 new_listener->Start();
H A Dhost_controller.cc62 void HostController::Start() { function in class:forwarder2::HostController
63 thread_.Start();
/external/chromium_org/tools/perf/measurements/
H A Dsmoothness_controller.py48 tab.browser.platform.tracing_controller.Start(options, category_filter, 60)
52 def Start(self, tab): member in class:SmoothnessController
53 # Start the smooth marker for all smooth actions.
/external/chromium_org/tools/perf/metrics/
H A Dspeedindex.py31 def Start(self, _, tab): member in class:SpeedIndexMetric
32 """Start recording events.
40 self._impl.Start(tab)
44 assert self._impl, 'Must call Start() before Stop()'
81 def Start(self, tab): member in class:SpeedIndexImpl
128 def Start(self, tab): member in class:VideoSpeedIndexImpl
173 def Start(self, tab): member in class:PaintRectSpeedIndexImpl
/external/chromium_org/tools/telemetry/telemetry/core/backends/
H A Dbrowser_backend.py87 def Start(self): member in class:BrowserBackend
/external/chromium_org/ui/views/animation/
H A Dscroll_animator.cc46 void ScrollAnimator::Start(float velocity_x, float velocity_y) { function in class:views::ScrollAnimator
/external/chromium_org/ui/views/
H A Dmouse_watcher_aura.cc111 void MouseWatcher::Start() { function in class:views::MouseWatcher
/external/clang/lib/Analysis/
H A DFormatStringParsing.h33 const char *Start, const char *&Beg,
38 const char *Start, const char *&Beg, const char *E,
42 FormatSpecifier &CS, const char *Start,
52 const char *Start; member in class:clang::analyze_format_string::SpecifierResult
56 : Start(nullptr), Stop(stop) {}
59 : FS(fs), Start(start), Stop(false) {}
61 const char *getStart() const { return Start; }
63 bool hasValue() const { return Start != nullptr; }
/external/clang/tools/diagtool/
H A DDiagnosticNames.h49 group_iterator(const short *Start) : CurrentID(Start) { argument
/external/clang/tools/scan-view/
H A Dstartfile.py84 class Start(BaseController): class in class:Controller
97 _controllers['windows-default'] = Start('start')
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DStart.java8 public final class Start extends Node class in inherits:Node
13 public Start() method in class:Start
18 public Start( method in class:Start
29 return new Start(
/external/llvm/include/llvm/ADT/
H A DSetVector.h54 SetVector(It Start, It End) { argument
55 insert(Start, End);
111 void insert(It Start, It End) {
112 for (; Start != End; ++Start)
113 if (set_.insert(*Start))
114 vector_.push_back(*Start);
223 SmallSetVector(It Start, It End) {
224 this->insert(Start, End);
/external/llvm/lib/CodeGen/
H A DLiveInterval.cpp181 /// by [Start, End).
182 bool LiveRange::overlaps(SlotIndex Start, SlotIndex End) const { argument
183 assert(Start < End && "Invalid range");
185 return I != begin() && (--I)->end > Start;
282 SlotIndex Start = S.start, End = S.end;
283 iterator it = std::upper_bound(From, end(), Start);
290 if (B->start <= Start && B->end >= Start) {
297 assert(B->end <= Start &&
308 it = extendSegmentStartTo(it, Start);
[all...]
/external/llvm/lib/IR/
H A DDominators.cpp42 const TerminatorInst *TI = Start->getTerminator();
152 const BasicBlock *Start = BBE.getStart(); local
185 if (BB == Start)
H A DUse.cpp57 Use *Use::initTags(Use *const Start, Use *Stop) { argument
60 if (Start == Stop--)
61 return Start;
71 while (Start != Stop) {
84 return Start;
87 void Use::zap(Use *Start, const Use *Stop, bool del) { argument
88 while (Start != Stop)
91 ::operator delete(Start);
H A DUser.cpp61 Use *Start = static_cast<Use*>(Storage); local
62 Use *End = Start + Us;
64 Obj->OperandList = Start;
66 Use::initTags(Start, End);
75 User *Start = static_cast<User*>(Usr); local
76 Use *Storage = static_cast<Use*>(Usr) - Start->NumOperands;
/external/llvm/lib/Support/
H A DStreamableMemoryObject.cpp23 RawMemoryObject(const unsigned char *Start, const unsigned char *End) : argument
24 FirstChar(Start), LastChar(End) {
129 const unsigned char *Start, const unsigned char *End) {
130 return new RawMemoryObject(Start, End);
128 getNonStreamedMemoryObject( const unsigned char *Start, const unsigned char *End) argument
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64ELFStreamer.cpp124 MCSymbol *Start = getContext().CreateTempSymbol(); local
125 EmitLabel(Start);
136 const MCExpr *Value = MCSymbolRefExpr::Create(Start, getContext());
/external/llvm/unittests/ADT/
H A DDeltaAlgorithmTest.cpp64 std::set<unsigned> range(unsigned Start, unsigned End) { argument
66 while (Start != End)
67 S.insert(Start++);
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfMovieActivationDictionary_autogen.cpp11 SkPdfNativeObject* SkPdfMovieActivationDictionary::Start(SkPdfNativeDoc* doc) { function in class:SkPdfMovieActivationDictionary
12 SkPdfNativeObject* ret = get("Start", "");
20 return get("Start", "") != NULL;
/external/webrtc/src/system_wrappers/source/
H A Dthread_win.cc76 bool ThreadWindows::Start(unsigned int& threadID) function in class:webrtc::ThreadWindows

Completed in 4392 milliseconds

<<11121314151617181920>>