Searched refs:position (Results 26 - 50 of 1122) sorted by relevance

1234567891011>>

/external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
H A Dsuccess.js15 var position;
17 position = p;
18 shouldBe('position.coords.latitude', 'mockLatitude');
19 shouldBe('position.coords.longitude', 'mockLongitude');
20 shouldBe('position.coords.accuracy', 'mockAccuracy');
H A Dcallback-exception.js15 var position;
17 position = p;
18 shouldBe('position.coords.latitude', 'mockLatitude');
19 shouldBe('position.coords.longitude', 'mockLongitude');
20 shouldBe('position.coords.accuracy', 'mockAccuracy');
H A Dposition-string.js1 description("Tests formatting of position.toString().");
15 var position;
18 position = p;
19 shouldBe('position.coords.latitude', 'mockLatitude');
20 shouldBe('position.coords.longitude', 'mockLongitude');
21 shouldBe('position.coords.accuracy', 'mockAccuracy');
22 shouldBe('position.toString()', '"[object Geoposition]"');
23 shouldBe('position.coords.toString()', '"[object Coordinates]"');
/external/webkit/Source/WebCore/xml/
H A DXMLHttpRequestProgressEvent.idl32 readonly attribute unsigned long long position;
/external/webkit/Source/WebKit/chromium/public/
H A DWebTextCheckingResult.h47 , position(p)
53 int position; member in struct:WebKit::WebTextCheckingResult
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKGeolocationPosition.cpp41 RefPtr<WebGeolocationPosition> position = WebGeolocationPosition::create(timestamp, latitude, longitude, accuracy); local
42 return toAPI(position.release().releaseRef());
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
H A Derror.py26 def __init__(self, code, message, token, position, fix_data):
33 position: The position of the error within the token.
41 self.position = position
47 if self.position:
48 self.start_index += self.position.start
H A Dmatcher.py22 from closure_linter.common import position namespace
27 Position = position.Position
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowViewPager.java39 public void setCurrentItem(int position) { argument
41 onPageChangeListener.onPageSelected(position);
43 currentItem = position;
47 public void setCurrentItem(int position, boolean smoothScroll){ argument
48 setCurrentItem( position );
/external/webkit/Source/WebCore/platform/text/brew/
H A DTextBoundariesBrew.cpp37 int findNextWordFromIndex(const UChar* buffer, int len, int position, bool forward) argument
43 void findWordBoundary(const UChar* buffer, int len, int position, int* start, int* end) argument
45 if (position > len) {
53 int currentPosition = position - 1;
64 currentPosition = position;
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DChunkedIntArray.java105 * the record, both 0-based (though position 0 is reserved for special
107 * @param position int Record number
110 int readEntry(int position, int offset) throws ArrayIndexOutOfBoundsException argument
115 return fastArray[(position*slotsize)+offset];
123 position*=slotsize;
124 int chunkpos = position >> lowbits;
125 int slotpos = position & lowmask;
131 // Check that the node at index "position" is not an ancestor
133 // RETURN -1. If position is NOT an ancestor, return position
137 specialFind(int startPos, int position) argument
192 writeEntry(int position, int offset, int value) argument
221 writeSlot(int position, int w0, int w1, int w2, int w3) argument
245 readSlot(int position, int[] buffer) argument
[all...]
/external/webkit/Source/WebCore/platform/graphics/android/layers/
H A DFixedPositioning.cpp18 FixedPositioning::FixedPositioning(LayerAndroid* layer, const FixedPositioning& position) argument
20 , m_fixedLeft(position.m_fixedLeft)
21 , m_fixedTop(position.m_fixedTop)
22 , m_fixedRight(position.m_fixedRight)
23 , m_fixedBottom(position.m_fixedBottom)
24 , m_fixedMarginLeft(position.m_fixedMarginLeft)
25 , m_fixedMarginTop(position.m_fixedMarginTop)
26 , m_fixedMarginRight(position.m_fixedMarginRight)
27 , m_fixedMarginBottom(position.m_fixedMarginBottom)
28 , m_fixedRect(position
102 BackgroundImagePositioning(LayerAndroid* layer, const BackgroundImagePositioning& position) argument
[all...]
/external/webkit/Source/WebCore/html/
H A DHTMLFontElement.cpp55 const UChar* position = input.characters(); local
56 const UChar* end = position + input.length();
59 while (position < end) {
60 if (!isHTMLSpace(*position))
62 ++position;
66 if (position == end)
68 ASSERT(position < end);
77 switch (*position) {
80 ++position;
84 ++position;
[all...]
/external/chromium/chrome/browser/notifications/
H A Dballoon_collection_linux.cc64 PositionPreference position) {
65 if (position == DEFAULT_POSITION)
66 position = LOWER_RIGHT;
70 if (position == UPPER_RIGHT)
72 else if (position == UPPER_LEFT)
74 else if (position == LOWER_LEFT)
76 else if (position == LOWER_RIGHT)
63 SetPositionPreference( PositionPreference position) argument
H A Dballoon_collection_win.cc53 PositionPreference position) {
54 if (position == DEFAULT_POSITION)
55 position = LOWER_RIGHT;
59 if (position == UPPER_RIGHT)
61 else if (position == UPPER_LEFT)
63 else if (position == LOWER_LEFT)
65 else if (position == LOWER_RIGHT)
52 SetPositionPreference( PositionPreference position) argument
/external/webkit/Source/WebCore/dom/
H A DDOMTextContentWalker.cpp43 DOMTextContentWalker::DOMTextContentWalker(const VisiblePosition& position, unsigned maxLength) argument
47 RefPtr<Range> forwardRange = makeRange(position, endOfDocument(position));
54 if (getRange(position.deepEquivalent(), forwardChar.range()->startPosition())->text().length() == 0)
57 RefPtr<Range> backwardsRange = makeRange(startOfDocument(position), position);
63 m_hitOffsetInContent = getRange(backwardsChar.range()->endPosition(), position.deepEquivalent())->text().length();
/external/webkit/Source/WebCore/platform/text/qt/
H A DTextBoundariesQt.cpp43 int findNextWordFromIndex(UChar const* buffer, int len, int position, bool forward) argument
47 iterator.setPosition(position >= len ? len - 1 : position);
67 void findWordBoundary(UChar const* buffer, int len, int position, int* start, int* end) argument
71 iterator.setPosition(position);
72 *start = position > 0 ? iterator.toPreviousBoundary() : 0;
73 *end = position == len ? len : iterator.toNextBoundary();
/external/jmonkeyengine/engine/src/core/com/jme3/light/
H A DPointLight.java45 * A point light emits light from a given position into all directions in space.
48 * In addition to a position, point lights also have a radius which
55 protected Vector3f position = new Vector3f(); field in class:PointLight
63 lastDistance = bv.distanceSquaredTo(position);
65 lastDistance = owner.getWorldTranslation().distanceSquared(position);
70 * Returns the world space position of the light.
72 * @return the world space position of the light.
77 return position;
81 * Set the world space position of the light.
83 * @param position th
85 setPosition(Vector3f position) argument
[all...]
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/String/
H A D15.5.4.7-3.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
115 function LastIndexOf( string, search, position ) {
119 position
[all...]
/external/webkit/Source/WebCore/html/parser/
H A DHTMLParserIdioms.cpp177 const UChar* position = input.characters(); local
178 const UChar* end = position + input.length();
184 while (position < end) {
185 if (!isHTMLSpace(*position))
187 ++position;
191 if (position == end)
193 ASSERT(position < end);
196 if (*position == '-') {
198 ++position;
199 } else if (*position
[all...]
/external/webkit/Source/WebCore/fileapi/
H A DFileWriterBase.h53 long long position() const function in class:WebCore::FileWriterBase
70 void setPosition(long long position) argument
72 m_position = position;
80 void seekInternal(long long position);
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DCodeAddress.java34 * @param position {@code non-null;} source position
36 public CodeAddress(SourcePosition position) { argument
37 super(position);
/external/flac/libFLAC/include/private/
H A Dogg_helper.h40 FLAC__bool simple_ogg_page__get_at(FLAC__StreamEncoder *encoder, FLAC__uint64 position, ogg_page *page, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderReadCallback read_callback, void *client_data);
41 FLAC__bool simple_ogg_page__set_at(FLAC__StreamEncoder *encoder, FLAC__uint64 position, ogg_page *page, FLAC__StreamEncoderSeekCallback seek_callback, FLAC__StreamEncoderWriteCallback write_callback, void *client_data);
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/
H A DDynamicArray.java101 * This method returns a value on the specified position. The dimension of the table is not taken into
103 * @param position
104 * the position of the data
107 public T get(int position) { argument
108 return array[position];
112 * This method returns a value on the specified position in multidimensional array. Be careful not to exceed the
114 * @param position
115 * the position of the data indices of data position
118 public T get(int... position) { argument
[all...]
/external/smack/src/org/jivesoftware/smackx/workgroup/
H A DQueueUser.java41 * @param position the position customer sits in the queue
45 public QueueUser (String uid, int position, int time, Date joinedAt) { argument
49 this.queuePosition = position;
62 * @return the position in the queue at which the customer sits, or -1 if the update which
71 * if the update which this instance embodies is only a position update instead

Completed in 741 milliseconds

1234567891011>>