Searched defs:position (Results 76 - 100 of 494) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/dom/
H A DPendingScript.h84 void setStartingPosition(const TextPosition1& position) { m_startingPosition = position; } argument
H A DSpaceSplitString.cpp106 size_t position = 0; local
107 while (position < m_vector.size()) {
108 if (m_vector[position] == string)
109 m_vector.remove(position);
111 ++position;
/external/webkit/Source/WebCore/fileapi/
H A DFileWriterSync.cpp54 writer()->write(position(), data);
60 setPosition(position() + data->size());
61 if (position() > length())
62 setLength(position());
65 void FileWriterSync::seek(long long position, ExceptionCode& ec) argument
70 seekInternal(position);
89 if (offset < position())
/external/webkit/Source/WebCore/html/
H A DCollectionCache.h54 unsigned position; member in struct:WebCore::CollectionCache
/external/webkit/Source/WebCore/page/
H A DGeolocationController.cpp98 void GeolocationController::positionChanged(GeolocationPosition* position) argument
100 m_lastPosition = position;
/external/webkit/Source/WebCore/platform/brew/
H A DContextMenuBrew.cpp59 void ContextMenu::insertItem(unsigned int position, ContextMenuItem& item) argument
/external/webkit/Source/WebCore/platform/chromium/
H A DContextMenuChromium.cpp56 void ContextMenu::insertItem(unsigned position, ContextMenuItem& item) argument
58 m_items.insert(position, item);
/external/webkit/Source/WebCore/platform/haiku/
H A DContextMenuHaiku.cpp100 void ContextMenu::insertItem(unsigned position, ContextMenuItem& item) argument
104 m_platformDescription->AddItem(menuItem, position);
/external/webkit/Source/WebCore/platform/qt/
H A DContextMenuQt.cpp56 void ContextMenu::insertItem(unsigned position, ContextMenuItem& item) argument
58 m_items.insert(position, item);
/external/webkit/Source/WebCore/platform/text/
H A DTextBoundaries.cpp65 int findNextWordFromIndex(const UChar* chars, int len, int position, bool forward) argument
70 position = textBreakFollowing(it, position);
71 while (position != TextBreakDone) {
74 if (position < len && isAlphanumeric(chars[position - 1]))
75 return position;
77 position = textBreakFollowing(it, position);
82 position
96 findWordBoundary(const UChar* chars, int len, int position, int* start, int* end) argument
[all...]
/external/webkit/Source/WebCore/rendering/
H A DRenderProgress.h36 double position() const { return m_position; } function in class:WebCore::RenderProgress
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGTextMetrics.cpp37 SVGTextMetrics::SVGTextMetrics(RenderSVGInlineText* textRenderer, const TextRun& run, unsigned position, unsigned textLength) argument
46 int extraCharsAvailable = textLength - (position + run.length());
75 static TextRun constructTextRun(RenderSVGInlineText* text, const UChar* characters, unsigned position, unsigned length) argument
80 TextRun run(characters + position
98 SVGTextMetrics SVGTextMetrics::measureCharacterRange(RenderSVGInlineText* text, unsigned position, unsigned length) argument
101 TextRun run(constructTextRun(text, text->characters(), position, length));
102 return SVGTextMetrics(text, run, position, text->textLength());
/external/webkit/Source/WebCore/wml/
H A DWMLTaskElement.cpp85 size_t position = m_variableSetterElements.find(element); local
86 ASSERT(position != WTF::notFound);
87 m_variableSetterElements.remove(position);
/external/webkit/Source/WebKit/chromium/public/
H A DWebTouchPoint.h63 WebPoint position; member in class:WebKit::WebTouchPoint
/external/webkit/Source/WebKit/chromium/src/
H A DAsyncFileWriterChromium.cpp57 void AsyncFileWriterChromium::write(long long position, Blob* data) argument
60 m_writer->write(position, WebKit::WebURL(data->url()));
H A DWorkerAsyncFileWriterChromium.cpp72 void WorkerAsyncFileWriterChromium::write(long long position, Blob* data) argument
74 m_bridge->postWriteToMainThread(position, data->url());
/external/webkit/Source/WebKit/win/
H A DWebGeolocationPosition.cpp95 GeolocationPosition* core(IWebGeolocationPosition* position) argument
97 if (!position)
100 COMPtr<WebGeolocationPosition> webGeolocationPosition(Query, position);
/external/webkit/Source/WebKit2/Shared/
H A DWebMouseEvent.cpp49 WebMouseEvent::WebMouseEvent(Type type, Button button, const IntPoint& position, const IntPoint& globalPosition, float deltaX, float deltaY, float deltaZ, int clickCount, Modifiers modifiers, double timestamp) argument
52 , m_position(position)
66 WebMouseEvent::WebMouseEvent(Type type, Button button, const IntPoint& position, const IntPoint& globalPosition, float deltaX, float deltaY, float deltaZ, int clickCount, Modifiers modifiers, double timestamp, bool didActivateWebView) argument
69 , m_position(position)
H A DWebWheelEvent.cpp36 WebWheelEvent::WebWheelEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, const FloatSize& delta, const FloatSize& wheelTicks, Granularity granularity, Modifiers modifiers, double timestamp) argument
38 , m_position(position)
52 WebWheelEvent::WebWheelEvent(Type type, const IntPoint& position, const IntPoint& globalPosition, const FloatSize& delta, const FloatSize& wheelTicks, Granularity granularity, Phase phase, Phase momentumPhase, bool hasPreciseScrollingDeltas, Modifiers modifiers, double timestamp) argument
54 , m_position(position)
/external/webkit/Source/WebKit2/UIProcess/
H A DWebGeolocationManagerProxy.cpp59 void WebGeolocationManagerProxy::providerDidChangePosition(WebGeolocationPosition* position) argument
64 m_context->sendToAllProcesses(Messages::WebGeolocationManager::DidChangePosition(position->data()));
/external/webkit/Source/WebKit2/UIProcess/qt/
H A DWebContextMenuProxyQt.cpp83 void WebContextMenuProxyQt::showContextMenu(const IntPoint& position, const Vector<WebContextMenuItemData>& items) argument
95 menu->move(position);
/external/webkit/Source/WebKit2/WebProcess/Geolocation/
H A DWebGeolocationManager.cpp84 RefPtr<GeolocationPosition> position = GeolocationPosition::create(data.timestamp, data.latitude, data.longitude, data.accuracy); local
91 page->corePage()->geolocationController()->positionChanged(position.get());
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
H A DFileLockTest.java42 protected MockFileLock(FileChannel channel, long position, long size, argument
44 super(channel, position, size, shared);
110 * @tests java.nio.channels.FileLock#position()
114 assertEquals(20, fileLock1.position());
116 final long position = ((long) Integer.MAX_VALUE + 1);
117 FileLock fileLock2 = new MockFileLock(readWriteChannel, position, 100,
119 assertEquals(position, fileLock2.position());
129 final long position = 0x0FFFFFFFFFFFFFFFL;
131 FileLock fileLock2 = new MockFileLock(readWriteChannel, position, siz
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMAxisIterator.java55 * @return The position of the current node in the set, as defined by XPath.
94 * from its current position.
104 * Return the node at the given position.
106 * @param position The position
107 * @return The node at the given position.
109 public int getNodeByPosition(int position); argument
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMAxisIteratorBase.java32 /** The position of the last node within the iteration, as defined by XPath.
34 * confuse it with the current (most recently returned) position.
38 /** The position of the current node within the iteration, as defined by XPath.
43 /** The position of the marked node within the iteration;
111 /** Returns the position of the last node within the iteration, as
128 // -- and explicitly saving our position counter (number of nodes
131 // %REVIEW% Should position also be saved by setMark()?
152 * @return The position of the current node within the set, as defined by
219 * Reset the position to zero. NOTE that this does not change the iteration
220 * state, only the position numbe
266 getNodeByPosition(int position) argument
[all...]

Completed in 435 milliseconds

1234567891011>>