Searched refs:position (Results 251 - 275 of 1122) sorted by relevance

<<11121314151617181920>>

/external/webkit/Source/WebCore/fileapi/
H A DFileWriterSync.h57 void seek(long long position, ExceptionCode&);
/external/webkit/Source/WebCore/html/
H A DHTMLProgressElement.h44 double position() const;
/external/webkit/Source/WebCore/xml/
H A DXMLHttpRequestProgressEvent.h46 unsigned long long position() const { return loaded(); } function in class:WebCore::XMLHttpRequestProgressEvent
/external/webkit/Source/WebKit/chromium/public/
H A DWebScrollbar.h73 // Gets the current value (i.e. position inside the region).
77 virtual void setValue(int position) = 0;
/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/API/C/
H A DWKGeolocationManager.h51 WK_EXPORT void WKGeolocationManagerProviderDidChangePosition(WKGeolocationManagerRef geolocationManager, WKGeolocationPositionRef position);
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundlePageOverlay.cpp90 return m_client.mouseDown(toAPI(pageOverlay), toAPI(event.position()), toAPI(event.button()), m_client.clientInfo);
96 return m_client.mouseUp(toAPI(pageOverlay), toAPI(event.position()), toAPI(event.button()), m_client.clientInfo);
103 return m_client.mouseMoved(toAPI(pageOverlay), toAPI(event.position()), m_client.clientInfo);
110 return m_client.mouseDragged(toAPI(pageOverlay), toAPI(event.position()), toAPI(event.button()), m_client.clientInfo);
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/channels/
H A DSourceChannelTest.java53 positionedBuffer.position(BUFFER_SIZE);
99 readBuf.position(0);
116 readBuf.position(BUFFER_SIZE);
164 buffer.position(0);
165 positionedBuffer.position(BUFFER_SIZE);
180 if (0 == count && BUFFER_SIZE == readBufArray[1].position()) {
189 assertEquals(BUFFER_SIZE, readBuf.position());
246 readBuf.position(0);
265 readBuf.position(BUFFER_SIZE);
308 buffer.position(
[all...]
H A DFileChannelTest.java272 * @tests java.nio.channels.FileChannel#position()
275 assertEquals(0, readOnlyFileChannel.position());
276 assertEquals(0, writeOnlyFileChannel.position());
277 assertEquals(0, readWriteFileChannel.position());
281 * @tests java.nio.channels.FileChannel#position()
286 assertEquals(0, readOnlyFileChannel.position());
289 assertEquals(CONTENT_LENGTH, readOnlyFileChannel.position());
331 * @tests java.nio.channels.FileChannel#position()
336 assertEquals(CONTENT_LENGTH, writeOnlyFileChannel.position());
340 * @tests java.nio.channels.FileChannel#position()
3030 lock(long position, long size, boolean shared) argument
3045 public long position() throws IOException { method in class:FileChannelTest.MockFileChannel
3049 public FileChannel position(long arg0) throws IOException { method in class:FileChannelTest.MockFileChannel
3089 tryLock(long position, long size, boolean shared) argument
[all...]
/external/protobuf/java/src/main/java/com/google/protobuf/micro/
H A DCodedOutputStreamMicro.java54 private int position; field in class:CodedOutputStreamMicro
67 position = offset;
74 position = 0;
757 * buffer position is reset to its initial value when this returns.
767 output.write(buffer, 0, position);
768 position = 0;
787 return limit - position;
825 if (position == limit) {
829 buffer[position++] = value;
845 if (limit - position >
[all...]
/external/qemu/distrib/sdl-1.2.15/test/
H A Dtestsprite.c65 SDL_Rect area, *position, *velocity; local
75 position = &positions[i];
77 position->x += velocity->x;
78 if ( (position->x < 0) || (position->x >= (screen->w - sprite_w)) ) {
80 position->x += velocity->x;
82 position->y += velocity->y;
83 if ( (position->y < 0) || (position->y >= (screen->h - sprite_w)) ) {
85 position
[all...]
/external/webkit/Source/WebCore/platform/graphics/chromium/
H A DComplexTextControllerLinux.cpp290 double position = 0; local
303 position += determineWordBreakSpacing(logClustersIndex);
311 m_xPositions[i] = m_offsetX + (position * rtlFlip) + offsetX;
318 position += m_letterSpacing;
320 position += advance;
322 m_pixelWidth = std::max(position, 0.0);
328 int position = 0; local
331 while (position < length) {
333 int nextPosition = position;
341 U16_APPEND(destination, position, lengt
[all...]
/external/ceres-solver/internal/ceres/
H A Dvisibility_test.cc63 row.block.position = 0;
73 row.block.position = 2;
83 row.block.position = 4;
93 row.block.position = 6;
143 row.block.position = 0;
152 row.block.position = 2;
161 row.block.position = 4;
170 row.block.position = 6;
/external/chromium/base/i18n/
H A Drtl.cc134 size_t position = 0; local
135 while (position < length) {
137 size_t next_position = position;
154 position = next_position;
248 size_t position = 0; local
249 while (position < length) {
251 size_t next_position = position;
260 position = next_position;
/external/chromium/chrome/browser/resources/ntp4/
H A Dapps_page.css7 position: absolute;
43 /* We need to ensure there is no animation applied to its position
H A Dnew_tab.css36 position: fixed;
51 position: fixed;
125 position: absolute;
133 background-position: 40px 12px;
/external/clang/www/
H A Dmenu.css6 position:fixed;
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DCstInsn.java48 * @param position {@code non-null;} source position
54 public CstInsn(Dop opcode, SourcePosition position, argument
56 super(opcode, position, registers);
H A DLocalSnapshot.java37 * @param position {@code non-null;} source position
40 public LocalSnapshot(SourcePosition position, RegisterSpecSet locals) { argument
41 super(position);
H A DTargetInsn.java35 * @param position {@code non-null;} source position
41 public TargetInsn(Dop opcode, SourcePosition position, argument
43 super(opcode, position, registers);
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DFillArrayDataInsn.java46 * @param position {@code non-null;} source position
51 public FillArrayDataInsn(Rop opcode, SourcePosition position, argument
55 super(opcode, position, null, sources);
H A DPlainCstInsn.java34 * @param position {@code non-null;} source position
39 public PlainCstInsn(Rop opcode, SourcePosition position, argument
42 super(opcode, position, result, sources, cst);
H A DSwitchInsn.java36 * @param position {@code non-null;} source position
41 public SwitchInsn(Rop opcode, SourcePosition position, RegisterSpec result, argument
43 super(opcode, position, result, sources);
H A DThrowingCstInsn.java37 * @param position {@code non-null;} source position
42 public ThrowingCstInsn(Rop opcode, SourcePosition position, argument
45 super(opcode, position, null, sources, cst);

Completed in 487 milliseconds

<<11121314151617181920>>