Searched defs:position (Results 26 - 50 of 918) sorted by relevance

1234567891011>>

/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/sfntly/cpp/src/sfntly/data/
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/skia/tests/
H A DPathMeasureTest.cpp121 SkPoint position; local
123 REPORTER_ASSERT(reporter, meas.getPosTan(SK_ScalarHalf, &position, &tangent));
125 SkScalarNearlyEqual(position.fX,
128 REPORTER_ASSERT(reporter, position.fY == 0);
148 REPORTER_ASSERT(reporter, meas.getPosTan(SK_ScalarHalf, &position, &tangent));
150 SkScalarNearlyEqual(position.fX,
153 REPORTER_ASSERT(reporter, position.fY == 0);
156 REPORTER_ASSERT(reporter, meas.getPosTan(2.5f, &position, &tangent));
158 SkScalarNearlyEqual(position.fX, SK_Scalar1, 0.0001f));
160 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,
/external/chromium_org/content/browser/geolocation/
H A Dlocation_provider_android.cc22 const Geoposition& position) {
23 last_position_ = position;
35 void LocationProviderAndroid::GetPosition(Geoposition* position) { argument
36 *position = last_position_;
40 // Nothing to do here, android framework will call us back on new position.
21 NotifyNewGeoposition( const Geoposition& position) argument
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
H A DDateTimeSuggestionListAdapter.java30 public View getView(int position, View convertView, ViewGroup parent) { argument
39 if (position == getCount() - 1) {
43 labelView.setText(getItem(position).localizedValue());
44 sublabelView.setText(getItem(position).label());
/external/chromium_org/media/filters/
H A Dblocking_url_protocol_unittest.cc45 int64 position = 0; local
47 EXPECT_TRUE(url_protocol_.GetPosition(&position));
48 EXPECT_EQ(0, position);
50 // Read 32 bytes from offset zero and verify position.
53 EXPECT_TRUE(url_protocol_.GetPosition(&position));
54 EXPECT_EQ(32, position);
56 // Read an additional 32 bytes and verify position.
58 EXPECT_TRUE(url_protocol_.GetPosition(&position));
59 EXPECT_EQ(64, position);
66 EXPECT_TRUE(url_protocol_.GetPosition(&position));
88 int64 position; local
[all...]
H A Din_memory_url_protocol.cc37 bool InMemoryUrlProtocol::SetPosition(int64 position) { argument
38 if (position < 0 || position > size_)
40 position_ = position;
/external/chromium_org/ppapi/cpp/
H A Dtouch_point.h30 FloatPoint position() const { function in class:pp::TouchPoint
31 return pp::FloatPoint(touch_point_.position);
/external/chromium_org/ppapi/tests/
H A Dtest_flash_fullscreen.cc26 bool IsFullscreenView(const pp::Rect& position, argument
29 return (position.point() == pp::Point(0, 0) &&
30 position.size() == screen_size &&
138 pp::Rect position = view.GetRect(); local
140 if (fullscreen_pending_ && IsFullscreenView(position, clip, screen_size_)) {
144 !IsFullscreenView(position, clip, screen_size_)) {
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentOrderedList.cpp50 unsigned short position = n->compareDocumentPositionInternal(node, Node::TreatShadowTreesAsComposed); local
51 if (position & Node::DOCUMENT_POSITION_FOLLOWING) {
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DMoveSelectionCommand.cpp34 MoveSelectionCommand::MoveSelectionCommand(PassRefPtr<DocumentFragment> fragment, const Position& position, bool smartInsert, bool smartDelete) argument
35 : CompositeEditCommand(*position.document()), m_fragment(fragment), m_position(position), m_smartInsert(smartInsert), m_smartDelete(smartDelete)
48 // Update the position otherwise it may become invalid after the selection is deleted.
H A DMoveSelectionCommand.h37 static PassRefPtr<MoveSelectionCommand> create(PassRefPtr<DocumentFragment> fragment, const Position& position, bool smartInsert = false, bool smartDelete = false) argument
39 return adoptRef(new MoveSelectionCommand(fragment, position, smartInsert, smartDelete));
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderProgress.h35 double position() const { return m_position; } function in class:WebCore::FINAL
H A DVerticalPositionCache.h54 void set(RenderObject* renderer, FontBaseline baselineType, int position) argument
57 m_alphabeticPositions.set(renderer, position);
59 m_ideographicPositions.set(renderer, position);
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGTextMetrics.cpp64 TextRun SVGTextMetrics::constructTextRun(RenderSVGInlineText* text, unsigned position, unsigned length) argument
79 run.setText(text->characters8() + position, length);
81 run.setText(text->characters16() + position, length);
93 run.setCharactersLength(text->textLength() - position);
98 SVGTextMetrics SVGTextMetrics::measureCharacterRange(RenderSVGInlineText* text, unsigned position, unsigned length) argument
101 return SVGTextMetrics(text, constructTextRun(text, position, length));
104 SVGTextMetrics::SVGTextMetrics(RenderSVGInlineText* text, unsigned position, unsigned length, float width, const String& glyphName) argument
116 m_glyph.unicodeString = text->substring(position, length);
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXMLHttpRequestProgressEvent.h47 unsigned long long position() const { return loaded(); } function in class:WebCore::XMLHttpRequestProgressEvent
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DFileWriterBase.h47 long long position() const function in class:WebCore::FileWriterBase
64 void setPosition(long long position) argument
66 m_position = position;
74 void seekInternal(long long position);
/external/chromium_org/third_party/WebKit/Source/platform/
H A DSharedBufferTest.cpp122 int position = 0; local
124 EXPECT_EQ('a', static_cast<char*>(arrayBuffer->data())[position]);
125 ++position;
128 EXPECT_EQ('b', static_cast<char*>(arrayBuffer->data())[position]);
129 ++position;
132 EXPECT_EQ('c', static_cast<char*>(arrayBuffer->data())[position]);
133 ++position;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/filters/
H A DSpotLightSource.h32 static PassRefPtr<SpotLightSource> create(const FloatPoint3D& position, argument
35 return adoptRef(new SpotLightSource(position, direction, specularExponent, limitingConeAngle));
38 const FloatPoint3D& position() const { return m_position; } function in class:WebCore::SpotLightSource
59 SpotLightSource(const FloatPoint3D& position, const FloatPoint3D& direction, argument
62 , m_position(position)

Completed in 1186 milliseconds

1234567891011>>