Searched defs:position (Results 251 - 275 of 895) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLProgressElement.cpp126 double HTMLProgressElement::position() const function in class:WebCore::HTMLProgressElement
140 m_value->setWidthPercentage(position() * 100);
H A DMediaFragmentURIParser.cpp40 static String collectDigits(const LChar* input, unsigned length, unsigned& position) argument
46 while (position < length && isASCIIDigit(input[position]))
47 digits.append(input[position++]);
51 static String collectFraction(const LChar* input, unsigned length, unsigned& position) argument
57 if (input[position] != '.')
60 digits.append(input[position++]);
61 while (position < length && isASCIIDigit(input[position]))
62 digits.append(input[position
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DContentSearchUtils.cpp103 int position; local
106 while ((position = regex->match(content, start, &matchLength)) != -1) {
111 start = position + 1;
/external/chromium_org/third_party/WebKit/Source/core/platform/
H A DScrollAnimator.cpp128 void ScrollAnimator::setCurrentPosition(const FloatPoint& position) argument
130 m_currentPosX = position.x();
131 m_currentPosY = position.y();
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/opentype/
H A DOpenTypeTypes.h81 static bool isValidEnd(const SharedBuffer& buffer, const void* position) argument
83 if (position < buffer.data())
85 size_t offset = reinterpret_cast<const char*>(position) - buffer.data();
89 template <typename T> static const T* validatePtr(const SharedBuffer& buffer, const void* position) argument
91 const T* casted = reinterpret_cast<const T*>(position);
/external/chromium_org/third_party/WebKit/Source/core/platform/mock/
H A DGeolocationClientMock.cpp62 void GeolocationClientMock::setPosition(PassRefPtr<GeolocationPosition> position) argument
64 m_lastPosition = position;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderText.h76 String substring(unsigned position, unsigned length) const { return m_text.substring(position, length); } argument
H A DRenderTextTrackCue.cpp78 bool RenderTextTrackCue::initializeLayoutParameters(InlineFlowBox* firstLineBox, LayoutUnit& step, LayoutUnit& position) argument
92 // 3. Let line position be the text track cue computed line position.
95 // 4. Vertical Growing Left: Add one to line position then negate it.
99 // 5. Let position be the result of multiplying step and line position.
100 position = step * linePosition;
102 // 6. Vertical Growing Left: Decrease position by the width of the
103 // bounding box of the boxes in boxes, then increase position by step.
105 position
122 placeBoxInDefaultPosition(LayoutUnit position, bool& switched) argument
224 LayoutUnit position; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGTextLayoutAttributesBuilder.cpp126 // Update text position, after we're back from recursion.
127 TextPosition& position = m_textPositions[atPosition]; local
128 ASSERT(!position.length);
129 position.length = m_textLength - position.start;
179 void SVGTextLayoutAttributesBuilder::fillCharacterDataMap(const TextPosition& position) argument
181 const SVGLengthList& xList = position.element->xCurrentValue();
182 const SVGLengthList& yList = position.element->yCurrentValue();
183 const SVGLengthList& dxList = position.element->dxCurrentValue();
184 const SVGLengthList& dyList = position
[all...]
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathExpressionNode.h45 unsigned long position; member in struct:WebCore::XPath::EvaluationContext
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DSidebarOverlay.js67 this.position(relativeToElement);
73 position: function(relativeToElement)
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DFileWriter.cpp129 void FileWriter::seek(long long position, ExceptionState& es) argument
139 seekInternal(position);
142 void FileWriter::truncate(long long position, ExceptionState& es) argument
146 if (m_readyState == WRITING || position < 0) {
158 m_truncateLength = position;
193 setPosition(position() + bytes);
194 if (position() > length())
195 setLength(position());
226 if (position() > length())
269 writer()->write(position(), m_blobBeingWritte
[all...]
/external/chromium_org/third_party/WebKit/Source/modules/webaudio/
H A DAudioListener.h50 void setPosition(const FloatPoint3D &position) { m_position = position; } argument
51 const FloatPoint3D& position() const { return m_position; } function in class:WebCore::AudioListener
/external/chromium_org/third_party/WebKit/Source/wtf/text/
H A DStringBuilder.cpp68 String StringBuilder::reifySubstring(unsigned position, unsigned length) const argument
73 return m_buffer->substring(position, substringLength);
H A DStringBuilder.h183 String substring(unsigned position, unsigned length) const argument
186 return m_string.substring(position, length);
187 return reifySubstring(position, length);
292 String reifySubstring(unsigned position, unsigned length) const;
/external/chromium_org/third_party/closure_linter/closure_linter/
H A Dindentation.py26 from closure_linter.common import position namespace
37 Position = position.Position
324 Hard stops are indentations defined by the position of another token as in
/external/chromium_org/third_party/icu/source/i18n/
H A Dsearch.cpp207 int32_t SearchIterator::following(int32_t position, argument
213 setOffset(position, status);
214 return handleNext(position, status);
226 int32_t SearchIterator::preceding(int32_t position, argument
232 setOffset(position, status);
233 return handlePrev(position, status);
420 void SearchIterator::setMatchStart(int32_t position) argument
422 m_search_->matchedIndex = position;
/external/chromium_org/third_party/libjingle/source/talk/base/
H A Dbytebuffer.cc236 bool ByteBuffer::SetReadPosition(const ReadPosition &position) { argument
237 if (position.version_ != version_) {
240 start_ = position.start_;
/external/chromium_org/third_party/mesa/src/src/gallium/tests/graw/
H A Docclusion-query.c20 float position[4]; member in struct:vertex
86 ve[0].src_offset = Offset(struct vertex, position);
H A Dquad-tex.c18 float position[4]; member in struct:vertex
48 ve[0].src_offset = Offset(struct vertex, position);
H A Dtex-srgb.c17 float position[4]; member in struct:vertex
64 ve[0].src_offset = Offset(struct vertex, position);
H A Dtex-swizzle.c18 float position[4]; member in struct:vertex
46 ve[0].src_offset = Offset(struct vertex, position);
/external/chromium_org/ui/views/controls/scrollbar/
H A Dbase_scroll_bar_thumb.cc13 // dragging before the scrollbar will snap back to its regular position.
50 void BaseScrollBarThumb::SetPosition(int position) { argument
54 thumb_bounds.set_x(track_bounds.x() + position);
56 thumb_bounds.set_y(track_bounds.y() + position);
/external/doclava/src/com/google/doclava/
H A DAttrTagInfo.java44 AttrTagInfo(String name, String kind, String text, ContainerInfo base, SourcePositionInfo position) { argument
45 super(name, kind, text, position);
48 parse(text, base, position);
51 void parse(String text, ContainerInfo base, SourcePositionInfo position) { argument
56 Errors.error(Errors.BAD_ATTR_TAG, position, "Bad @attr tag: " + text);
65 LinkReference linkRef = LinkReference.parse(ref, mBase, position, false);
67 Errors.error(Errors.BAD_ATTR_TAG, position, "Unresolved @attr ref: " + ref);
71 Errors.error(Errors.BAD_ATTR_TAG, position, "@attr must be a field: " + ref);
79 Errors.error(Errors.BAD_ATTR_TAG, position, "Bad @attr name tag: " + more);
86 mDescrComment = new Comment(more, base, position);
[all...]
H A DDocInfo.java65 public SourcePositionInfo position() { method in class:DocInfo
69 public void setPosition(SourcePositionInfo position) { argument
70 mPosition = position;

Completed in 591 milliseconds

<<11121314151617181920>>