Searched defs:Advance (Results 26 - 50 of 77) sorted by relevance

1234

/external/sfntly/cpp/src/sfntly/table/bitmap/
H A Dsmall_glyph_metrics.cc46 int32_t SmallGlyphMetrics::Advance() { function in class:sfntly::SmallGlyphMetrics
96 int32_t SmallGlyphMetrics::Builder::Advance() { function in class:sfntly::SmallGlyphMetrics::Builder
/external/chromium_org/ash/test/
H A Dtest_session_state_animator.cc117 void TestSessionStateAnimator::Advance(const base::TimeDelta& duration) { function in class:ash::test::TestSessionStateAnimator
/external/chromium_org/base/i18n/
H A Dstreaming_utf8_validator_unittest.cc187 PartialIterator() : index_(0), prefix_length_(0) { Advance(); }
195 Advance();
214 void Advance() { function in class:base::__anon2293::PartialIterator
/external/chromium_org/base/
H A Did_map.h182 void Advance() { function in class:IDMap::Iterator
H A Dpickle.cc39 inline void PickleIterator::Advance(size_t size) { function in class:PickleIterator
55 Advance(sizeof(Type));
66 Advance(num_bytes);
H A Dvalues.h354 void Advance() { ++it_; } function in class:base::DictionaryValue::Iterator
/external/chromium_org/chrome/browser/safe_browsing/
H A Dprotocol_parser.cc44 void Advance(size_t l) { function in class:__anon4604::BufferReader
54 Advance(length()); // poison
59 Advance(l);
94 Advance(eol);
98 Advance(1);
114 Advance(length_);
232 reader.Advance(hash_len * hash_count);
/external/chromium_org/components/domain_reliability/
H A Dtest_util.cc124 void MockTime::Advance(base::TimeDelta delta) { function in class:domain_reliability::MockTime
/external/chromium_org/sdch/open-vcdiff/src/
H A Dheaderparser.cc26 void ParseableChunk::Advance(size_t number_of_bytes) { function in class:open_vcdiff::ParseableChunk
82 parseable_chunk_.Advance(1);
/external/chromium_org/v8/src/
H A Ddata-flow.h29 Advance();
34 void Advance();
202 void Advance() { it_.Advance(); } function in class:v8::internal::BASE_EMBEDDED::BASE_EMBEDDED
223 for (Iterator it(&other, zone); !it.Done(); it.Advance()) {
H A Dinterface.h145 // for (auto it = interface->iterator(); !it.done(); it.Advance()) {
159 void Advance() { entry_ = exports_->Next(entry_); } function in class:v8::internal::Interface::Iterator
H A Djson-parser.h51 inline void Advance() { function in class:v8::internal::BASE_EMBEDDED
68 Advance();
74 Advance();
79 Advance();
203 // Advance to the first character (possibly EOS)
318 Advance();
325 Advance();
331 Advance();
514 Advance();
518 Advance();
[all...]
H A Dtypes.cc483 for (Iterator<i::Map> it = that->Classes(); !it.Done(); it.Advance()) {
496 for (Iterator<i::Map> it = this->Classes(); !it.Done(); it.Advance()) {
563 for (Iterator<i::Object> it = this->Constants(); !it.Done(); it.Advance()) {
916 void TypeImpl<Config>::Iterator<T>::Advance() { function in class:v8::internal::TypeImpl::Iterator
/external/llvm/lib/CodeGen/
H A DTargetSchedule.cpp204 int Advance = STI->getReadAdvanceCycles(UseDesc, UseIdx, WriteID); local
205 if (Advance > 0 && (unsigned)Advance > Latency) // unsigned wrap
207 return Latency - Advance;
/external/chromium_org/ash/wm/
H A Dlock_state_controller_unittest.cc84 void Advance(SessionStateAnimator::AnimationSpeed speed) { function in class:ash::test::LockStateControllerTest
85 test_animator_->Advance(test_animator_->GetDuration(speed));
93 test_animator_->Advance(partial_duration);
455 Advance(SessionStateAnimator::ANIMATION_SPEED_SHUTDOWN);
548 Advance(SessionStateAnimator::ANIMATION_SPEED_MOVE_WINDOWS);
597 Advance(SessionStateAnimator::ANIMATION_SPEED_UNDOABLE);
599 Advance(SessionStateAnimator::ANIMATION_SPEED_MOVE_WINDOWS);
611 Advance(SessionStateAnimator::ANIMATION_SPEED_SHUTDOWN);
631 Advance(SessionStateAnimator::ANIMATION_SPEED_UNDOABLE);
638 Advance(SessionStateAnimato
[all...]
/external/chromium_org/content/browser/service_worker/
H A Dservice_worker_context_core.cc38 void ServiceWorkerContextCore::ProviderHostIterator::Advance() { function in class:content::ServiceWorkerContextCore::ProviderHostIterator
43 // Advance the inner iterator. If an element is reached, we're done.
44 provider_host_iterator_->Advance();
48 // Advance the outer iterator until an element is reached, or end is hit.
50 process_iterator_->Advance();
74 // Advance to the first element.
80 process_iterator_->Advance();
/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddesktop_region.cc171 for (Iterator it(region); !it.IsAtEnd(); it.Advance()) {
518 void DesktopRegion::Iterator::Advance() { function in class:webrtc::DesktopRegion::Iterator
/external/clang/lib/Format/
H A DBreakableToken.cpp99 unsigned Advance; local
101 Advance = encoding::getEscapeSequenceLength(Text);
102 Chars += Advance;
104 Advance = encoding::getCodePointNumBytes(Text[0], Encoding);
106 Text.substr(0, Advance), UsedColumns + Chars, TabWidth, Encoding);
109 if (Chars > MaxSplit || Text.size() == Advance)
116 if (Advance == 1 && !isAlphanumeric(Text[0]))
119 SplitPoint += Advance;
120 Text = Text.substr(Advance);
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream.h486 // Advance the buffer by a given number of bytes.
487 void Advance(int amount);
500 // Advance(BufferSize()).
686 // Advance the buffer by a given number of bytes.
687 void Advance(int amount);
690 // Advance(buffer_size_).
717 Advance(1);
727 Advance(1);
778 Advance(sizeof(*value));
793 Advance(sizeo
998 inline void CodedInputStream::Advance(int amount) { function in class:google::protobuf::io::CodedInputStream
1002 inline void CodedOutputStream::Advance(int amount) { function in class:google::protobuf::io::CodedOutputStream
[all...]
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-param-util.h78 // for not calling Advance() on an iterator equal to
80 virtual void Advance() = 0;
117 impl_->Advance();
123 impl_->Advance();
208 virtual void Advance() { function in class:testing::internal::RangeGenerator::Iterator
295 virtual void Advance() { function in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
305 // value_ is updated here and not in Advance() because Advance()
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
H A Dgtest-param-util.h78 // for not calling Advance() on an iterator equal to
80 virtual void Advance() = 0;
117 impl_->Advance();
123 impl_->Advance();
208 virtual void Advance() { function in class:testing::internal::RangeGenerator::Iterator
295 virtual void Advance() { function in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
305 // value_ is updated here and not in Advance() because Advance()
/external/chromium_org/third_party/motemplate/
H A Dmotemplate.py828 self.Advance()
838 def Advance(self): member in class:_TokenStream
873 return self.Advance()
891 self.Advance()
902 self.Advance()
988 tokens.Advance()
997 tokens.Advance()
1007 tokens.Advance()
1081 tokens.Advance()
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dcoded_stream.h513 // Advance the buffer by a given number of bytes.
514 void Advance(int amount);
527 // Advance(BufferSize()).
729 // Advance the buffer by a given number of bytes.
730 void Advance(int amount);
733 // Advance(buffer_size_).
760 Advance(1);
770 Advance(1);
818 Advance(sizeof(*value));
832 Advance(sizeo
1041 inline void CodedInputStream::Advance(int amount) { function in class:google::protobuf::io::CodedInputStream
1045 inline void CodedOutputStream::Advance(int amount) { function in class:google::protobuf::io::CodedOutputStream
[all...]
/external/gtest/include/gtest/internal/
H A Dgtest-param-util.h78 // for not calling Advance() on an iterator equal to
80 virtual void Advance() = 0;
117 impl_->Advance();
123 impl_->Advance();
208 virtual void Advance() { function in class:testing::internal::RangeGenerator::Iterator
295 virtual void Advance() { function in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
305 // value_ is updated here and not in Advance() because Advance()
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-param-util.h78 // for not calling Advance() on an iterator equal to
80 virtual void Advance() = 0;
117 impl_->Advance();
123 impl_->Advance();
208 virtual void Advance() { function in class:testing::internal::RangeGenerator::Iterator
295 virtual void Advance() { function in class:testing::internal::ValuesInIteratorRangeGenerator::Iterator
305 // value_ is updated here and not in Advance() because Advance()

Completed in 488 milliseconds

1234