Searched defs:position (Results 1 - 25 of 918) 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/WebKit/Source/core/fetch/
H A DFetchInitiatorInfo.h37 , position(TextPosition::belowRangePosition())
43 TextPosition position; member in struct:WebCore::FetchInitiatorInfo
/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
[all...]
/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/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
/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/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/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/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/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/animation/
H A DAnimationStack.h49 size_t position = m_activeAnimations.find(animation); local
50 ASSERT(position != kNotFound);
51 m_activeAnimations.remove(position);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLFontElement.cpp59 const CharacterType* position = characters; local
63 while (position < end) {
64 if (!isHTMLSpace<CharacterType>(*position))
66 ++position;
70 if (position == end)
72 ASSERT(position < end);
81 switch (*position) {
84 ++position;
88 ++position;
98 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/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/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/ui/gfx/
H A Dselection_model.cc16 SelectionModel::SelectionModel(size_t position, LogicalCursorDirection affinity) argument
17 : selection_(position),

Completed in 800 milliseconds

1234567891011>>