Searched refs:other (Results 1 - 25 of 39) sorted by relevance

12

/sdk/emulator/opengl/shared/emugl/common/
H A Dsmart_ptr.h37 SmartPtrBase(const SmartPtrBase& other);
40 SmartPtrBase& operator=(const SmartPtrBase& other);
59 // Copy the |other| into this instance, returns the old pointer value
61 void* copyFrom(const SmartPtrBase& other);
94 // other, and will not share the same reference count. Once a smart pointer
95 // owns an object, only use other smart pointers that are copy-constructed
106 // Copy-constructor, |this| and |other| will share the same internal
108 SmartPtr(const SmartPtr& other) argument
109 : SmartPtrBase(reinterpret_cast<const SmartPtrBase&>(other)) {}
112 SmartPtr& operator=(const SmartPtr& other) { argument
[all...]
H A Dsmart_ptr.cpp66 SmartPtrBase::SmartPtrBase(const SmartPtrBase& other) argument
67 : mPtr(other.mPtr), mRefCount(other.mRefCount) {
84 void* SmartPtrBase::copyFrom(const SmartPtrBase& other) { argument
87 mPtr = other.mPtr;
88 mRefCount = other.mRefCount;
H A Dpod_vector.cpp30 PodVectorBase::PodVectorBase(const PodVectorBase& other) { argument
31 initFrom(other.begin(), other.byteSize());
34 PodVectorBase& PodVectorBase::operator=(const PodVectorBase& other) { argument
35 initFrom(other.begin(), other.byteSize());
62 void PodVectorBase::assignFrom(const PodVectorBase& other) { argument
63 resize(other.byteSize(), 1U);
64 ::memmove(begin(), other.begin(), byteSize());
138 // Sanity to avoid copying pointers and other ba
144 swapAll(PodVectorBase* other) argument
[all...]
H A Dpod_vector.h60 explicit PodVectorBase(const PodVectorBase& other);
61 PodVectorBase& operator=(const PodVectorBase& other);
83 void assignFrom(const PodVectorBase& other);
102 void swapAll(PodVectorBase* other);
128 // Copy constructor. This copies all items from |other| into
130 PodVector(const PodVector& other) : PodVectorBase(other) {} argument
133 PodVector& operator=(const PodVector& other) { argument
134 this->assignFrom(other);
251 void swap(PodVector* other) { argument
[all...]
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/
H A DViewNode.java149 final ViewNode other = (ViewNode) obj;
150 return !(this.name != other.name && (this.name == null || !this.name.equals(other.name)));
183 final Property other = (Property) obj;
184 if (this.name != other.name && (this.name == null || !this.name.equals(other.name))) {
187 return !(this.value != other.value && (this.value == null || !this.value.equals(other.value)));
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
H A DLayoutPoint.java27 * A {@link LayoutPoint} is a coordinate in the Android canvas (in other words,
149 LayoutPoint other = (LayoutPoint) obj;
150 if (x != other.x)
152 if (y != other.y)
H A DControlPoint.java176 ControlPoint other = (ControlPoint) obj;
177 if (x != other.x)
179 if (y != other.y)
181 if (mCanvas != other.mCanvas) {
H A DLayoutMetadata.java186 // Also apply the same layout to any corresponding elements in other configurations
272 Element other = DomUtilities.findCorresponding(element, doc);
273 if (other != null) {
274 AdtUtils.setToolsAttribute(variation, other, undoLabel,
H A DBinPacker.java40 * We also remove any other space rectangles which are no longer eligible if
205 Rect other = mSpace.get(i);
206 if (other.intersects(r)) {
H A DIncludeFinder.java77 * The include finder finds other XML files that are including a given XML file, and does
100 * Reverse map of {@link #mIncludes}; points to other layouts that are including a
161 * Gets the list of all other layouts that are including the given layout.
190 * Returns true if the given resource is included from some other layout in the
194 * @return true if the file is included by some other layout
620 * @param includer the layout including other layouts
1018 Reference other = (Reference) obj;
1020 if (other.mId != null)
1022 } else if (!mId.equals(other.mId))
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/descriptors/
H A DAttributeDescriptor.java118 public int compareTo(AttributeDescriptor other) { argument
119 return mXmlLocalName.compareTo(other.mXmlLocalName);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/configuration/
H A DLocale.java148 Locale other = (Locale) obj;
150 if (other.language != null)
152 } else if (!language.equals(other.language))
155 if (other.region != null)
157 } else if (!region.equals(other.region))
H A DVaryingConfiguration.java89 * attributes as the given other {@linkplain VaryingConfiguration}.
91 * @param other the configuration to copy overrides from
97 @NonNull VaryingConfiguration other,
100 new VaryingConfiguration(other.mConfigChooser, parent);
101 initFrom(configuration, other, other, false);
102 configuration.mAlternate = other.mAlternate;
103 configuration.mVariation = other.mVariation;
104 configuration.mVariationCount = other.mVariationCount;
131 * different complementing values, so they don't all flip to the same other
96 create( @onNull VaryingConfiguration other, @NonNull Configuration parent) argument
[all...]
H A DNestedConfiguration.java79 * attributes as the given other {@linkplain NestedConfiguration}, and gets
82 * @param other the configuration to copy overrides from
89 @NonNull NestedConfiguration other,
93 new NestedConfiguration(other.mConfigChooser, parent);
94 initFrom(configuration, other, values, true /*sync*/);
100 * attributes as the given other {@linkplain NestedConfiguration}, and gets
104 * @param other the configuration to copy overrides from
109 NestedConfiguration other, Configuration values, boolean sync) {
110 configuration.mOverride = other.mOverride;
88 create( @onNull NestedConfiguration other, @NonNull Configuration values, @NonNull Configuration parent) argument
108 initFrom(NestedConfiguration configuration, NestedConfiguration other, Configuration values, boolean sync) argument
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/wizards/newproject/
H A DFileStoreAdapter.java118 public boolean isParentOf(IFileStore other) { argument
119 return mStore.isParentOf(other);
/sdk/emulator/opengl/host/tools/emugen/
H A DAndroid.mk37 # protocol encoders/ decoders. This variable is used by other emugl modules.
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/properties/
H A DFlagXmlPropertyDialog.java173 // Try to disable other elements that conflict with this
177 for (Object other : mViewer.getCheckedElements()) {
178 if (other != selected) {
179 mViewer.setChecked(other, false);
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/mock/
H A DMockXmlNode.java195 public boolean isSameNode(Node other) { argument
196 return this == other;
223 public short compareDocumentPosition(Node other) throws DOMException { argument
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
H A DGLProtoBuf.java1679 public Builder mergeFrom(com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.DataType other) { argument
1680 if (other == com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.DataType.getDefaultInstance()) return this;
1681 if (other.hasType()) {
1682 setType(other.getType());
1684 if (other.hasIsArray()) {
1685 setIsArray(other.getIsArray());
1687 if (!other.intValue_.isEmpty()) {
1691 result.intValue_.addAll(other.intValue_);
1693 if (!other.floatValue_.isEmpty()) {
1697 result.floatValue_.addAll(other
2334 mergeFrom(com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.FrameBuffer other) argument
2781 mergeFrom(com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage other) argument
[all...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
H A DExtractStyleWizard.java167 // Try to disable other elements that conflict with this
172 for (Attr other : list) {
173 if (other != attribute && mShown.contains(other)) {
174 mCheckedView.setChecked(other, false);
254 // (There could be many additional "aliasing" nodes on other elements
H A DExtractIncludeRefactoring.java249 // Also extract in other variations of the same file (landscape/portrait, etc)
273 Element other = DomUtilities.findCorresponding(element,
275 if (other != null) {
278 if (DomUtilities.isEquivalent(element, other)) {
279 otherElements.add(other);
281 otherPrimary = other;
287 // Only perform extract in the other file if we find a match for
397 * Returns a list of all the other layouts (in all configurations) in the project other
602 // Duplicate all the other layou
[all...]
/sdk/attribute_stats/src/
H A DAnalyzer.java654 Usage other = (Usage) obj;
656 if (other.attribute != null)
658 } else if (!attribute.equals(other.attribute))
/sdk/emulator/opengl/
H A DAndroid.mk67 # It will be used by other modules to generate wire protocol encode/decoder
/sdk/find_java/
H A Dfind_java.bat16 rem This script is called by the other batch files to find a suitable Java.exe
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
H A DViewMetadataRepository.java458 public int compareTo(CategoryData other) { argument
459 return mOrdinal - other.mOrdinal;
528 public int compareTo(ViewData other) { argument
529 return mOrdinal - other.mOrdinal;
735 * Render previews, and it can be rendered as a sibling of many other views in a

Completed in 406 milliseconds

12