Home
last modified time | relevance | path

Searched refs:position_ (Results 1 – 25 of 1843) sorted by relevance

12345678910>>...74

/dports/www/chromium-legacy/chromium-88.0.4324.182/extensions/renderer/api/automation/
H A Dautomation_position.cc219 position_ = position_->AsTreePosition(); in AsTreePosition()
223 position_ = position_->AsTextPosition(); in AsTextPosition()
227 position_ = position_->AsLeafTextPosition(); in AsLeafTextPosition()
251 position_ = position_->CreateParentPosition(); in MoveToParentPosition()
274 position_ = position_->CreateNextCharacterPosition( in MoveToNextCharacterPosition()
286 position_ = position_->CreateNextWordStartPosition( in MoveToNextWordStartPosition()
297 position_ = position_->CreateNextWordEndPosition( in MoveToNextWordEndPosition()
309 position_ = position_->CreateNextLineStartPosition( in MoveToNextLineStartPosition()
320 position_ = position_->CreateNextLineEndPosition( in MoveToNextLineEndPosition()
379 position_ = position_->CreateNextPageEndPosition( in MoveToNextPageEndPosition()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/extensions/renderer/api/automation/
H A Dautomation_position.cc219 position_ = position_->AsTreePosition(); in AsTreePosition()
223 position_ = position_->AsTextPosition(); in AsTextPosition()
227 position_ = position_->AsLeafTextPosition(); in AsLeafTextPosition()
251 position_ = position_->CreateParentPosition(); in MoveToParentPosition()
274 position_ = position_->CreateNextCharacterPosition( in MoveToNextCharacterPosition()
286 position_ = position_->CreateNextWordStartPosition( in MoveToNextWordStartPosition()
297 position_ = position_->CreateNextWordEndPosition( in MoveToNextWordEndPosition()
309 position_ = position_->CreateNextLineStartPosition( in MoveToNextLineStartPosition()
320 position_ = position_->CreateNextLineEndPosition( in MoveToNextLineEndPosition()
379 position_ = position_->CreateNextPageEndPosition( in MoveToNextPageEndPosition()
[all …]
/dports/misc/vxl/vxl-3.3.2/contrib/prip/vdtop/
H A Dvdtop_pixel.hxx11 image_iterator tmp=position_; in upper_neighborhood()
17 mask|=((*tmp)>=(*position_)); in upper_neighborhood()
39 image_iterator tmp=position_; in lower_neighborhood()
95 *position_=*alpha; in destruct_4()
115 *position_=alpha; in destruct_4()
169 *position_=*alpha; in destruct_8()
189 *position_=alpha; in destruct_8()
223 *position_=*alpha; in construct_4()
243 *position_=alpha; in construct_4()
297 *position_=*alpha; in construct_8()
[all …]
/dports/textproc/xlnt/xlnt-1.5.0-92-g20f3dac2/source/detail/serialization/
H A Dvector_streambuf.cpp32 position_(0) in vector_istreambuf()
38 if (position_ == data_.size()) in underflow()
48 if (position_ == data_.size()) in uflow()
70 position_ = 0; in seekoff()
74 position_ = data_.size(); in seekoff()
81 position_ = 0; in seekoff()
109 position_ = 0; in seekpos()
125 position_(0) in vector_ostreambuf()
163 position_ = 0; in seekoff()
174 position_ = 0; in seekoff()
[all …]
/dports/sysutils/glogg/glogg-1.1.4/src/
H A Dviewtools.cpp35 resistance = position_ / 8;
37 position_ = std::min( position_ + ( value - resistance ), MAX_POSITION );
44 position_ -= hook_threshold_;
49 position_ += hook_threshold_;
54 if ( position_ < 0 && !isHooked() )
55 position_ = 0;
79 position_ = 0;
83 else if ( position_ > 0 )
84 position_ -= DECREASE_RATE + ( position_/PROP_RATIO );
85 else if ( position_ < 0 )
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/snapshot/
H A Dsnapshot-source-sink.h28 position_(0) {} in SnapshotByteSource()
38 DCHECK(position_ < length_); in Get()
39 return data_[position_++]; in Get()
46 position_ += number_of_bytes; in CopyRaw()
52 DCHECK(position_ + 3 < length_); in GetInt()
53 uint32_t answer = data_[position_]; in GetInt()
70 DCHECK(position_ < length_); in GetIntSlow()
72 if (position_ + 1 < length_) answer |= data_[position_ + 1] << 8; in GetIntSlow()
73 if (position_ + 2 < length_) answer |= data_[position_ + 2] << 16; in GetIntSlow()
74 if (position_ + 3 < length_) answer |= data_[position_ + 3] << 24; in GetIntSlow()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/webrtc_logging/common/
H A Dpartial_circular_buffer.cc18 position_(0), in PartialCircularBuffer()
38 position_(0), in PartialCircularBuffer()
72 position_ += to_read; in Read()
101 position_ += to_read; in Read()
104 if (position_ == data_size_) { in Read()
126 position_ += to_read; in Read()
141 if (position_ < wrap_position) { in Write()
154 position_ = wrap_position + (position_ - wrap_position + skip) % cycle_size; in Write()
162 DCHECK_LT(position_, data_size_); in DoWrite()
173 position_ += write_size; in DoWrite()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/components/webrtc_logging/common/
H A Dpartial_circular_buffer.cc17 position_(0), in PartialCircularBuffer()
37 position_(0), in PartialCircularBuffer()
71 position_ += to_read; in Read()
100 position_ += to_read; in Read()
103 if (position_ == data_size_) { in Read()
125 position_ += to_read; in Read()
140 if (position_ < wrap_position) { in Write()
153 position_ = wrap_position + (position_ - wrap_position + skip) % cycle_size; in Write()
161 DCHECK_LT(position_, data_size_); in DoWrite()
172 position_ += write_size; in DoWrite()
[all …]
/dports/audio/boops-lv2/BOops-1.8.2/src/
H A DRingBuffer.hpp59 size_t position_; member in RingBuffer
78 position_ = that.position_; in RingBuffer()
89 position_ = that.position_; in operator =()
131 position_ = 0; in resize()
139 d0_ = data_[position_]; in resize()
140 position_ = 0; in resize()
151 position_ = 0; in fill()
156 position_ = (position_ + size_ - 1) % size_; in push_front()
157 data_[position_] = value; in push_front()
165 template <class T>inline void RingBuffer<T>::pop_front () {position_ = (position_ + size_ - 1) % si… in pop_front()
[all …]
/dports/chinese/libime/libime-1.0.9/src/libime/core/kenlm/util/
H A Dfile_piece.cc70 position_ = data_.begin(); in FilePiece()
71 position_end_ = position_; in FilePiece()
86 StringPiece ret(position_, i - position_ - subtract_cr); in ReadLine()
87 position_ = i + 1; in ReadLine()
126 position_ = NULL; in InitializeNoRead()
233 position_ = ParseNumber(StringPiece(position_, last_space_ - position_), ret); in ReadNumber()
277 if (position_ == data_.begin() + ignore && position_) { in MMapShift()
316 position_ = data_.begin(); in TransitionToRead()
317 position_end_ = position_; in TransitionToRead()
335 position_ = data_.begin(); in ReadShift()
[all …]
H A Dfile_piece.hh85 if (position_ == position_end_) { in peek()
89 return *position_; in peek()
94 ++position_; in get()
108 for (; ; ++position_) { in ReadWordSameLine()
109 if (position_ == position_end_) { in ReadWordSameLine()
156 assert(position_ <= position_end_); in SkipSpaces()
157 for (; ; ++position_) { in SkipSpaces()
158 if (position_ == position_end_) { in SkipSpaces()
185 assert(to >= position_); in Consume()
186 StringPiece ret(position_, to - position_); in Consume()
[all …]
/dports/lang/v8/v8-9.6.180.12/src/snapshot/
H A Dsnapshot-source-sink.h31 position_(0) {} in SnapshotByteSource()
43 DCHECK(position_ < length_); in Get()
44 return data_[position_++]; in Get()
48 DCHECK(position_ < length_); in Peek()
49 return data_[position_]; in Peek()
56 position_ += number_of_bytes; in CopyRaw()
86 DCHECK(position_ + 3 < length_); in GetInt()
87 uint32_t answer = data_[position_]; in GetInt()
88 answer |= data_[position_ + 1] << 8; in GetInt()
103 int position() { return position_; } in position()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/snapshot/
H A Dsnapshot-source-sink.h30 position_(0) {} in SnapshotByteSource()
42 DCHECK(position_ < length_); in Get()
43 return data_[position_++]; in Get()
47 DCHECK(position_ < length_); in Peek()
48 return data_[position_]; in Peek()
55 position_ += number_of_bytes; in CopyRaw()
85 DCHECK(position_ + 3 < length_); in GetInt()
86 uint32_t answer = data_[position_]; in GetInt()
87 answer |= data_[position_ + 1] << 8; in GetInt()
102 int position() { return position_; } in position()
[all …]
/dports/math/dune-common/dune-common-df65b1282ea89ad40d2cb6565983f7e633ccce31/dune/common/
H A Dgenericiterator.hh199 : container_(&cont), position_(pos) in GenericIterator()
209 …icIterator(const MutableIterator& other) : container_(other.container_), position_(other.position_) in GenericIterator()
221 …ericIterator(const ConstIterator& other) : container_(other.container_), position_(other.position_) in GenericIterator()
227 return position_ == other.position_ && container_ == other.container_; in equals()
232 return position_ == other.position_ && container_ == other.container_; in equals()
240 ++position_; in increment()
245 --position_; in decrement()
254 position_=position_+n; in advance()
260 return other.position_ - position_; in distanceTo()
266 return other.position_ - position_; in distanceTo()
[all …]
/dports/games/scorched3d/scorched/src/common/engine/
H A DPhysicsParticleObject.cpp61 position_ += offset; in applyOffset()
81 position_ = position; in setPhysics()
97 position_ += velocity_ / 100; in simulate()
199 getInterpHeight(position_[0], position_[1]); in checkCollision()
274 position_[0] = arenaX + 1; in checkShotCollision()
432 getInterpHeight(position_[0], position_[1]); in getLandscapeCollision()
447 getInterpNormal(position_[0], position_[1], collision.normal); in getLandscapeCollision()
466 getInterpNormal(position_[0], position_[1], collision.normal); in getLandscapeCollision()
477 position_[0], position_[1]); in getRoofCollision()
503 if (position_[0] <= arenaX) in getWallCollision()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/blink/common/privacy_budget/
H A Didentifiable_token_builder.cc39 position_ = partial_.begin(); in IdentifiableTokenBuilder()
50 DCHECK_NE(position_, partial_.end()); in AddBytes()
63 DCHECK_EQ(position_, partial_.begin()); in AddBytes()
96 if (position_ == partial_.begin()) in GetToken()
108 position_ = std::copy_n(message.begin(), to_copy, position_); in SkimIntoPartial()
109 if (position_ == partial_.end()) in SkimIntoPartial()
120 position_ = std::fill_n(position_, padding_to_add, 0); in AlignPartialBuffer()
122 if (position_ == partial_.end()) in AlignPartialBuffer()
125 DCHECK_NE(position_, partial_.end()); in AlignPartialBuffer()
151 DCHECK_EQ(position_, partial_.end()); in TakeCompletedBlock()
[all …]
/dports/devel/sdl2pp/libSDL2pp-0.16.1/SDL2pp/
H A DContainerRWops.hh54 size_t position_; ///< Virtual file pointer position member in SDL2pp::ContainerRWops
59 if (position_ + size * num > container_.size()) in WriteHelper()
60 container_.resize(position_ + size * num); in WriteHelper()
64 position_ += size * num; in WriteHelper()
114 position_ = static_cast<size_t>(offset); in Seek()
117 position_ = static_cast<size_t>(position_ + offset); in Seek()
120 position_ = static_cast<size_t>(container_.size() + offset); in Seek()
125 return position_; in Seek()
142 if (position_ + size > container_.size()) in Read()
147 …std::copy(container_.begin() + position_, container_.begin() + position_ + toread, reinterpret_cas… in Read()
[all …]
/dports/audio/bshapr-lv2/BShapr-0.13/src/
H A DRingBuffer.hpp53 size_t position_; member in RingBuffer
75 return data_[(position_ + size_ + (n % size_)) % size_]; in operator []()
96 position_ = 0; in resize()
112 position_ = 0; in fill()
119 data_[position_] = value; in push_back()
120 position_ = (position_ + 1) % size_; in push_back()
130 size_t i1 = (position_ + nx > size_ ? size_ - position_ : nx); in push_back()
133 position_ = (position_ + n) % size_; in push_back()
139 if (size_) position_ = (position_ + size_ - 1) % size_; in pop_back()
144 if (size_) position_ = (position_ + size_ - (n % size_)) % size_; in pop_back()
[all …]
/dports/graphics/urho3d/Urho3D-1.7.1/Source/Urho3D/Audio/
H A DSoundSource.cpp112 position_(0), in SoundSource()
181 if (position_) in Play()
240 if (position_) in Play()
261 if (position_) in Stop()
452 position_ = 0; in Mix()
505 if (sound_ && position_) in GetPositionAttr()
578 position_ = 0; in StopLockless()
601 position_ = pos; in SetPlayPositionLockless()
661 position_ = pos; in MixMonoToMono()
1259 position_ = 0; in MixZeroVolume()
[all …]
/dports/www/node10/node-v10.24.1/deps/v8/src/snapshot/
H A Dsnapshot-source-sink.h25 position_(0) {} in SnapshotByteSource()
35 DCHECK(position_ < length_); in Get()
36 return data_[position_++]; in Get()
43 position_ += number_of_bytes; in CopyRaw()
49 DCHECK(position_ + 3 < length_); in GetInt()
50 uint32_t answer = data_[position_]; in GetInt()
51 answer |= data_[position_ + 1] << 8; in GetInt()
52 answer |= data_[position_ + 2] << 16; in GetInt()
53 answer |= data_[position_ + 3] << 24; in GetInt()
66 int position() { return position_; } in position()
[all …]
/dports/finance/quickfix/quickfix-1.15.1/src/C++/double-conversion/
H A Dutils.h231 return position_; in position()
243 buffer_[position_++] = c; in AddCharacter()
258 position_ += n; in AddSubstring()
273 buffer_[position_] = '\0'; in Finalize()
277 position_ = -1; in Finalize()
295 int pow_pos = position_; in TrimTrailingZeros()
307 while (position_ > 0 && buffer_[position_ - 1] == '0') in TrimTrailingZeros()
308 --position_; in TrimTrailingZeros()
310 if (position_ > 0 && buffer_[position_ - 1] == '.') in TrimTrailingZeros()
311 --position_; in TrimTrailingZeros()
[all …]
/dports/sysutils/lizardfs/lizardfs-3.12.0/src/common/
H A Dparser.cc25 position_(0) { in Parser()
36 previousPosition_ = position_; in consume()
37 position_ += bytesToConsume; in consume()
46 if (data_.find(strToConsume, position_) != position_) { in consume()
49 previousPosition_ = position_; in consume()
50 position_ += strToConsume.size(); in consume()
59 size_t newPosition = position_; in consume()
63 if (position_ == newPosition) { in consume()
66 previousPosition_ = position_; in consume()
67 position_ = newPosition; in consume()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/v8/src/zone/
H A Dzone-chunk-list.h114 uint32_t position_ = 0; member
161 return other.current_ == current_ && other.position_ == position_;
199 position_ += amount; in Advance()
200 while (position_ > 0 && position_ >= current_->capacity_) { in Advance()
261 --position_; in Move()
265 ++position_; in Move()
268 position_ = 0; in Move()
274 size_t position_; variable
312 ++back_->position_; in push_back()
323 --back_->position_; in pop_back()
[all …]
/dports/lang/v8/v8-9.6.180.12/src/zone/
H A Dzone-chunk-list.h117 uint32_t position_ = 0; member
162 return other.current_ == current_ && other.position_ == position_;
200 position_ += amount; in Advance()
201 while (position_ > 0 && position_ >= current_->capacity_) { in Advance()
262 --position_; in Move()
266 ++position_; in Move()
269 position_ = 0; in Move()
275 size_t position_; variable
313 ++back_->position_; in push_back()
324 --back_->position_; in pop_back()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/v8/src/zone/
H A Dzone-chunk-list.h114 uint32_t position_ = 0; member
161 return other.current_ == current_ && other.position_ == position_;
199 position_ += amount; in Advance()
200 while (position_ > 0 && position_ >= current_->capacity_) { in Advance()
261 --position_; in Move()
265 ++position_; in Move()
268 position_ = 0; in Move()
274 size_t position_; variable
312 ++back_->position_; in push_back()
323 --back_->position_; in pop_back()
[all …]

12345678910>>...74