OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:SimpleParcelable
(Results
1 - 3
of
3
) sorted by null
/system/tools/aidl/tests/
simple_parcelable.cpp
29
SimpleParcelable
::
SimpleParcelable
(const std::string& name, int32_t number)
33
status_t
SimpleParcelable
::writeToParcel(Parcel* parcel) const {
42
status_t
SimpleParcelable
::readFromParcel(const Parcel* parcel) {
50
std::string
SimpleParcelable
::toString() const {
simple_parcelable.h
31
class
SimpleParcelable
: public Parcelable {
33
SimpleParcelable
() = default;
34
SimpleParcelable
(const std::string& name, int32_t number);
35
virtual ~
SimpleParcelable
() = default;
53
friend bool operator==(const
SimpleParcelable
& lhs,
54
const
SimpleParcelable
& rhs) {
57
friend bool operator!=(const
SimpleParcelable
& lhs,
58
const
SimpleParcelable
& rhs) {
65
}; // class
SimpleParcelable
/system/tools/aidl/tests/java_app/src/android/aidl/tests/
SimpleParcelable.java
22
public class
SimpleParcelable
implements Parcelable {
26
SimpleParcelable
() {}
27
SimpleParcelable
(String name, int number) {
48
if (!(o instanceof
SimpleParcelable
)) {
51
SimpleParcelable
p = (
SimpleParcelable
)o;
60
return "
SimpleParcelable
(" + mName + ", " + mNumber + ")";
63
public static final Parcelable.Creator<
SimpleParcelable
> CREATOR =
64
new Parcelable.Creator<
SimpleParcelable
>() {
65
public
SimpleParcelable
createFromParcel(Parcel source)
[
all
...]
Completed in 72 milliseconds