Searched defs:position (Results 1 - 25 of 997) 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/chromium_org/content/common/input/
H A Dsynthetic_tap_gesture_params.h23 gfx::Point position; member in struct:content::SyntheticTapGestureParams
/external/chromium_org/third_party/closure_linter/closure_linter/common/
H A Dmatcher.py22 from closure_linter.common import position namespace
27 Position = position.Position
/external/chromium_org/third_party/sfntly/cpp/src/sfntly/data/
H A Dfont_output_stream.h51 virtual size_t position() { return position_; } function in class:sfntly::FontOutputStream
H A Dfont_input_stream.h73 // Get the current position in the stream in bytes.
74 // @return the current position in bytes
75 virtual int64_t position() { return position_; } function in class:sfntly::FontInputStream
/external/deqp/framework/referencerenderer/
H A DrrFragmentPacket.hpp52 tcu::IVec2 position; //!< Position of (0,0) fragment. member in struct:rr::FragmentPacket
/external/sfntly/cpp/src/sfntly/data/
H A Dfont_output_stream.h51 virtual size_t position() { return position_; } function in class:sfntly::FontOutputStream
/external/chromium_org/chrome/browser/chromeos/first_run/steps/
H A Dtray_step.cc28 FirstRunActor::StepPosition position; local
29 position.SetTop(bounds.y());
35 position.SetRight(GetOverlaySize().width() - bounds.x());
37 position.SetLeft(bounds.right());
38 actor()->ShowStepPositioned(name(), position); local
/external/chromium_org/chrome/browser/resources/pdf/
H A Dopen_pdf_params_parser.js43 var position = {x: parseFloat(paramValueSplit[1]),
45 this.urlParams['position'] = position;
/external/chromium_org/chrome/browser/ui/autofill/
H A Dloading_animation.h33 double position; member in struct:autofill::LoadingAnimation::AnimationFrame
/external/chromium_org/content/browser/geolocation/
H A Dlocation_provider_base.cc15 void LocationProviderBase::NotifyCallback(const Geoposition& position) { argument
17 callback_.Run(this, position);
/external/chromium_org/net/base/
H A Dupload_progress.h15 UploadProgress(uint64 position, uint64 size) argument
16 : size_(size), position_(position) {}
19 uint64 position() const { return position_; } function in class:net::UploadProgress
/external/chromium_org/pdf/pdfium/
H A Dpdfium_mem_buffer_file_read.cc23 unsigned long position,
28 if (!data || position + size > data->m_FileLen)
30 memcpy(buf, data->data_ + position, size);
22 GetBlock(void* param, unsigned long position, unsigned char* buf, unsigned long size) argument
/external/chromium_org/ppapi/c/
H A Dpp_touch_point.h17 * This file defines the API to create a touch point or position where fingers
28 * single touch point, such as position, id, rotation angle, and pressure.
41 * This value represents the x and y pixel position of this TouchPoint
44 struct PP_FloatPoint position; member in struct:PP_TouchPoint
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSTestHelper.cpp51 TextPosition position; local
52 m_styleSheet = CSSStyleSheet::createInline(m_document.get(), KURL(), position, "UTF-8");
64 TextPosition position; local
66 ASSERT_TRUE(m_styleSheet->contents()->parseStringAtPosition(cssText, position, true));
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DPositionWithAffinity.cpp10 PositionWithAffinity::PositionWithAffinity(const Position& position, EAffinity affinity) argument
11 : m_position(position)
H A DPositionWithAffinity.h21 const Position& position() const { return m_position; } function in class:blink::PositionWithAffinity
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLFontElement.cpp55 const CharacterType* position = characters; local
59 while (position < end) {
60 if (!isHTMLSpace<CharacterType>(*position))
62 ++position;
66 if (position == end)
68 ASSERT(position < end);
77 switch (*position) {
80 ++position;
84 ++position;
94 while (position < en
[all...]
/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/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/graphics/filters/
H A DPointLightSource.h32 static PassRefPtr<PointLightSource> create(const FloatPoint3D& position) argument
34 return adoptRef(new PointLightSource(position));
39 FloatPoint3D position(m_position.x() * scale.x() - offset.width(), m_position.y() * scale.y() - offset.height(), m_position.z() * scale.z());
40 return adoptRef(new PointLightSource(position));
43 const FloatPoint3D& position() const { return m_position; } function in class:blink::PointLightSource
52 PointLightSource(const FloatPoint3D& position) argument
54 , m_position(position)
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebFileWriter.h48 virtual void write(long long position, const WebURL& blobURL) { } // DEPRECATED argument
49 virtual void write(long long position, const WebString& blobUUID) { } argument
/external/chromium_org/third_party/cython/src/Cython/Plex/
H A DScanners.pxd34 cdef tuple position(self) member in class:Scanner
/external/chromium_org/third_party/skia/tests/
H A DPathMeasureTest.cpp114 SkPoint position; local
116 REPORTER_ASSERT(reporter, meas.getPosTan(SK_ScalarHalf, &position, &tangent));
118 SkScalarNearlyEqual(position.fX,
121 REPORTER_ASSERT(reporter, position.fY == 0);
141 REPORTER_ASSERT(reporter, meas.getPosTan(SK_ScalarHalf, &position, &tangent));
143 SkScalarNearlyEqual(position.fX,
146 REPORTER_ASSERT(reporter, position.fY == 0);
149 REPORTER_ASSERT(reporter, meas.getPosTan(2.5f, &position, &tangent));
151 SkScalarNearlyEqual(position.fX, SK_Scalar1, 0.0001f));
153 SkScalarNearlyEqual(position
[all...]

Completed in 488 milliseconds

1234567891011>>