Searched refs:position (Results 126 - 150 of 1122) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/fileapi/
H A DFileStreamProxy.h61 virtual void write(const KURL& blobURL, long long position, int length);
62 virtual void truncate(long long position);
81 void writeOnFileThread(const KURL& blobURL, long long position, int length);
82 void truncateOnFileThread(long long position);
/external/webkit/Source/WebCore/inspector/front-end/
H A DScriptFormatterWorker.js59 var position = source.indexOf(match[2], lastPosition);
60 if (position === -1)
62 mapping.original.push(position);
64 lastPosition = position + match[2].length;
/external/webkit/Source/WebCore/platform/graphics/cg/
H A DImageSourceCG.h39 size_t sharedBufferGetBytesAtPosition(void* info, void* buffer, off_t position, size_t count);
/external/webkit/Source/WebCore/rendering/
H A DRenderProgress.cpp57 if (m_position == element->position())
59 m_position = element->position();
72 return (HTMLProgressElement::IndeterminatePosition != position()
73 && HTMLProgressElement::InvalidPosition != position());
/external/webkit/Source/WebCore/rendering/svg/
H A DSVGTextQuery.h41 FloatPoint startPositionOfCharacter(unsigned position) const;
42 FloatPoint endPositionOfCharacter(unsigned position) const;
43 float rotationOfCharacter(unsigned position) const;
44 FloatRect extentOfCharacter(unsigned position) const;
H A DSVGTextLayoutAttributes.cpp63 static inline float safeValueAtPosition(const Vector<float>& values, unsigned position) argument
65 return position < values.size() ? values[position] : SVGTextLayoutAttributes::emptyValue();
68 void SVGTextLayoutAttributes::PositioningLists::appendValuesFromPosition(const PositioningLists& source, unsigned position) argument
70 xValues.append(safeValueAtPosition(source.xValues, position));
71 yValues.append(safeValueAtPosition(source.yValues, position));
72 dxValues.append(safeValueAtPosition(source.dxValues, position));
73 dyValues.append(safeValueAtPosition(source.dyValues, position));
74 rotateValues.append(safeValueAtPosition(source.rotateValues, position));
H A DSVGTextQuery.cpp191 // If the start position maps to a character in the metrics list, we don't need to modify it.
195 // If the start position maps to a character in the metrics list, we don't need to modify it.
321 : position(queryPosition)
325 unsigned position;
333 int startPosition = data->position;
357 FloatPoint SVGTextQuery::startPositionOfCharacter(unsigned position) const
362 StartPositionOfCharacterData data(position);
370 : position(queryPosition)
374 unsigned position;
382 int startPosition = data->position;
[all...]
/external/webkit/Source/WebKit/chromium/public/
H A DWebFileWriter.h47 virtual void write(long long position, const WebURL& blobURL) = 0;
H A DWebTouchPoint.h63 WebPoint position; member in class:WebKit::WebTouchPoint
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundlePageOverlay.h47 typedef bool (*WKBundlePageOverlayMouseDownCallback)(WKBundlePageOverlayRef pageOverlay, WKPoint position, WKEventMouseButton mouseButton, const void* clientInfo);
48 typedef bool (*WKBundlePageOverlayMouseUpCallback)(WKBundlePageOverlayRef pageOverlay, WKPoint position, WKEventMouseButton mouseButton, const void* clientInfo);
49 typedef bool (*WKBundlePageOverlayMouseMovedCallback)(WKBundlePageOverlayRef pageOverlay, WKPoint position, const void* clientInfo);
50 typedef bool (*WKBundlePageOverlayMouseDraggedCallback)(WKBundlePageOverlayRef pageOverlay, WKPoint position, WKEventMouseButton mouseButton, const void* clientInfo);
/external/bison/examples/calc++/
H A Dlocation.hh41 # include "position.hh"
54 location (const position& b, const position& e)
61 explicit location (const position& p = position ())
111 position begin;
113 position end;
163 position last = loc.end - 1;
/external/webkit/Source/WebCore/dom/
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/html/
H A DCollectionCache.cpp43 , position(other.position)
57 std::swap(position, other.position);
77 position = 0;
/external/webkit/Source/WebCore/platform/
H A DSharedBuffer.cpp40 static inline unsigned segmentIndex(unsigned position) argument
42 return position / segmentSize;
45 static inline unsigned offsetInSegment(unsigned position) argument
47 return position & segmentPositionMask;
219 unsigned SharedBuffer::getSomeData(const char*& someData, unsigned position) const
222 someData = data() + position;
223 return size() - position;
226 if (position >= m_size) {
232 if (position < consecutiveSize) {
233 someData = m_buffer.data() + position;
[all...]
/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/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DInsn.java34 /** {@code non-null;} source position */
35 private final SourcePosition position; field in class:Insn
47 * @param position {@code non-null;} source position
51 public Insn(Rop opcode, SourcePosition position, RegisterSpec result, argument
57 if (position == null) {
58 throw new NullPointerException("position == null");
66 this.position = position;
129 * Gets the source position
[all...]
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
H A DBlenderInputStream.java68 /** The current position of the read cursor. */
69 protected int position; field in class:BlenderInputStream
113 this.position = 0;
214 return cachedBuffer[position++] & 0xFF;
322 * This method sets the current position of the read cursor.
323 * @param position
324 * the position of the read cursor
326 public void setPosition(int position) { argument
327 this.position = position;
[all...]
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A Djsilver.sablecc196 {->New command.comment(New position.cs_open(cs_open),comment)}
201 New position.cs_open(cs_open),
207 New position.cs_open(cs_open),
213 New position.cs_open(cs_open),
219 New position.cs_open(cs_open),
225 New position.cs_open(cs_open),
232 New position.cs_open(cs_open),
240 New position.cs_open(cs_open),
249 New position.cs_open(cs_open),
258 New position
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DSphereCollisionVolume.java85 public boolean intersects(Vector2 position, FlipInfo flip, CollisionVolume other, argument
91 result = other.intersects(otherPosition, otherFlip, this, position, flip);
93 mWorkspaceVector.set(position);
159 private static void offsetByCenter(Vector2 position, Vector2 center, FlipInfo flip) { argument
162 position.x += flip.parentWidth - center.x;
164 position.x += center.x;
168 position.y += flip.parentHeight - center.y;
170 position.y += center.y;
173 position.add(center);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowListView.java60 public boolean performItemClick(View view, int position, long id) { argument
66 boolean newValue = !checkedItemPositions.get(position, false);
67 checkedItemPositions.put(position, newValue);
69 boolean newValue = !checkedItemPositions.get(position, false);
72 checkedItemPositions.put(position, true);
77 handled |= super.performItemClick(view, position, id);
185 public void setItemChecked(int position, boolean value) { argument
188 checkedItemPositions.put(position, value);
190 checkedItemPositions.put(position, value);
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
H A D15.5.4.7-1.js29 at or to the left of the specified position, then the index of the
30 rightmost such position is returned; otherwise -1 is returned. If position
35 position, the following steps are taken:
39 3.Call ToNumber(position). (If position is undefined or not supplied, this step produces the value NaN).
45 than Result(5), and for all nonnegative integers j less than Result(7), the character at position k+j of
46 Result(1) is the same as the character at position j of Result(2); but if there is no such integer k, then
170 function LastIndexOf( string, search, position ) {
174 position
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
H A Dstreams.rb96 to a recognizer at look-ahead position specified by <tt>k</tt>. For
103 look-ahead position specified by <tt>k</tt>. While <tt>peek</tt> provides the
136 <tt>stream.seek(position)</tt> moves the stream cursor to an absolute position
139 position seeking.
178 # position specified by <tt>k</tt> (such as integer value of a character or an
184 # used to retreive the full object of interest at lookahead position specified
190 # saves the current position for the purposes of backtracking and
196 # returns the current position of the stream
201 # restores the stream position usin
[all...]
/external/apache-harmony/crypto/src/test/api/java.injected/javax/crypto/
H A DCipherSpiTest.java135 bb1.position(0);
147 bb1.position(len);
151 bb1.position(0);
152 bb2.position(len - 2);
159 bb1.position(10);
160 bb2.position(0);
163 bb1.position(bb.length);
166 bb1.position(pos);
167 bb2.position(0);
199 bb1.position(bb
[all...]
/external/ceres-solver/internal/ceres/
H A Dpartitioned_matrix_view.cc101 const int row_block_pos = bs->rows[r].block.position;
104 const int col_block_pos = bs->cols[col_block_id].position;
109 ConstMatrixRef m(row_values + cell.position,
125 const int row_block_pos = bs->rows[r].block.position;
132 const int col_block_pos = bs->cols[col_block_id].position;
137 ConstMatrixRef m(row_values + cells[c].position,
153 const int row_block_pos = bs->rows[r].block.position;
156 const int col_block_pos = bs->cols[col_block_id].position;
161 ConstMatrixRef m(row_values + cell.position,
177 const int row_block_pos = bs->rows[r].block.position;
[all...]
/external/webkit/Source/WebCore/css/
H A DfullscreenQuickTime.css78 position: absolute;
88 position: absolute;
98 position: absolute;
106 position: absolute;
114 position: absolute;
122 position: absolute;
131 position: absolute;
142 position: absolute;
150 position: absolute;

Completed in 575 milliseconds

1234567891011>>