/development/samples/IntentPlayground/src/com/example/android/intentplayground/ |
D | Node.java | 63 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 …]
|
D | FlagUtils.java | 98 List<String> other = new LinkedList<>(); 113 other.add(flag); 121 categories.put("Other", other);
|
/development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/ |
D | GLColor.java | 41 public boolean equals(Object other) { in equals() argument 42 if (other instanceof GLColor) { in equals() 43 GLColor color = (GLColor)other; in equals()
|
D | M4.java | 30 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()
|
D | GLVertex.java | 44 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/ |
D | logs.py | 35 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/ |
D | Alarm.java | 129 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/MidiSynth/src/com.example.android.common.midi/ |
D | MidiPortWrapper.java | 101 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/MidiScope/src/com.example.android.common.midi/ |
D | MidiPortWrapper.java | 101 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/ |
D | find_unused_resources.rb | 65 def <=>(other) argument 66 if @file == other.file 67 @lineNumber - other.lineNumber 69 @file <=> other.file
|
/development/scripts/ |
D | cargo2android.py | 236 def same_flags(self, other): argument 240 return (not self.errors and not other.errors and 241 self.edition == other.edition and 242 self.cap_lints == other.cap_lints and 243 self.emit_list == other.emit_list and 244 self.core_externs == other.core_externs and 245 self.codegens == other.codegens and 246 self.features == other.features and 247 self.static_libs == other.static_libs and 248 self.shared_libs == other.shared_libs and self.cfgs == other.cfgs) [all …]
|
/development/tools/repo_diff/service/repodiff/interactors/ |
D | strings.go | 13 func (s simpleSet) Contains(other string) bool { 14 enabled, exists := s[other]
|
/development/samples/browseable/AppRestrictionEnforcer/ |
D | _index.jd | 8 This sample demonstrates how to set restrictions to other apps as a profile owner.
|
/development/samples/browseable/WearVerifyRemoteApp/ |
D | _index.jd | 10 and the other way around.
|
/development/samples/browseable/NfcProvisioning/ |
D | _index.jd | 8 This sample demonstrates how to provision other devices with a specified device owner using NFC.
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
D | GameView.java | 527 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.jd | 10 Image frames can be images loaded from disk, frames from the device\'s camera, or other
|
/development/samples/browseable/AdvancedImmersiveMode/ |
D | _index.jd | 11 with some of the other UI flags related to full-screen apps.
|
/development/samples/browseable/BluetoothChat/ |
D | _index.jd | 10 (1) Scanning for other Bluetooth devices
|
/development/samples/browseable/BasicRenderScript/ |
D | _index.jd | 10 …adjustment, running the computation on the device\'s GPU or other compute hardware as deemed appro…
|
/development/samples/browseable/BasicManagedProfile/ |
D | _index.jd | 9 enable or disable other apps and how to set restrictions to them. Intents can be
|
/development/vndk/tools/header-checker/src/repr/json/ |
D | ir_reader.h | 84 bool operator!=(const Iterator &other) const { 85 return index_ != other.index_;
|
/development/samples/ControllerSample/src/com/example/controllersample/ |
D | GameView.java | 524 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/apps/launchperf/ |
D | NOTICE | 29 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/CubeLiveWallpaper/ |
D | NOTICE | 29 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,
|