Searched refs:Trim (Results 1 - 25 of 36) sorted by relevance

12

/external/chromium_org/media/mp4/
H A Doffset_byte_queue_unittest.cc60 TEST_F(OffsetByteQueueTest, Trim) {
61 EXPECT_TRUE(queue_->Trim(128));
62 EXPECT_TRUE(queue_->Trim(384));
66 EXPECT_TRUE(queue_->Trim(400));
78 EXPECT_TRUE(queue_->Trim(512));
85 EXPECT_FALSE(queue_->Trim(513));
89 EXPECT_TRUE(queue_->Trim(512));
H A Doffset_byte_queue.h45 bool Trim(int64 max_offset);
H A Doffset_byte_queue.cc50 bool OffsetByteQueue::Trim(int64 max_offset) { function in class:media::OffsetByteQueue
H A Dmp4_stream_parser.cc415 if (!queue_.Trim(mdat_tail_))
566 queue_.Trim(std::min(mdat_tail_, offset));
/external/chromium/chrome/browser/net/
H A Dreferrer.h65 bool Trim(double reduce_rate, double threshold);
112 // Trim the Referrer, by first diminishing (scaling down) the subresource
115 bool Trim(double reduce_rate, double threshold);
H A Dreferrer.cc106 bool Referrer::Trim(double reduce_rate, double threshold) { function in class:chrome_browser_net::Referrer
109 if (!it->second.Trim(reduce_rate, threshold))
117 bool ReferrerValue::Trim(double reduce_rate, double threshold) { function in class:chrome_browser_net::ReferrerValue
139 // of how best to optimize the learning and pruning (Trim) algorithm at this
/external/chromium_org/chrome/browser/net/
H A Dreferrer.h65 bool Trim(double reduce_rate, double threshold);
112 // Trim the Referrer, by first diminishing (scaling down) the subresource
115 bool Trim(double reduce_rate, double threshold);
H A Dreferrer.cc106 bool Referrer::Trim(double reduce_rate, double threshold) { function in class:chrome_browser_net::Referrer
109 if (!it->second.Trim(reduce_rate, threshold))
117 bool ReferrerValue::Trim(double reduce_rate, double threshold) { function in class:chrome_browser_net::ReferrerValue
139 // of how best to optimize the learning and pruning (Trim) algorithm at this
/external/lzma/CPP/Common/
H A DListFileUtils.cpp61 t.Trim();
70 t.Trim();
H A DCommandLineParser.cpp34 sTemp.Trim();
/external/chromium_org/net/test/embedded_test_server/
H A Dhttp_request.cc22 std::string Trim(const std::string& value) { function in namespace:net::test_server::__anon9743
115 Trim(header_line.substr(1, header_line.size() - 1));
121 header_name = Trim(header_line.substr(0, delimiter_pos));
122 std::string header_value = Trim(header_line.substr(
/external/lzma/CPP/7zip/UI/Console/
H A DUserInputUtils.cpp31 scannedString.Trim();
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DStringExtensions.cs152 return str.Trim();
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStringExtensions.cs147 return str.Trim();
/external/chromium/third_party/libjingle/source/talk/p2p/client/
H A Dhttpportallocator.cc46 void Trim(std::string& str) { function in namespace:__anon3375
80 Trim(key);
81 Trim(value);
/external/chromium_org/third_party/libjingle/source/talk/p2p/client/
H A Dhttpportallocator.cc48 void Trim(std::string& str) { function in namespace:__anon12232
82 Trim(key);
83 Trim(value);
/external/chromium_org/v8/src/
H A Dlist.h156 INLINE(void Trim(AllocationPolicy allocator = AllocationPolicy()));
H A Dlist-inl.h174 void List<T, P>::Trim(P alloc) { function in class:v8::internal::List
/external/chromium_org/third_party/libjingle/source/talk/media/devices/
H A Dlinuxdevicemanager.cc171 static std::string Trim(const std::string& s, const std::string& drop = " \t") { function in namespace:cricket
238 return Trim(device_name);
/external/chromium_org/third_party/re2/re2/
H A Dcompile.cc186 void Trim();
282 void Compiler::Trim() { function in class:re2::Compiler
1053 // Trim instruction to minimum array and transfer to Prog.
1054 Trim();
/external/regex-re2/re2/
H A Dcompile.cc185 void Trim();
281 void Compiler::Trim() { function in class:re2::Compiler
1052 // Trim instruction to minimum array and transfer to Prog.
1053 Trim();
/external/chromium_org/media/base/
H A Daudio_buffer_unittest.cc238 TEST(AudioBufferTest, Trim) {
259 // Trim off 10 frames from the start.
267 // Trim off 10 frames from the end.
275 // Trim off 50 more from the start.
283 // Trim off the last 30 frames.
/external/chromium/third_party/libjingle/source/talk/session/phone/
H A Ddevicemanager.cc734 static std::string Trim(const std::string& s, const std::string& drop = " \t") { function in namespace:cricket
801 return Trim(device_name);
/external/sonivox/jet_tools/JetCreator/
H A Dmidifile.py1169 def Trim (self, start, end, slide=True, chase_controllers=True, delete_meta_events=False, quantize=0): member in class:MIDITrack
1175 midi_file_logger.debug('Trim: Moving event %s to %d' % (event.__str__(), start))
1180 midi_file_logger.debug('Trim: Moving event %s to %d' % (event.__str__(), end))
1194 midi_file_logger.debug('Trim: insert new controller events at %d:' % start)
1199 midi_file_logger.debug('Trim: deleting events up to event %d' % start_event)
1212 midi_file_logger.debug('Trim: trimming section starting at event %d' % end_event)
1219 midi_file_logger.debug('Trim: trimming note that extends past end %s' % event.TimeEventStr(self.stream.timebase))
1224 midi_file_logger.debug('Trim: initial end-of-track: %d' % self.end_of_track)
1229 midi_file_logger.debug('Trim: sliding events: %d' % start)
1236 midi_file_logger.debug('Trim
1372 def Trim (self, start, end, quantize=0, chase_controllers=True): member in class:MIDIFile
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DProfiler.cs630 protected virtual int[] Trim(int[] X, int n) { method in class:Antlr.Runtime.Debug.Profiler

Completed in 710 milliseconds

12