Searched defs:other (Results 1 - 25 of 1389) sorted by relevance

1234567891011>>

/external/eigen/Eigen/src/plugins/
H A DCommonCwiseBinaryOps.h13 /** \returns an expression of the difference of \c *this and \a other
21 /** \returns an expression of the sum of \c *this and \a other
29 /** \returns an expression of a custom coefficient-wise operator \a func of *this and \a other
42 binaryExpr(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other, const CustomBinaryOp& func = CustomBinaryOp()) const argument
44 return CwiseBinaryOp<CustomBinaryOp, const Derived, const OtherDerived>(derived(), other.derived(), func);
/external/llvm/test/CodeGen/SystemZ/Large/
H A Dbranch-range-02.py39 # ...lots of other blocks...
71 other = 'end' if 2 * i < blocks else 'b0' variable
77 print ' br i1 %%atest%d, label %%%s, label %%%s' % (i, other, next)
/external/chromium_org/chrome/installer/util/
H A Dregistry_key_backup.h36 void swap(RegistryKeyBackup& other) { argument
37 key_data_.swap(other.key_data_);
/external/chromium_org/content/common/input/
H A Dsynthetic_gesture_params.cc13 const SyntheticGestureParams& other)
14 : gesture_source_type(other.gesture_source_type) {}
12 SyntheticGestureParams( const SyntheticGestureParams& other) argument
H A Dsynthetic_pinch_gesture_params.cc17 const SyntheticPinchGestureParams& other)
18 : SyntheticGestureParams(other),
19 zoom_in(other.zoom_in),
20 total_num_pixels_covered(other.total_num_pixels_covered),
21 anchor(other.anchor),
23 other.relative_pointer_speed_in_pixels_s) {}
16 SyntheticPinchGestureParams( const SyntheticPinchGestureParams& other) argument
H A Dsynthetic_smooth_scroll_gesture_params.cc20 const SyntheticSmoothScrollGestureParams& other)
21 : SyntheticGestureParams(other),
22 distance(other.distance),
23 anchor(other.anchor),
24 prevent_fling(other.prevent_fling),
25 speed_in_pixels_s(other.speed_in_pixels_s) {}
19 SyntheticSmoothScrollGestureParams( const SyntheticSmoothScrollGestureParams& other) argument
H A Dsynthetic_tap_gesture_params.cc14 const SyntheticTapGestureParams& other)
15 : SyntheticGestureParams(other),
16 position(other.position),
17 duration_ms(other.duration_ms) {}
13 SyntheticTapGestureParams( const SyntheticTapGestureParams& other) argument
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DMemoable.java18 * @param other an object originally {@link #copy() copied} from an object of the same type as this instance.
20 * @throws MemoableResetException if the <b>other</b> parameter is in some other way invalid.
22 public void reset(Memoable other); argument
/external/chromium/chrome/common/
H A Dnative_window_notification_source.h21 explicit Source(const NotificationSource& other) argument
22 : NotificationSource(other) {}
/external/chromium_org/content/browser/renderer_host/
H A Dnative_web_keyboard_event_win.cc29 const NativeWebKeyboardEvent& other)
30 : WebKeyboardEvent(other),
31 os_event(other.os_event),
32 skip_in_browser(other.skip_in_browser) {
36 const NativeWebKeyboardEvent& other) {
37 WebKeyboardEvent::operator=(other);
39 os_event = other.os_event;
40 skip_in_browser = other.skip_in_browser;
28 NativeWebKeyboardEvent( const NativeWebKeyboardEvent& other) argument
35 operator =( const NativeWebKeyboardEvent& other) argument
/external/chromium_org/content/public/browser/
H A Dnavigation_controller.cc28 const NavigationController::LoadURLParams& other)
29 : url(other.url),
30 load_type(other.load_type),
31 transition_type(other.transition_type),
32 frame_tree_node_id(other.frame_tree_node_id),
33 referrer(other.referrer),
34 extra_headers(other.extra_headers),
35 is_renderer_initiated(other.is_renderer_initiated),
36 override_user_agent(other.override_user_agent),
37 transferred_global_request_id(other
27 LoadURLParams( const NavigationController::LoadURLParams& other) argument
46 operator =( const NavigationController::LoadURLParams& other) argument
[all...]
/external/chromium_org/mojo/public/bindings/lib/
H A Dmessage.cc27 void Message::Swap(Message* other) { argument
28 std::swap(data, other->data);
29 std::swap(handles, other->handles);
/external/chromium_org/ppapi/cpp/dev/
H A Dgraphics_2d_dev.h26 Graphics2D_Dev(const Graphics2D& other) : Graphics2D(other) {} argument
H A Dview_dev.h17 ViewDev(const View& other) : View(other) {} argument
/external/chromium_org/third_party/WebKit/Source/platform/fonts/
H A DFontFeatureSettings.cpp11 * documentation and/or other materials provided with the distribution.
37 bool FontFeature::operator==(const FontFeature& other) argument
39 return m_tag == other.m_tag && m_value == other.m_value;
/external/clang/test/SemaTemplate/
H A Dtypo-dependent-name.cpp15 bool f(T other) { argument
16 return this->inner < other;
/external/jmonkeyengine/engine/src/core/com/jme3/collision/
H A DCollidable.java14 * documentation and/or other materials provided with the distribution.
38 * they support collision detection between other objects that are also
48 * @param other The object to check collision against
50 * @return how many collisions were found between this and other
52 public int collideWith(Collidable other, CollisionResults results) throws UnsupportedCollisionException; argument
/external/chromium_org/base/win/
H A Diunknown_impl_unittest.cc38 IUnknown* other = NULL; local
40 IID_IDispatch, reinterpret_cast<void**>(&other)));
42 IID_IUnknown, reinterpret_cast<void**>(&other)));
43 other->Release();
/external/chromium_org/cc/debug/
H A Drendering_stats.cc26 void MainThreadRenderingStats::Add(const MainThreadRenderingStats& other) { argument
27 frame_count += other.frame_count;
28 paint_time += other.paint_time;
29 painted_pixel_count += other.painted_pixel_count;
30 record_time += other.record_time;
31 recorded_pixel_count += other.recorded_pixel_count;
47 void ImplThreadRenderingStats::Add(const ImplThreadRenderingStats& other) { argument
48 frame_count += other.frame_count;
49 rasterize_time += other.rasterize_time;
50 analysis_time += other
74 Add(const RenderingStats& other) argument
[all...]
/external/chromium_org/chrome/browser/
H A Dnative_window_notification_source.h22 explicit Source(const content::NotificationSource& other) argument
23 : content::NotificationSource(other) {}
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dbrowser_view_browsertest.cc24 content::WebContents* other)
26 other_(other) {}
45 // is invoked on the other.
23 TestWebContentsObserver(content::WebContents* source, content::WebContents* other) argument
/external/chromium_org/components/autofill/core/common/
H A Dform_data_predictions.cc12 FormDataPredictions::FormDataPredictions(const FormDataPredictions& other) argument
13 : data(other.data),
14 signature(other.signature),
15 experiment_id(other.experiment_id),
16 fields(other.fields) {
H A Dform_field_data_predictions.cc13 const FormFieldDataPredictions& other)
14 : field(other.field),
15 signature(other.signature),
16 heuristic_type(other.heuristic_type),
17 server_type(other.server_type),
18 overall_type(other.overall_type) {
12 FormFieldDataPredictions( const FormFieldDataPredictions& other) argument
/external/chromium_org/content/child/indexed_db/
H A Dindexed_db_key_builders.cc23 static content::IndexedDBKey::KeyArray CopyKeyArray(const WebIDBKey& other) { argument
25 if (other.keyType() == WebIDBKeyTypeArray) {
26 const WebVector<WebIDBKey>& array = other.array();
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dpath.h62 bool operator==(const Path& other) { return Split() == other.Split(); } argument
63 bool operator!=(const Path& other) { return !operator==(other); } argument

Completed in 1191 milliseconds

1234567891011>>