Searched refs:position (Results 1 - 25 of 1122) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/fileapi/
H A DFileWriterBase.cpp63 void FileWriterBase::seekInternal(long long position) argument
65 if (position > m_length)
66 position = m_length;
67 else if (position < 0)
68 position = m_length + position;
69 if (position < 0)
70 position = 0;
71 m_position = position;
H A DFileWriterSync.idl37 void seek(in long long position) raises (FileException);
40 readonly attribute long long position;
/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/clang/test/CodeGen/
H A Dext-vector-member-alignment.c6 float4 position; member in struct:struct1
10 float4 f(struct struct1* x) { return x->position; }
13 p->position.x = c;
14 *a = p->position.y;
15 *b = p->position[0];
16 p->position[2] = c;
/external/chromium-trace/trace-viewer/src/tracks/
H A Dcounter_track.css7 position: relative;
/external/guava/guava/src/com/google/common/collect/
H A DAbstractIndexedListIterator.java29 * position. It does not support {@link #remove}, {@link #set}, or {@link #add}.
37 private int position; field in class:AbstractIndexedListIterator
47 * position is 0. That is, the first call to {@link #next()} will return the
59 * initial position. That is, the first call to {@link #nextIndex()} will
60 * return {@code position}, and the first call to {@link #next()} will return
62 * retrieve the preceding {@code position} elements.
64 * @throws IndexOutOfBoundsException if {@code position} is negative or is
68 protected AbstractIndexedListIterator(int size, int position) { argument
69 checkPositionIndex(position, size);
71 this.position
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/objectdescriptors/
H A DBitWriterBuffer.java9 int position = 0; field in class:BitWriterBuffer
13 this.initialPos = buffer.position();
20 int left = 8 - position % 8;
22 int current = (buffer.get(initialPos + position / 8));
25 buffer.put(initialPos + position / 8, (byte) (current > 127 ? current - 256 : current));
26 position += numBits;
32 buffer.position(initialPos + position / 8 + ((position % 8 > 0) ? 1 : 0));
H A DBitReaderBuffer.java9 int position; field in class:BitReaderBuffer
13 initialPos = buffer.position();
17 byte b = buffer.get(initialPos + position / 8);
19 int left = 8 - position % 8;
22 rc = (v << (position % 8) & 0xFF) >> ((position % 8) + (left - i));
23 position += i;
31 buffer.position(initialPos + (int) Math.ceil((double) position / 8));
36 return position;
[all...]
/external/webkit/Source/WebCore/css/
H A DStyleList.cpp38 void StyleList::insert(unsigned position, PassRefPtr<StyleBase> child) argument
41 if (position >= length())
44 m_children.insert(position, child);
48 void StyleList::remove(unsigned position) argument
50 if (position >= length())
52 m_children.remove(position);
/external/webkit/Source/WebCore/page/
H A DContentSecurityPolicy.cpp72 static bool skipExactly(const UChar*& position, const UChar* end, UChar delimiter) argument
74 if (position < end && *position == delimiter) {
75 ++position;
82 static bool skipExactly(const UChar*& position, const UChar* end) argument
84 if (position < end && characterPredicate(*position)) {
85 ++position;
91 static void skipUtil(const UChar*& position, const UChar* end, UChar delimiter) argument
93 while (position < en
98 skipWhile(const UChar*& position, const UChar* end) argument
202 const UChar* position = begin; local
245 const UChar* position = begin; local
307 const UChar* position = begin; local
334 const UChar* position = begin; local
380 const UChar* position = begin; local
440 const UChar* position = value.characters(); local
546 const UChar* position = policy.characters(); local
573 const UChar* position = begin; local
[all...]
/external/apache-harmony/nio/src/test/java/common/org/apache/harmony/nio/tests/java/nio/
H A DAbstractBufferTest.java42 assertTrue(0 <= baseBuf.position() && baseBuf.position() <= baseBuf.limit()
48 int oldPosition = baseBuf.position();
53 assertEquals(baseBuf.position(), 0);
64 baseBuf.position(oldPosition);
69 int oldPosition = baseBuf.position();
74 assertEquals(baseBuf.position(), 0);
85 baseBuf.position(oldPosition);
90 int oldPosition = baseBuf.position();
93 assertEquals(baseBuf.hasRemaining(), baseBuf.position() < baseBu
[all...]
/external/icu4c/layout/
H A DGlyphIterator.cpp20 : direction(1), position(-1), nextLimit(-1), prevLimit(-1),
37 position = glyphCount;
47 position = that.position;
65 position = that.position;
83 position = that.position;
104 position = prevLimit;
112 return glyphStorage.insertGlyphs(position, coun
[all...]
/external/dexmaker/src/dx/java/com/android/dx/util/
H A DByteArrayByteInput.java22 private int position; field in class:ByteArrayByteInput
29 return bytes[position++];
/external/bison/examples/calc++/
H A Dposition.hh34 ** \file ../../../../examples/calc++/position.hh
35 ** Define the yy::position class.
56 #line 57 "../../../../examples/calc++/position.hh"
57 /// Abstract a position.
58 class position class in namespace:yy
62 /// Construct a position.
63 explicit position (std::string* f = YY_NULL, function in class:yy::position
99 /// File name to which this position refers.
107 /// Add and assign a position.
108 inline position
[all...]
/external/clang/test/PCH/
H A Dobjcxx-ivar-class.h9 S position; variable
11 @property(assign, nonatomic) S position; variable
15 @synthesize position; variable
/external/jsilver/src/com/google/streamhtmlparser/util/
H A DJavascriptTokenBuffer.java148 * @param position The index into the buffer
152 public char getChar(int position) { argument
153 assert(position < 0); // Developer error if it triggers.
155 int absolutePosition = getAbsolutePosition(position);
164 * Sets the given {@code input} at the given {@code position} of the buffer.
171 * @param position The index at which to set the character
175 public boolean setChar(int position, char input) { argument
176 assert(position < 0); // Developer error if it triggers.
178 int absolutePosition = getAbsolutePosition(position);
199 int position;
245 getAbsolutePosition(int position) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/filters/
H A DPointLightSource.h33 static PassRefPtr<PointLightSource> create(const FloatPoint3D& position) argument
35 return adoptRef(new PointLightSource(position));
38 const FloatPoint3D& position() const { return m_position; } function in class:WebCore::PointLightSource
49 PointLightSource(const FloatPoint3D& position) argument
51 , m_position(position)
/external/webkit/Source/WebCore/html/
H A DDOMTokenList.cpp71 unsigned position = 0; // 4 local
74 while (position < inputLength) {
75 if (isHTMLSpace(input[position])) { // 6
76 output.append(input[position++]); // 6.1, 6.2
82 while (position < inputLength && isNotHTMLSpace(input[position]))
83 s.append(input[position++]);
88 while (position < inputLength && isHTMLSpace(input[position]))
89 ++position;
[all...]
/external/smali/smali/src/main/java/org/jf/smali/
H A DLiteralTools.java52 int position = 0;
55 if (byteChars[position] == '-') {
56 position++;
60 if (byteChars[position] == '0') {
61 position++;
62 if (position == byteChars.length) {
64 } else if (byteChars[position] == 'x' || byteChars[position] == 'X') {
66 position++;
67 } else if (Character.digit(byteChars[position],
[all...]
/external/smack/src/org/jivesoftware/smackx/workgroup/packet/
H A DQueueUpdate.java28 * status notifications -- position updates, and estimated time
43 private int position; field in class:QueueUpdate
46 public QueueUpdate(int position, int remainingTime) { argument
47 this.position = position;
52 * Returns the user's position in the workgroup queue, or -1 if the
55 * @return the position in the workgroup queue.
58 return this.position;
74 if (position != -1) {
75 buf.append("<position>")
[all...]
/external/ceres-solver/internal/ceres/
H A Dblock_structure.h53 Block() : size(-1), position(-1) {}
54 Block(int size_, int position_) : size(size_), position(position_) {}
57 int position; // Position along the row/column. member in struct:ceres::internal::Block
61 Cell() : block_id(-1), position(-1) {}
63 : block_id(block_id_), position(position_) {}
68 int position; member in struct:ceres::internal::Cell
/external/chromium/chrome/browser/policy/
H A Dpolicy_path_parser_posix.cc24 size_t position = result.find(kUserNamePolicyVarName); local
25 if (position != std::string::npos) {
28 result.replace(position, strlen(kUserNamePolicyVarName), user->pw_name);
33 position = result.find(kMachineNamePolicyVarName);
34 if (position != std::string::npos) {
37 result.replace(position, strlen(kMachineNamePolicyVarName), machinename);
/external/jmonkeyengine/engine/src/core/com/jme3/collision/
H A DMotionAllowedListener.java40 * Check if motion allowed. Modify position and velocity vectors
43 * @param position
46 public void checkMotionAllowed(Vector3f position, Vector3f velocity); argument
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DCountingAdapter.java26 public Object getItem(int position) { argument
31 public long getItemId(int position) { argument
36 public View getView(int position, View convertView, ViewGroup parent) { argument
38 textView.setText("Item " + position);
/external/webrtc/src/common_audio/vad/
H A Dvad_sp.c63 int position = -1; local
96 // |low_value_vector|. If so, find the |position| where to insert the new
102 position = 0;
104 position = 1;
107 position = 2;
109 position = 3;
113 position = 4;
115 position = 5;
118 position = 6;
120 position
[all...]

Completed in 4302 milliseconds

1234567891011>>