Home
last modified time | relevance | path

Searched refs:other (Results 1 – 25 of 50) sorted by relevance

12

/development/samples/IntentPlayground/src/com/example/android/intentplayground/
DNode.java63 Node(Node other) { in Node() argument
64 if (other.mIsTaskNode) { in Node()
66 mTaskId = other.mTaskId; in Node()
69 mName = other.mName.clone(); in Node()
71 mOptionFlags = other.mOptionFlags; in Node()
72 mIntent = other.mIntent; in Node()
73 other.mChildren.forEach(child -> addChild(new Node(child))); in Node()
181 public boolean equals(Node other) { in equals() argument
182 if (mIsTaskNode && other.mIsTaskNode) { in equals()
184 if ((mTaskId != other.mTaskId) && (mTaskId != NEW_TASK_ID) in equals()
[all …]
DFlagUtils.java98 List<String> other = new LinkedList<>();
113 other.add(flag);
121 categories.put("Other", other);
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
DGLColor.java41 public boolean equals(Object other) { in equals() argument
42 if (other instanceof GLColor) { in equals()
43 GLColor color = (GLColor)other; in equals()
DM4.java30 public M4(M4 other) { in M4() argument
33 m[i][j] = other.m[i][j]; in M4()
44 public M4 multiply(M4 other) { in multiply() argument
47 float[][] m2 = other.m; in multiply()
DGLVertex.java44 public boolean equals(Object other) { in equals() argument
45 if (other instanceof GLVertex) { in equals()
46 GLVertex v = (GLVertex)other; in equals()
/development/tools/logblame/
Dlogs.py35 def __eq__(self, other): argument
37 self.buf == other.buf
38 and self.timestamp == other.timestamp
39 and self.uid == other.uid
40 and self.pid == other.pid
41 and self.tid == other.tid
42 and self.level == other.level
43 and self.tag == other.tag
44 and self.text == other.text
/development/samples/browseable/DirectBoot/src/com.example.android.directboot/alarms/
DAlarm.java129 public int compareTo(@NonNull Alarm other) { in compareTo() argument
137 otherCal.set(Calendar.MONTH, other.month); in compareTo()
138 otherCal.set(Calendar.DATE, other.date); in compareTo()
139 otherCal.set(Calendar.HOUR_OF_DAY, other.hour); in compareTo()
140 otherCal.set(Calendar.MINUTE, other.minute); in compareTo()
/development/samples/browseable/MidiScope/src/com.example.android.common.midi/
DMidiPortWrapper.java101 public boolean equals(Object other) { in equals() argument
102 if (other == null) in equals()
104 if (!(other instanceof MidiPortWrapper)) in equals()
106 MidiPortWrapper otherWrapper = (MidiPortWrapper) other; in equals()
/development/samples/browseable/MidiSynth/src/com.example.android.common.midi/
DMidiPortWrapper.java101 public boolean equals(Object other) { in equals() argument
102 if (other == null) in equals()
104 if (!(other instanceof MidiPortWrapper)) in equals()
106 MidiPortWrapper otherWrapper = (MidiPortWrapper) other; in equals()
/development/tools/findunused/
Dfind_unused_resources.rb65 def <=>(other) argument
66 if @file == other.file
67 @lineNumber - other.lineNumber
69 @file <=> other.file
/development/tools/repo_diff/service/repodiff/interactors/
Dstrings.go13 func (s simpleSet) Contains(other string) bool {
14 enabled, exists := s[other]
/development/samples/browseable/AppRestrictionEnforcer/
D_index.jd8 This sample demonstrates how to set restrictions to other apps as a profile owner.
/development/samples/browseable/WearVerifyRemoteApp/
D_index.jd10 and the other way around.
/development/samples/browseable/NfcProvisioning/
D_index.jd8 This sample demonstrates how to provision other devices with a specified device owner using NFC.
/development/samples/ApiDemos/src/com/example/android/apis/view/
DGameView.java527 public float distanceTo(Sprite other) {
528 return distanceTo(other.mPositionX, other.mPositionY);
531 public boolean collidesWith(Sprite other) {
533 return !mDestroyed && !other.mDestroyed
534 && distanceTo(other) <= Math.max(mSize, other.mSize)
535 + Math.min(mSize, other.mSize) * 0.5f;
/development/samples/browseable/MediaEffects/
D_index.jd10 Image frames can be images loaded from disk, frames from the device\'s camera, or other
/development/samples/browseable/BluetoothChat/
D_index.jd10 (1) Scanning for other Bluetooth devices
/development/samples/browseable/BasicRenderScript/
D_index.jd10 …adjustment, running the computation on the device\'s GPU or other compute hardware as deemed appro…
/development/samples/browseable/AdvancedImmersiveMode/
D_index.jd11 with some of the other UI flags related to full-screen apps.
/development/samples/browseable/BasicManagedProfile/
D_index.jd9 enable or disable other apps and how to set restrictions to them. Intents can be
/development/vndk/tools/header-checker/src/repr/json/
Dir_reader.h84 bool operator!=(const Iterator &other) const {
85 return index_ != other.index_;
/development/python-packages/
D.gitignore29 # before PyInstaller builds the exe, so as to inject date/other infos into it.
/development/samples/ControllerSample/src/com/example/controllersample/
DGameView.java524 public float distanceTo(Sprite other) { in distanceTo() argument
525 return distanceTo(other.mPositionX, other.mPositionY); in distanceTo()
528 public boolean collidesWith(Sprite other) { in collidesWith() argument
530 return !mDestroyed && !other.mDestroyed in collidesWith()
531 && distanceTo(other) <= Math.max(mSize, other.mSize) in collidesWith()
532 + Math.min(mSize, other.mSize) * 0.5f; in collidesWith()
/development/samples/VoicemailProviderDemo/
DNOTICE29 other entities that control, are controlled by, or are under common
46 and conversions to other media types.
55 editorial revisions, annotations, elaborations, or other modifications
107 (a) You must give any other recipients of the Work or
175 other commercial damages or losses), even if such Contributor
181 or other liability obligations and/or rights consistent with this
184 of any other Contributor, and only if You agree to indemnify,
/development/samples/AccelerometerPlay/
DNOTICE29 other entities that control, are controlled by, or are under common
46 and conversions to other media types.
55 editorial revisions, annotations, elaborations, or other modifications
107 (a) You must give any other recipients of the Work or
175 other commercial damages or losses), even if such Contributor
181 or other liability obligations and/or rights consistent with this
184 of any other Contributor, and only if You agree to indemnify,

12