Searched defs:other (Results 1 - 25 of 1480) 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/libcxx/test/language.support/support.limits/limits/numeric.limits.members/
H A Dconst_data_members.pass.cpp68 struct other {}; struct
194 // other
195 TEST_NUMERIC_LIMITS(other)
196 TEST_NUMERIC_LIMITS(const other)
197 TEST_NUMERIC_LIMITS(volatile other)
198 TEST_NUMERIC_LIMITS(const volatile other)
/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/clang/test/SemaCXX/
H A Dcxx11-unused.cpp13 A(const A &other) = delete; member in class:A
30 B(const B &other);
33 B::B(const B &other) = default; member in class:B
/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_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;
53 void ImplThreadRenderingStats::Add(const ImplThreadRenderingStats& other) { argument
54 frame_count += other.frame_count;
55 rasterize_time += other.rasterize_time;
56 analysis_time += other
62 Add(const RenderingStats& other) argument
[all...]
/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.cc16 const SyntheticPinchGestureParams& other)
17 : SyntheticGestureParams(other),
18 scale_factor(other.scale_factor),
19 anchor(other.anchor),
21 other.relative_pointer_speed_in_pixels_s) {}
15 SyntheticPinchGestureParams( const SyntheticPinchGestureParams& 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/system/
H A Dmessage_in_transit_queue.cc17 MessageInTransitQueue* other) {
18 queue_.swap(other->queue_);
16 MessageInTransitQueue(PassContents, MessageInTransitQueue* other) argument
/external/chromium_org/ppapi/cpp/dev/
H A Dview_dev.h17 ViewDev(const View& other) : View(other) {} argument
/external/chromium_org/ppapi/shared_impl/
H A Dcompositor_layer_data.cc25 const CompositorLayerData& other) {
26 DCHECK(other.is_null() || other.is_valid());
28 common = other.common;
29 Copy(&color, other.color);
30 Copy(&texture, other.texture);
31 Copy(&image, other.image);
24 operator =( const CompositorLayerData& other) argument
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
H A DCSSAnimationData.cpp21 CSSAnimationData::CSSAnimationData(const CSSAnimationData& other) argument
22 : CSSTimingData(other)
23 , m_nameList(other.m_nameList)
24 , m_iterationCountList(other.m_iterationCountList)
25 , m_directionList(other.m_directionList)
26 , m_fillModeList(other.m_fillModeList)
27 , m_playStateList(other.m_playStateList)
37 bool CSSAnimationData::animationsMatchForStyleRecalc(const CSSAnimationData& other) const
39 return m_nameList == other.m_nameList && m_playStateList == other
[all...]
H A DCSSTimingData.cpp19 CSSTimingData::CSSTimingData(const CSSTimingData& other) argument
20 : m_delayList(other.m_delayList)
21 , m_durationList(other.m_durationList)
22 , m_timingFunctionList(other.m_timingFunctionList)
H A DCSSTransitionData.cpp17 CSSTransitionData::CSSTransitionData(const CSSTransitionData& other) argument
18 : CSSTimingData(other)
19 , m_propertyList(other.m_propertyList)
23 bool CSSTransitionData::transitionsMatchForStyleRecalc(const CSSTransitionData& other) const
25 return m_propertyList == other.m_propertyList;
/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/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/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) {}
44 // 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.cc27 static content::IndexedDBKey::KeyArray CopyKeyArray(const WebIDBKey& other) { argument
29 if (other.keyType() == WebIDBKeyTypeArray) {
30 const WebVector<WebIDBKey>& array = other.array();
/external/chromium_org/content/common/cursors/
H A Dwebcursor_android.cc23 bool WebCursor::IsPlatformDataEqual(const WebCursor& other) const {
30 void WebCursor::CopyPlatformData(const WebCursor& other) { argument

Completed in 6576 milliseconds

1234567891011>>