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

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DFileWriterBase.cpp59 void FileWriterBase::seekInternal(long long position) argument
61 if (position > m_length)
62 position = m_length;
63 else if (position < 0)
64 position = m_length + position;
65 if (position < 0)
66 position = 0;
67 m_position = position;
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
H A DPositionCallback.idl26 void handleEvent(Geoposition position);
/external/chromium_org/third_party/WebKit/Source/platform/
H A DParsingUtilities.h35 bool skipExactly(const CharType*& position, const CharType* end, CharType delimiter) argument
37 if (position < end && *position == delimiter) {
38 ++position;
45 bool skipExactly(const CharType*& position, const CharType* end) argument
47 if (position < end && characterPredicate(*position)) {
48 ++position;
55 void skipUntil(const CharType*& position, const CharType* end, CharType delimiter) argument
57 while (position < en
62 skipUntil(const CharType*& position, const CharType* end) argument
69 skipWhile(const CharType*& position, const CharType* end) argument
76 reverseSkipWhile(const CharType*& position, const CharType* start) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextBoundaries.cpp62 int findNextWordFromIndex(const UChar* chars, int len, int position, bool forward) argument
67 position = it->following(position);
68 while (position != TextBreakDone) {
71 if (position < len && isAlphanumeric(chars[position - 1]))
72 return position;
74 position = it->following(position);
79 position
93 findWordBoundary(const UChar* chars, int len, int position, int* start, int* end) argument
102 findWordEndBoundary(const UChar* chars, int len, int position) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/frame/csp/
H A DMediaListDirective.cpp31 const UChar* position = begin; local
34 if (position == end) {
39 while (position < end) {
42 skipWhile<UChar, isASCIISpace>(position, end);
43 if (position == end)
48 begin = position;
49 if (!skipExactly<UChar, isMediaTypeCharacter>(position, end)) {
50 skipWhile<UChar, isNotASCIISpace>(position, end);
51 policy()->reportInvalidPluginTypes(String(begin, position - begin));
54 skipWhile<UChar, isMediaTypeCharacter>(position, en
[all...]
H A DCSPSourceList.cpp23 const UChar* position = begin; local
24 skipWhile<UChar, isSourceCharacter>(position, end);
25 if (!equalIgnoringCase("'none'", begin, position - begin))
28 skipWhile<UChar, isASCIISpace>(position, end);
29 if (position != end)
103 const UChar* position = begin; local
104 while (position < end) {
105 skipWhile<UChar, isASCIISpace>(position, end);
106 if (position == end)
109 const UChar* beginSource = position;
184 const UChar* position = begin; local
268 const UChar* position = begin + noncePrefix.length(); local
319 const UChar* position = begin + prefix.length(); local
351 const UChar* position = begin; local
378 const UChar* position = begin; local
412 const UChar* position = begin; local
446 const UChar* position = begin; local
[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/tracing/tracks/
H A Dcounter_track.css8 position: relative;
/external/chromium_org/third_party/polymer/components/core-menu-button/
H A Dcore-menu-button.css8 position: relative;
/external/chromium_org/third_party/polymer/components-chromium/core-menu-button/
H A Dcore-menu-button.css8 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/chromium_org/third_party/WebKit/Source/core/fetch/
H A DFetchInitiatorInfo.h37 , position(TextPosition::belowRangePosition())
45 TextPosition position; member in struct:blink::FetchInitiatorInfo
53 , position(info.position)
62 info.position = position;
68 TextPosition position; member in struct:blink::CrossThreadFetchInitiatorInfoData
/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));
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/draw/
H A Ddraw_cliptest_tmp.h54 float *position = out->data[pos]; local
61 float *clipvertex = position;
68 out->pre_clip_pos[i] = position[i];
74 if (-0.50 * position[0] + position[3] < 0) mask |= (1<<0);
75 if ( 0.50 * position[0] + position[3] < 0) mask |= (1<<1);
76 if (-0.50 * position[1] + position[3] < 0) mask |= (1<<2);
77 if ( 0.50 * position[
[all...]
/external/mesa3d/src/gallium/auxiliary/draw/
H A Ddraw_cliptest_tmp.h54 float *position = out->data[pos]; local
61 float *clipvertex = position;
68 out->pre_clip_pos[i] = position[i];
74 if (-0.50 * position[0] + position[3] < 0) mask |= (1<<0);
75 if ( 0.50 * position[0] + position[3] < 0) mask |= (1<<1);
76 if (-0.50 * position[1] + position[3] < 0) mask |= (1<<2);
77 if ( 0.50 * position[
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/
H A DMemoryDataStore.java26 private int position = offset;
28 growBufferIfNeeded(position);
29 buf[position++] = (byte)b;
33 growBufferIfNeeded(position + b.length);
34 System.arraycopy(b, 0, buf, position, b.length);
35 position += b.length;
39 growBufferIfNeeded(position + len);
40 System.arraycopy(b, off, buf, position, len);
41 position += len;
55 private int position
[all...]
/external/icu/icu4c/source/layout/
H A DGlyphIterator.cpp20 : direction(1), position(-1), nextLimit(-1), prevLimit(-1),
40 position = glyphCount;
51 position = that.position;
70 position = that.position;
89 position = that.position;
111 position = prevLimit;
120 return glyphStorage.insertGlyphs(position, coun
[all...]
/external/ceres-solver/internal/ceres/
H A Dblock_structure.cc38 return (lhs.position < rhs.position);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d10tri/
H A Dd3d10tri.hlsl29 float4 position : POSITION;
35 float4 position : SV_POSITION;
42 result.position = input.position;
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/progs/d3d11tri/
H A Dd3d11tri.hlsl29 float4 position : POSITION;
35 float4 position : SV_POSITION;
42 result.position = input.position;
/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/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d10tri/
H A Dd3d10tri.hlsl29 float4 position : POSITION;
35 float4 position : SV_POSITION;
42 result.position = input.position;
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11tri/
H A Dd3d11tri.hlsl29 float4 position : POSITION;
35 float4 position : SV_POSITION;
42 result.position = input.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/chromium_org/content/browser/geolocation/
H A Dlocation_provider_android.cc22 const Geoposition& position) {
23 last_position_ = position;
35 void LocationProviderAndroid::GetPosition(Geoposition* position) { argument
36 *position = last_position_;
40 // Nothing to do here, android framework will call us back on new position.
21 NotifyNewGeoposition( const Geoposition& position) argument

Completed in 433 milliseconds

1234567891011>>