Searched refs:position (Results 276 - 300 of 1122) sorted by relevance

<<11121314151617181920>>

/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DThrowingInsn.java58 * @param position {@code non-null;} source position
62 public ThrowingInsn(Rop opcode, SourcePosition position, argument
65 super(opcode, position, null, sources);
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-private.hh56 inline void position (hb_font_t *font, hb_buffer_t *buffer) const { map.position (this, font, buffer); } function in struct:hb_ot_shape_plan_t
/external/mockito/src/org/mockito/
H A DAdditionalAnswers.java17 * <p>Currently offer answers that can return the parameter of an invocation at a certain position.
91 * Returns the parameter of an invocation at the given position.
106 public static <T> Answer<T> returnsArgAt(int position) { argument
107 return (Answer<T>) new ReturnsArgumentAt(position);
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/
H A DAbstractDescriptorBox.java70 content.position(content.position() + content.remaining());
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
H A DBaseDescriptor.java83 bb.position(bb.position() + sizeOfInstance);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowItemizedOverlay.java39 public final Item getItem(int position) { argument
40 return items.get(position);
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DExpandableListViewTest.java51 public boolean onChildClick(ExpandableListView expandableListView, View view, int i, int position, long l) { argument
53 transcript.add("item was clicked: " + position);
/external/v8/src/
H A Dscanner-character-streams.h37 // source (ReadBlock can be called with pos_ pointing to any position,
55 virtual unsigned FillBuffer(unsigned position, unsigned length) = 0;
72 virtual unsigned FillBuffer(unsigned position, unsigned length);
94 // The character position of the character at raw_data[raw_data_pos_].
/external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
H A Dmaximum-age.js10 var position; variable
15 position = p;
16 shouldBe('position.coords.latitude', 'mockLatitude');
17 shouldBe('position.coords.longitude', 'mockLongitude');
18 shouldBe('position.coords.accuracy', 'mockAccuracy');
44 // Update the position provided by the mock service.
47 // The default maximumAge is zero, so we expect the updated position from the service.
61 // The maximumAge is non-zero, so we expect the cached position, not the error from the service.
/external/webkit/Source/WebCore/dom/
H A DPendingScript.h84 void setStartingPosition(const TextPosition1& position) { m_startingPosition = position; } argument
/external/webkit/Source/WebCore/fileapi/
H A DFileStreamProxy.cpp191 void FileStreamProxy::write(const KURL& blobURL, long long position, int length) argument
193 fileThread()->postTask(createFileThreadTask(this, &FileStreamProxy::writeOnFileThread, blobURL, position, length));
196 void FileStreamProxy::writeOnFileThread(const KURL& blobURL, long long position, int length) argument
198 int bytesWritten = m_stream->write(blobURL, position, length);
208 void FileStreamProxy::truncate(long long position) argument
210 fileThread()->postTask(createFileThreadTask(this, &FileStreamProxy::truncateOnFileThread, position));
213 void FileStreamProxy::truncateOnFileThread(long long position) argument
215 bool success = m_stream->truncate(position);
/external/webkit/Source/WebCore/html/
H A DHTMLFormCollection.cpp69 if (info()->current && info()->position == index)
75 if (!info()->current || info()->position > index) {
77 info()->position = 0;
82 unsigned currentIndex = info()->position;
88 info()->position = index;
103 info()->position = 0;
139 return item(info()->position + 1);
144 Element* retval = getNamedFormItem(m_idsDone ? nameAttr : idAttr, name, ++info()->position);
/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/text/brew/
H A DTextBreakIteratorBrew.cpp62 int following(int position) argument
64 currentPos = position;
67 int preceding(int position) argument
69 currentPos = position;
309 int textBreakPreceding(TextBreakIterator* breakIterator, int position) argument
311 return breakIterator->preceding(position);
314 int textBreakFollowing(TextBreakIterator* breakIterator, int position) argument
316 return breakIterator->following(position);
/external/webkit/Source/WebCore/platform/text/wince/
H A DTextBreakIteratorWinCE.cpp71 int following(int position) argument
73 currentPos = position;
76 int preceding(int position) argument
78 currentPos = position;
300 int textBreakPreceding(TextBreakIterator* breakIterator, int position) argument
302 return breakIterator->preceding(position);
305 int textBreakFollowing(TextBreakIterator* breakIterator, int position) argument
307 return breakIterator->following(position);
/external/webkit/Source/WebCore/rendering/svg/
H A DRenderSVGInlineText.cpp137 bool RenderSVGInlineText::characterStartsNewTextChunk(int position) const
141 ASSERT(position >= 0);
142 ASSERT(position < static_cast<int>(textLength()));
145 if (!position && parent()->isSVGTextPath() && !previousSibling())
154 if (currentPosition == position) {
155 return m_attributes.xValues().at(position) != SVGTextLayoutAttributes::emptyValue()
156 || m_attributes.yValues().at(position) != SVGTextLayoutAttributes::emptyValue();
160 if (currentPosition > position)
164 // The desired position is available in the x/y list, but not in the character data values list.
166 // The consequence is that the desired character does not define a new absolute x/y position, eve
[all...]
/external/webkit/Source/WebKit/android/WebCoreSupport/
H A DGeolocationManager.cpp90 void GeolocationManager::setMockPosition(PassRefPtr<WebCore::GeolocationPosition> position) argument
93 mockClient()->setPosition(position);
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/
H A DByteBufferTest.java133 buf.position(buf.limit());
139 assertEquals(buf.position(), readonly.position());
145 // readonly's position, mark, and limit should be independent to buf
147 assertEquals(readonly.position(), 0);
149 assertEquals(buf.position(), buf.limit());
151 assertEquals(buf.position(), 0);
171 assertEquals(buf.position(), buf.capacity());
182 buf.position(0);
187 assertEquals(buf.position(),
[all...]
/external/chromium/chrome/browser/resources/ntp4/
H A Dmost_visited_page.css7 position: absolute;
12 position: absolute;
30 position: absolute;
66 position: relative;
86 position: relative;
144 position: absolute;
173 position: relative;
/external/chromium/third_party/libjingle/source/talk/base/
H A Dstream.h171 // position.
172 virtual bool SetPosition(size_t position) { return false; } argument
174 // Get the byte offset of the current position from the start of the stream.
175 // Returns false if the position is not known.
176 virtual bool GetPosition(size_t* position) const { return false; }
291 virtual bool SetPosition(size_t position) { argument
292 return stream_->SetPosition(position);
294 virtual bool GetPosition(size_t* position) const {
295 return stream_->GetPosition(position);
366 // The current position o
[all...]
/external/quake/quake/src/QW/client/
H A Dr_bsp.c188 lastdist = DotProduct (plastvert->position, tplane.normal) -
198 dist = DotProduct (pvert->position, tplane.normal) - tplane.dist;
214 ptvert->position[0] = plastvert->position[0] +
215 frac * (pvert->position[0] -
216 plastvert->position[0]);
217 ptvert->position[1] = plastvert->position[1] +
218 frac * (pvert->position[1] -
219 plastvert->position[
[all...]
/external/quake/quake/src/WinQuake/
H A Dr_bsp.cpp188 lastdist = DotProduct (plastvert->position, tplane.normal) -
198 dist = DotProduct (pvert->position, tplane.normal) - tplane.dist;
214 ptvert->position[0] = plastvert->position[0] +
215 frac * (pvert->position[0] -
216 plastvert->position[0]);
217 ptvert->position[1] = plastvert->position[1] +
218 frac * (pvert->position[1] -
219 plastvert->position[
[all...]
/external/doclava/src/com/google/doclava/
H A DTodoFile.java88 setHDF(data, base + errors, cl.position(), "&lt;class comment&gt;", MISSING);
98 setHDF(data, base + errors, m.position(), m.prettySignature(), MISSING);
112 setHDF(data, base + errors, m.position(), m.name() + m.prettySignature(), MISSING);
127 setHDF(data, base + errors, f.position(), f.name(), MISSING);
141 setHDF(data, base + errors, f.position(), f.name(), MISSING);
/external/replicaisland/src/com/replica/replicaisland/
H A DDrawableBitmap.java90 * Draw the bitmap at a given x,y position, expressed in pixels, with the
216 public boolean visibleAtPosition(Vector2 position) { argument
219 if (position.x + mWidth < 0 || position.x > mViewWidth
220 || position.y + mHeight < 0 || position.y > mViewHeight) {
H A DRenderSystem.java53 public void scheduleForDraw(DrawableObject object, Vector2 position, int priority, boolean cameraRelative) { argument
56 element.set(object, position, priority, cameraRelative);
104 public void set(DrawableObject drawable, Vector2 position, int priority, boolean isCameraRelative) { argument
106 x = position.x;
107 y = position.y;

Completed in 489 milliseconds

<<11121314151617181920>>