Searched defs:position (Results 1 - 25 of 494) sorted by relevance

1234567891011>>

/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/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
H A Dmatcher.py22 from closure_linter.common import position namespace
27 Position = position.Position
/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/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
H A Dmultiple-requests.js36 var position; variable
38 position = p;
39 shouldBe('position.coords.latitude', 'mockLatitude');
40 shouldBe('position.coords.longitude', 'mockLongitude');
41 shouldBe('position.coords.accuracy', 'mockAccuracy');
H A Dwatch.js1 description("Tests that watchPosition correctly reports position updates and errors from the Geolocation service.");
10 var position; variable
14 position = p;
15 shouldBe('position.coords.latitude', 'mockLatitude');
16 shouldBe('position.coords.longitude', 'mockLongitude');
17 shouldBe('position.coords.accuracy', 'mockAccuracy');
/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/platform/efl/
H A DPlatformMouseEventEfl.cpp50 PlatformMouseEvent::PlatformMouseEvent(const Evas_Event_Mouse_Down* event, IntPoint position) argument
51 : m_position(IntPoint(event->canvas.x - position.x(), event->canvas.y - position.y()))
64 PlatformMouseEvent::PlatformMouseEvent(const Evas_Event_Mouse_Up* event, IntPoint position) argument
65 : m_position(IntPoint(event->canvas.x - position.x(), event->canvas.y - position.y()))
78 PlatformMouseEvent::PlatformMouseEvent(const Evas_Event_Mouse_Move* event, IntPoint position) argument
79 : m_position(IntPoint(event->cur.canvas.x - position.x(), event->cur.canvas.y - position.y()))
/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/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/chrome/browser/history/
H A Dquery_parser.h24 // The starting position of the word in the original text.
25 size_t position; member in struct:QueryWord
/external/chromium/chrome/browser/importer/
H A Dtoolbar_importer_utils.cc36 size_t position = (*current).find(kGoogleDomainSecureCookieId); local
37 if (0 == position)
/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/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/dexmaker/src/dx/java/com/android/dx/util/
H A DByteArrayByteInput.java22 private int position; field in class:ByteArrayByteInput
29 return bytes[position++];
/external/icu4c/layout/
H A DSubstitutionLookups.cpp31 le_int32 position,
44 tempIterator.setCurrStreamPosition(position);
25 applySubstitutionLookups( LookupProcessor *lookupProcessor, SubstitutionLookupRecord *substLookupRecordArray, le_uint16 substCount, GlyphIterator *glyphIterator, const LEFontInstance *fontInstance, le_int32 position, LEErrorCode& success) argument
/external/skia/tests/
H A DPathMeasureTest.cpp60 SkPoint position; local
62 REPORTER_ASSERT(reporter, meas.getPosTan(SK_ScalarHalf, &position, &tangent));
64 SkScalarNearlyEqual(position.fX, -SK_ScalarHalf, SK_Scalar1 * 0.0001));
65 REPORTER_ASSERT(reporter, position.fY == 0);
85 REPORTER_ASSERT(reporter, meas.getPosTan(SK_ScalarHalf, &position, &tangent));
87 SkScalarNearlyEqual(position.fX, SK_ScalarHalf, SK_Scalar1 * 0.0001));
88 REPORTER_ASSERT(reporter, position.fY == 0);
91 REPORTER_ASSERT(reporter, meas.getPosTan(SK_Scalar1 * 2.5f, &position, &tangent));
93 SkScalarNearlyEqual(position.fX, SK_Scalar1, SK_Scalar1 * 0.0001));
95 SkScalarNearlyEqual(position
[all...]
/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;
/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/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/webkit/Source/WebKit/chromium/public/
H A DWebTextCheckingResult.h47 , position(p)
53 int position; member in struct:WebKit::WebTextCheckingResult
/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);
H A DFixedSizeInsn.java40 * @param position {@code non-null;} source position
45 public FixedSizeInsn(Dop opcode, SourcePosition position, argument
47 super(opcode, position, registers);
H A DLocalEnd.java43 * @param position {@code non-null;} source position
47 public LocalEnd(SourcePosition position, RegisterSpec local) { argument
48 super(position);
H A DLocalSnapshot.java37 * @param position {@code non-null;} source position
40 public LocalSnapshot(SourcePosition position, RegisterSpecSet locals) { argument
41 super(position);
H A DOddSpacer.java35 * @param position {@code non-null;} source position
37 public OddSpacer(SourcePosition position) { argument
38 super(position, RegisterSpecList.EMPTY);

Completed in 573 milliseconds

1234567891011>>