Searched defs:position (Results 1 - 25 of 895) 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/third_party/WebKit/Source/core/loader/cache/
H A DFetchInitiatorInfo.h37 , position(TextPosition::belowRangePosition())
43 TextPosition position; member in struct:WebCore::FetchInitiatorInfo
/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/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/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/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/chromium_org/chrome/browser/history/
H A Dquery_parser.h21 // The starting position of the word in the original text.
22 size_t position; member in struct:QueryWord
/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/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/platform/graphics/filters/
H A DPointLightSource.h32 static PassRefPtr<PointLightSource> create(const FloatPoint3D& position) argument
34 return adoptRef(new PointLightSource(position));
37 const FloatPoint3D& position() const { return m_position; } function in class:WebCore::PointLightSource
48 PointLightSource(const FloatPoint3D& position) argument
50 , m_position(position)
/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/ui/gfx/
H A Dselection_model.cc15 SelectionModel::SelectionModel(size_t position, LogicalCursorDirection affinity) argument
16 : selection_(position), caret_affinity_(affinity) {}
/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.cpp120 SkPoint position; local
122 REPORTER_ASSERT(reporter, meas.getPosTan(SK_ScalarHalf, &position, &tangent));
124 SkScalarNearlyEqual(position.fX,
127 REPORTER_ASSERT(reporter, position.fY == 0);
147 REPORTER_ASSERT(reporter, meas.getPosTan(SK_ScalarHalf, &position, &tangent));
149 SkScalarNearlyEqual(position.fX,
152 REPORTER_ASSERT(reporter, position.fY == 0);
155 REPORTER_ASSERT(reporter, meas.getPosTan(SkFloatToScalar(2.5f), &position, &tangent));
157 SkScalarNearlyEqual(position.fX, SK_Scalar1, SkFloatToScalar(0.0001f)));
159 SkScalarNearlyEqual(position
[all...]
/external/chromium_org/ash/display/
H A Ddisplay_layout.h36 static DisplayLayout FromInts(int position, int offsets);
39 DisplayLayout(Position position, int offset);
53 Position position; member in struct:ash::DisplayLayout
55 // The offset of the position of the secondary display. The offset is
/external/chromium_org/chrome/browser/policy/
H A Dpolicy_path_parser_linux.cc35 size_t position = result.find(kUserNamePolicyVarName); local
36 if (position != std::string::npos) {
39 result.replace(position, strlen(kUserNamePolicyVarName), user->pw_name);
44 position = result.find(kMachineNamePolicyVarName);
45 if (position != std::string::npos) {
48 result.replace(position, strlen(kMachineNamePolicyVarName), machinename);
/external/chromium_org/chrome/browser/ui/panels/
H A Ddetached_panel_collection.h70 // Returns default top-left to use for a detached panel whose position is
75 // Offset the default panel top-left position by kPanelTilePixels. Wrap
76 // around to initial position if position goes beyond display area.
81 gfx::Point position; member in struct:DetachedPanelCollection::PanelPlacement
94 // Default top-left position to use for next detached panel if position is
/external/chromium_org/chrome/browser/ui/views/download/
H A Ddownload_shelf_context_menu_view.cc34 views::MenuItemView::AnchorPosition position; local
36 position = views::MenuItemView::TOPRIGHT;
38 position = views::MenuItemView::TOPLEFT;
48 position,

Completed in 830 milliseconds

1234567891011>>