HomeSort by relevance Sort by last modified time
    Searched refs:other (Results 1 - 25 of 5794) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/075-verification-error/src/other/
InaccessibleMethod.java 17 package other; package
InaccessibleClass.java 17 package other; package
  /art/test/075-verification-error/src2/other/
InaccessibleMethod.java 17 package other; package
InaccessibleClass.java 17 package other; package
  /external/chromium_org/content/public/browser/android/
synchronous_compositor.cc 13 const SynchronousCompositorMemoryPolicy& other) const {
14 return bytes_limit == other.bytes_limit &&
15 num_resources_limit == other.num_resources_limit;
19 const SynchronousCompositorMemoryPolicy& other) const {
20 return !(*this == other);
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
Macro.cpp 14 bool Macro::equals(const Macro &other) const
16 return (type == other.type) &&
17 (name == other.name) &&
18 (parameters == other.parameters) &&
19 (replacements == other.replacements);
  /external/chromium_org/content/public/browser/
navigation_controller.cc 28 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.transferred_global_request_id)
    [all...]
global_request_id.h 26 bool operator<(const GlobalRequestID& other) const {
27 if (child_id == other.child_id)
28 return request_id < other.request_id;
29 return child_id < other.child_id;
31 bool operator==(const GlobalRequestID& other) const {
32 return child_id == other.child_id &&
33 request_id == other.request_id;
35 bool operator!=(const GlobalRequestID& other) const {
36 return child_id != other.child_id ||
37 request_id != other.request_id
    [all...]
  /external/chromium_org/tools/idl_parser/test_parser/
enum_ppapi.idl 36 * EnumItem(other)
43 /* BUILD EnumItem(other) */
44 other
52 other,
59 * EnumItem(other)
66 /* BUILD EnumItem(other) */
67 other
75 other
83 other,
91 ,other,
    [all...]
  /external/chromium_org/cc/layers/
layer_position_constraint.cc 16 const LayerPositionConstraint& other) const {
17 if (!is_fixed_position_ && !other.is_fixed_position_)
19 return is_fixed_position_ == other.is_fixed_position_ &&
20 is_fixed_to_right_edge_ == other.is_fixed_to_right_edge_ &&
21 is_fixed_to_bottom_edge_ == other.is_fixed_to_bottom_edge_;
25 const LayerPositionConstraint& other) const {
26 return !(*this == other);
  /external/chromium_org/chrome/common/importer/
imported_bookmark_entry.cc 14 const ImportedBookmarkEntry& other) const {
15 return (in_toolbar == other.in_toolbar &&
16 is_folder == other.is_folder &&
17 url == other.url &&
18 path == other.path &&
19 title == other.title &&
20 creation_time == other.creation_time);
  /external/chromium_org/third_party/WebKit/Source/web/
WebTextInputInfo.cpp 12 * in the documentation and/or other materials provided with the
36 bool WebTextInputInfo::equals(const WebTextInputInfo& other) const
38 return type == other.type
39 && value == other.value
40 && selectionStart == other.selectionStart
41 && selectionEnd == other.selectionEnd
42 && compositionStart == other.compositionStart
43 && compositionEnd == other.compositionEnd;
  /external/chromium_org/cc/quads/
render_pass_id.h 22 bool operator==(const RenderPassId& other) const {
23 return layer_id == other.layer_id && index == other.index;
25 bool operator!=(const RenderPassId& other) const { return !(*this == other); }
26 bool operator<(const RenderPassId& other) const {
27 return layer_id < other.layer_id ||
28 (layer_id == other.layer_id && index < other.index);
  /external/chromium_org/content/browser/loader/
global_routing_id.h 26 bool operator<(const GlobalRoutingID& other) const {
27 if (child_id == other.child_id)
28 return route_id < other.route_id;
29 return child_id < other.child_id;
31 bool operator==(const GlobalRoutingID& other) const {
32 return child_id == other.child_id &&
33 route_id == other.route_id;
35 bool operator!=(const GlobalRoutingID& other) const {
36 return !(*this == other);
  /external/chromium_org/gpu/command_buffer/common/
mailbox.h 35 bool operator<(const Mailbox& other) const {
36 return memcmp(this, &other, sizeof other) < 0;
38 bool operator==(const Mailbox& other) const {
39 return memcmp(this, &other, sizeof other) == 0;
41 bool operator!=(const Mailbox& other) const {
42 return !operator==(other);
  /cts/tools/dasm/src/java_cup/
parse_action.java 6 * Objects of this base class will default to ERROR, while the other two
55 public boolean equals(parse_action other)
58 return other != null && other.kind() == ERROR;
64 public boolean equals(Object other)
66 if (other instanceof parse_action)
67 return equals((parse_action)other);
  /external/chromium_org/ui/base/ime/
infolist_entry.cc 13 bool InfolistEntry::operator==(const InfolistEntry& other) const {
14 return title == other.title && body == other.body &&
15 highlighted == other.highlighted;
18 bool InfolistEntry::operator!=(const InfolistEntry& other) const {
19 return !(*this == other);
  /external/chromium_org/components/policy/core/common/
policy_namespace.cc 16 PolicyNamespace::PolicyNamespace(const PolicyNamespace& other)
17 : domain(other.domain),
18 component_id(other.component_id) {}
22 PolicyNamespace& PolicyNamespace::operator=(const PolicyNamespace& other) {
23 domain = other.domain;
24 component_id = other.component_id;
28 bool PolicyNamespace::operator<(const PolicyNamespace& other) const {
29 return domain < other.domain ||
30 (domain == other.domain && component_id < other.component_id)
    [all...]
  /external/chromium_org/third_party/angle/src/compiler/translator/
ShaderVars.cpp 32 ShaderVariable::ShaderVariable(const ShaderVariable &other)
33 : type(other.type),
34 precision(other.precision),
35 name(other.name),
36 mappedName(other.mappedName),
37 arraySize(other.arraySize),
38 staticUse(other.staticUse),
39 fields(other.fields),
40 structName(other.structName)
43 ShaderVariable &ShaderVariable::operator=(const ShaderVariable &other)
    [all...]
  /external/chromium_org/third_party/icu/source/common/
dtintrv.cpp 32 DateInterval::DateInterval(const DateInterval& other)
33 : UObject(other) {
34 *this = other;
39 DateInterval::operator=(const DateInterval& other) {
40 if ( this != &other ) {
41 fromDate = other.fromDate;
42 toDate = other.toDate;
55 DateInterval::operator==(const DateInterval& other) const {
56 return ( fromDate == other.fromDate && toDate == other.toDate )
    [all...]
  /external/icu/icu4c/source/common/
dtintrv.cpp 32 DateInterval::DateInterval(const DateInterval& other)
33 : UObject(other) {
34 *this = other;
39 DateInterval::operator=(const DateInterval& other) {
40 if ( this != &other ) {
41 fromDate = other.fromDate;
42 toDate = other.toDate;
55 DateInterval::operator==(const DateInterval& other) const {
56 return ( fromDate == other.fromDate && toDate == other.toDate )
    [all...]
  /external/chromium_org/base/
file_descriptor_posix.h 28 bool operator==(const FileDescriptor& other) const {
29 return (fd == other.fd && auto_close == other.auto_close);
32 bool operator!=(const FileDescriptor& other) const {
33 return !operator==(other);
37 bool operator<(const FileDescriptor& other) const {
38 return other.fd < fd;
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
Interval.java 13 * documentation and/or other materials provided with the distribution.
68 Interval other = (Interval)o; local
69 return this.a==other.a && this.b==other.b;
72 /** Does this start completely before other? Disjoint */
73 public boolean startsBeforeDisjoint(Interval other) {
74 return this.a<other.a && this.b<other.a;
77 /** Does this start at or before other? Nondisjoint */
78 public boolean startsBeforeNonDisjoint(Interval other) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
SVGRenderStyle.cpp 60 SVGRenderStyle::SVGRenderStyle(const SVGRenderStyle& other)
63 fill = other.fill;
64 stroke = other.stroke;
65 stops = other.stops;
66 misc = other.misc;
67 inheritedResources = other.inheritedResources;
68 resources = other.resources;
70 svg_inherited_flags = other.svg_inherited_flags;
71 svg_noninherited_flags = other.svg_noninherited_flags;
78 bool SVGRenderStyle::operator==(const SVGRenderStyle& other) cons
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSAspectRatioValue.cpp 12 * documentation and/or other materials provided with the distribution.
39 bool CSSAspectRatioValue::equals(const CSSAspectRatioValue& other) const
41 return m_numeratorValue == other.m_numeratorValue && m_denominatorValue == other.m_denominatorValue;

Completed in 1454 milliseconds

1 2 3 4 5 6 7 8 91011>>