Searched defs:position (Results 151 - 175 of 997) sorted by relevance

1234567891011>>

/external/smack/src/org/jivesoftware/smackx/workgroup/packet/
H A DQueueUpdate.java28 * status notifications -- position updates, and estimated time
43 private int position; field in class:QueueUpdate
46 public QueueUpdate(int position, int remainingTime) { argument
47 this.position = position;
52 * Returns the user's position in the workgroup queue, or -1 if the
55 * @return the position in the workgroup queue.
58 return this.position;
74 if (position != -1) {
75 buf.append("<position>")
[all...]
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTMAxisIterator.java55 * @return The position of the current node in the set, as defined by XPath.
94 * from its current position.
104 * Return the node at the given position.
106 * @param position The position
107 * @return The node at the given position.
109 public int getNodeByPosition(int position); argument
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMAxisIteratorBase.java32 /** The position of the last node within the iteration, as defined by XPath.
34 * confuse it with the current (most recently returned) position.
38 /** The position of the current node within the iteration, as defined by XPath.
43 /** The position of the marked node within the iteration;
111 /** Returns the position of the last node within the iteration, as
128 // -- and explicitly saving our position counter (number of nodes
131 // %REVIEW% Should position also be saved by setMark()?
152 * @return The position of the current node within the set, as defined by
219 * Reset the position to zero. NOTE that this does not change the iteration
220 * state, only the position numbe
266 getNodeByPosition(int position) argument
[all...]
/external/bison/examples/calc++/
H A Dposition.hh34 ** \file ../../../../examples/calc++/position.hh
35 ** Define the yy::position class.
56 #line 57 "../../../../examples/calc++/position.hh"
57 /// Abstract a position.
58 class position class in namespace:yy
62 /// Construct a position.
63 explicit position (std::string* f = YY_NULL, function in class:yy::position
99 /// File name to which this position refers.
107 /// Add and assign a position.
108 inline position
[all...]
/external/ceres-solver/internal/ceres/
H A Dblock_jacobi_preconditioner.cc81 ConstMatrixRef m(values + cells[c].position,
107 const int position = block_structure_.cols[c].position; local
112 ConstVectorRef(D + position, size).array().square().matrix();
126 const int position = block_structure_.cols[c].position; local
128 ConstVectorRef x_block(x + position, size);
129 VectorRef y_block(y + position, size);
H A Dblock_structure.h51 Block() : size(-1), position(-1) {}
52 Block(int size_, int position_) : size(size_), position(position_) {}
55 int position; // Position along the row/column. member in struct:ceres::internal::Block
59 Cell() : block_id(-1), position(-1) {}
61 : block_id(block_id_), position(position_) {}
66 int position; member in struct:ceres::internal::Cell
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Djavascriptlintrules.py37 from closure_linter.common import position namespace
41 Position = position.Position
335 token, position=Position.AtBeginning())
377 token, position=Position.AtBeginning())
439 token, position=Position.AtBeginning(),
459 token, position=Position.AtBeginning(),
519 position=Position.AtBeginning(),
530 position=Position.AtBeginning(),
/external/chromium_org/cc/test/
H A Dlayer_tree_host_common_test.cc26 const gfx::PointF& position,
33 position,
43 const gfx::PointF& position,
50 position,
22 SetLayerPropertiesForTesting( Layer* layer, const gfx::Transform& transform, const gfx::Point3F& transform_origin, const gfx::PointF& position, const gfx::Size& bounds, bool flatten_transform, bool is_3d_sorted) argument
39 SetLayerPropertiesForTesting( LayerImpl* layer, const gfx::Transform& transform, const gfx::Point3F& transform_origin, const gfx::PointF& position, const gfx::Size& bounds, bool flatten_transform, bool is_3d_sorted) argument
H A Dlayer_tree_host_common_test.h39 const gfx::PointF& position,
45 layer->SetPosition(position);
54 const gfx::PointF& position,
62 const gfx::PointF& position,
35 SetLayerPropertiesForTestingInternal( LayerType* layer, const gfx::Transform& transform, const gfx::Point3F& transform_origin, const gfx::PointF& position, const gfx::Size& bounds, bool flatten_transform, bool is_3d_sorted) argument
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/tabmodel/
H A DTabModelOrderController.java29 * @param position The provided position.
32 public int determineInsertionIndex(TabLaunchType type, int position, Tab newTab) { argument
34 position = determineInsertionIndex(type, newTab);
43 return position;
68 // If the tab was opened in the background, position at the end of
86 * descending order of their position in the model. This means that the tab
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/widget/accessibility/
H A DAccessibilityTabModelAdapter.java117 public Object getItem(int position) { argument
122 public long getItemId(int position) { argument
124 mUndoneTabModel.getTabAt(position).getId() : Tab.INVALID_TAB_ID;
128 public View getView(int position, View convertView, ViewGroup parent) { argument
129 int tabId = (int) getItemId(position);
/external/chromium_org/chrome/browser/
H A Dchrome_plugin_interactive_test.cc166 gfx::Point position; local
170 EXPECT_TRUE(find_bar->GetFindBarWindowInfo(&position, &fully_visible));
/external/chromium_org/chrome/browser/ui/android/infobars/
H A Dinfobar_container_android.cc38 size_t position) {
36 PlatformSpecificAddInfoBar( infobars::InfoBar* infobar, size_t position) argument
/external/chromium_org/chrome/browser/ui/panels/
H A Dstacked_panel_collection.h95 gfx::Point position; member in struct:StackedPanelCollection::PanelPlacement
/external/chromium_org/chrome/browser/ui/views/location_bar/
H A Dlocation_bar_layout.cc23 // The y position of the view inside its parent.
72 LocationBarLayout::LocationBarLayout(Position position, int item_edit_padding) argument
73 : position_(position),
/external/chromium_org/content/browser/android/
H A Dpopup_touch_handle_drawable.cc59 void PopupTouchHandleDrawable::SetFocus(const gfx::PointF& position) { argument
60 const gfx::PointF position_pix = gfx::ScalePoint(position, dpi_scale_);
/external/chromium_org/content/browser/compositor/
H A Dsoftware_output_device_win.cc78 POINT position = {wr.left, wr.top}; local
88 ::UpdateLayeredWindow(hwnd_, NULL, &position, &size, dib_dc, &zero,
/external/chromium_org/content/browser/download/
H A Dsave_file_resource_handler.cc36 bool SaveFileResourceHandler::OnUploadProgress(uint64 position, uint64 size) { argument
/external/chromium_org/content/browser/geolocation/
H A Dgeolocation_provider_impl.cc52 const Geoposition& position) {
55 NotifyClients(position);
58 void GeolocationProviderImpl::OnLocationUpdate(const Geoposition& position) { argument
66 base::Unretained(this), position));
104 // when the next observer is added we will not provide a stale position.
153 void GeolocationProviderImpl::NotifyClients(const Geoposition& position) { argument
155 DCHECK(position.Validate() ||
156 position.error_code != Geoposition::ERROR_CODE_NONE);
157 position_ = position;
51 OverrideLocationForTesting( const Geoposition& position) argument
H A Dmock_location_provider.cc36 void MockLocationProvider::HandlePositionChanged(const Geoposition& position) { argument
40 position_ = position;
46 base::Unretained(this), position));
59 void MockLocationProvider::GetPosition(Geoposition* position) { argument
60 *position = position_;
/external/chromium_org/content/child/
H A Dtouch_fling_gesture_curve.cc35 inline double position(double t) { function in namespace:__anon7517
76 // position/velocity estimates outside this range are undefined.
115 // Compute curve position at offset time
116 position_offset_ = position(time_offset_);
134 displacement = position(time + time_offset_) - position_offset_;
137 displacement = position(curve_duration_) - position_offset_;
/external/chromium_org/media/filters/
H A Dblocking_url_protocol.cc68 bool BlockingUrlProtocol::SetPosition(int64 position) { argument
70 if ((data_source_->GetSize(&file_size) && position > file_size) ||
71 position < 0) {
75 read_position_ = position;
/external/chromium_org/net/base/
H A Dupload_data_stream.h72 // Returns the total size of the data stream and the current position.
78 uint64 position() const { return current_position_; } function in class:net::UploadDataStream
132 // Size and current read position within the upload data stream.
/external/chromium_org/ppapi/examples/gles2_spinning_cube/
H A Dgles2_spinning_cube.cc32 virtual void DidChangeView(const pp::Rect& position,
75 const pp::Rect& position, const pp::Rect& /*clip*/) {
76 if (position.width() == 0 || position.height() == 0)
78 plugin_size_ = position.size();
74 DidChangeView( const pp::Rect& position, const pp::Rect& ) argument
/external/chromium_org/ppapi/shared_impl/
H A Dppp_instance_combined.cc58 const struct PP_Rect* position,
64 CallWhileUnlocked(did_change_view_1_0_, instance, position, clip);
56 DidChangeView(PP_Instance instance, PP_Resource view_changed_resource, const struct PP_Rect* position, const struct PP_Rect* clip) argument

Completed in 460 milliseconds

1234567891011>>