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

<<11121314151617181920>>

/external/chromium_org/ppapi/examples/gles2/
H A Dgles2.cc44 virtual void DidChangeView(const pp::Rect& position,
101 const pp::Rect& position, const pp::Rect& clip_ignored) {
102 if (position.width() == 0 || position.height() == 0)
104 plugin_size_ = position.size();
100 DidChangeView( const pp::Rect& position, const pp::Rect& clip_ignored) argument
/external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
H A DChromoting.java366 public View getView(int position, View convertView, ViewGroup parent) { argument
367 TextView target = (TextView)super.getView(position, convertView, parent);
370 final JSONObject host = getItem(position);
/external/chromium_org/remoting/host/
H A Dhost_window_proxy.cc43 const webrtc::DesktopVector& position) OVERRIDE;
158 const webrtc::DesktopVector& position) {
161 FROM_HERE, base::Bind(&Core::OnLocalMouseMoved, this, position));
166 client_session_control_->OnLocalMouseMoved(position);
157 OnLocalMouseMoved( const webrtc::DesktopVector& position) argument
H A Dinput_injector_mac.cc178 // Set the mouse position assuming single-monitor.
190 // Translate the mouse position into desktop coordinates.
194 // Constrain the mouse position to the desktop coordinates.
226 CGPoint position = CGPointMake(mouse_pos_.x(), mouse_pos_.y()); local
234 CGError error = CGPostMouseEvent(position, true, 3,
H A Dlocal_input_monitor_win.cc192 POINT position; local
193 if (!GetCursorPos(&position)) {
194 position.x = 0;
195 position.y = 0;
201 webrtc::DesktopVector(position.x, position.y)));
/external/chromium_org/third_party/WebKit/Source/bindings/v8/
H A DV8LazyEventListener.cpp55 V8LazyEventListener::V8LazyEventListener(const AtomicString& functionName, const AtomicString& eventParameterName, const String& code, const String sourceURL, const TextPosition& position, Node* node, v8::Isolate* isolate) argument
62 , m_position(position)
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSParserValues.cpp32 AtomicString CSSParserString::atomicSubstring(unsigned position, unsigned length) const argument
34 ASSERT(m_length >= position + length);
37 return AtomicString(characters8() + position, length);
38 return AtomicString(characters16() + position, length);
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DCaret.cpp59 void DragCaretController::setCaretPosition(const VisiblePosition& position) argument
63 m_position = position;
76 static bool removingNodeRemovesPosition(Node& node, const Position& position) argument
78 if (!position.anchorNode())
81 if (position.anchorNode() == node)
88 return element.containsIncludingShadowDOM(position.anchorNode());
210 // Basically, we can't trust this layout position since we
/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/html/parser/
H A DHTMLSrcsetParser.cpp53 const CharType* position = descriptorsStart; local
56 while (position < descriptorsEnd) {
58 skipWhile<CharType, isHTMLSpace<CharType> >(position, descriptorsEnd);
59 const CharType* currentDescriptorStart = position;
60 skipWhile<CharType, isNotHTMLSpace<CharType> >(position, descriptorsEnd);
61 const CharType* currentDescriptorEnd = position;
63 ++position;
83 const CharType* position = attributeStart; local
84 const CharType* attributeEnd = position + length;
86 while (position < attributeEn
[all...]
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DContentSearchUtils.cpp104 int position; local
107 while ((position = regex->match(content, start, &matchLength)) != -1) {
112 start = position + 1;
/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.h78 String substring(unsigned position, unsigned length) const { return m_text.substring(position, length); } argument
H A DRenderVTTCue.cpp73 bool RenderVTTCue::initializeLayoutParameters(InlineFlowBox* firstLineBox, LayoutUnit& step, LayoutUnit& position) argument
87 // 3. Let line position be the text track cue computed line position.
90 // 4. Vertical Growing Left: Add one to line position then negate it.
94 // 5. Let position be the result of multiplying step and line position.
95 position = step * linePosition;
97 // 6. Vertical Growing Left: Decrease position by the width of the
98 // bounding box of the boxes in boxes, then increase position by step.
100 position
117 placeBoxInDefaultPosition(LayoutUnit position, bool& switched) argument
220 LayoutUnit position; local
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DGridCoordinate.h50 static PassOwnPtr<GridSpan> createWithSpanAgainstOpposite(size_t resolvedOppositePosition, const GridPosition& position, GridPositionSide side) argument
54 size_t positionOffset = position.spanPosition() - 1;
63 static PassOwnPtr<GridSpan> createWithNamedSpanAgainstOpposite(size_t resolvedOppositePosition, const GridPosition& position, GridPositionSide side, const Vector<size_t>& gridLines) argument
66 return createWithInitialNamedSpanAgainstOpposite(resolvedOppositePosition, position, gridLines);
68 return createWithFinalNamedSpanAgainstOpposite(resolvedOppositePosition, position, gridLines);
71 static PassOwnPtr<GridSpan> createWithInitialNamedSpanAgainstOpposite(size_t resolvedOppositePosition, const GridPosition& position, const Vector<size_t>& gridLines) argument
80 size_t gridLineIndex = std::max<int>(0, firstLineBeforeOppositePositionIndex - position.spanPosition() + 1);
87 static PassOwnPtr<GridSpan> createWithFinalNamedSpanAgainstOpposite(size_t resolvedOppositePosition, const GridPosition& position, const Vector<size_t>& gridLines) argument
94 size_t gridLineIndex = std::min(gridLines.size() - 1, firstLineAfterOppositePositionIndex + position.spanPosition() - 1);
H A DGridPosition.h81 void setExplicitPosition(int position, const String& namedGridLine) argument
84 m_integerPosition = position;
88 // 'span' values cannot be negative, yet we reuse the <integer> position which can
89 // be. This means that we have to convert the span position to an integer, losing
91 void setSpanPosition(int position, const String& namedGridLine) argument
94 m_integerPosition = position;
/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.cpp123 void FileWriter::seek(long long position, ExceptionState& exceptionState) argument
133 seekInternal(position);
136 void FileWriter::truncate(long long position, ExceptionState& exceptionState) argument
140 if (m_readyState == WRITING || position < 0) {
152 m_truncateLength = position;
187 setPosition(position() + bytes);
188 if (position() > length())
189 setLength(position());
220 if (position() > length())
263 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/platform/
H A DPlatformGestureEvent.h46 PlatformGestureEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, const IntSize& area, double timestamp, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, float deltaX, float deltaY, float velocityX, float velocityY) argument
48 , m_position(position)
63 const IntPoint& position() const { return m_position; } // PlatformWindow coordinates. function in class:WebCore::PlatformGestureEvent
H A DPlatformMouseEvent.h53 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, int clickCount, Modifiers modifiers, double timestamp) argument
55 , m_position(position)
64 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, int clickCount, Modifiers modifiers, SyntheticEventType synthesized, double timestamp) argument
66 , m_position(position)
75 PlatformMouseEvent(const IntPoint& position, const IntPoint& globalPosition, MouseButton button, PlatformEvent::Type type, int clickCount, bool shiftKey, bool ctrlKey, bool altKey, bool metaKey, double timestamp) argument
77 , m_position(position)
86 const IntPoint& position() const { return m_position; } function in class:WebCore::PlatformMouseEvent
/external/chromium_org/third_party/WebKit/Source/platform/fonts/opentype/
H A DOpenTypeTypes.h77 static bool isValidEnd(const SharedBuffer& buffer, const void* position) argument
79 if (position < buffer.data())
81 size_t offset = reinterpret_cast<const char*>(position) - buffer.data();
85 template <typename T> static const T* validatePtr(const SharedBuffer& buffer, const void* position) argument
87 const T* casted = reinterpret_cast<const T*>(position);

Completed in 453 milliseconds

<<11121314151617181920>>