Searched defs:other (Results 76 - 100 of 260) sorted by last modified time

1234567891011

/frameworks/native/services/inputflinger/
H A DInputReader.h171 // Zoom speed applies when the fingers are mostly moving relative to each other
247 * and other system components.
352 void copyFrom(const StylusState& other) { argument
353 when = other.when;
354 pressure = other.pressure;
355 buttons = other.buttons;
356 toolType = other.toolType;
402 * on the input reader thread but the InputReader can receive queries from other system
807 void copyFrom(const RawPointerData& other);
843 void copyFrom(const CookedPointerData& other);
1410 copyFrom(const RawState& other) argument
1438 copyFrom(const CookedState& other) argument
[all...]
/frameworks/native/services/sensorservice/
H A DSensorDevice.h122 bool operator != (const BatchParams& other) { argument
123 return !(mTSample == other.mTSample && mTBatch == other.mTBatch);
127 // of the other. the apparent batch is the maximum of mTBatch and mTSample,
128 void merge(const BatchParams &other) { argument
129 mTSample = std::min(mTSample, other.mTSample);
130 mTBatch = std::min(mTBatch, std::max(other.mTBatch, other.mTSample));
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.h254 State& operator=(const State& other) { argument
257 layersSortedByZ = other.layersSortedByZ;
258 displays = other.displays;
665 // 3. When accessing mHwc on a thread other than the main thread, we always
707 // it may be read from other threads with mStateLock held
H A DTransform.cpp36 Transform::Transform(const Transform& other) argument
37 : mMatrix(other.mMatrix), mType(other.mType) {
/frameworks/native/vulkan/libvulkan/
H A Dlayers_extensions.cpp75 LayerLibrary(LayerLibrary&& other) argument
76 : path_(std::move(other.path_)),
77 dlhandle_(other.dlhandle_),
78 refcount_(other.refcount_) {
79 other.dlhandle_ = nullptr;
80 other.refcount_ = 0;
373 // the APK. Loading still may fail for other reasons, but this at least
496 LayerRef::LayerRef(LayerRef&& other) : layer_(other.layer_) { argument
497 other
[all...]
/frameworks/ml/nn/runtime/include/
H A DNeuralNetworksWrapper.h89 Memory(Memory&& other) { *this = std::move(other); } argument
90 Memory& operator=(Memory&& other) { argument
91 if (this != &other) {
92 mMemory = other.mMemory;
93 mValid = other.mValid;
94 other.mMemory = nullptr;
95 other.mValid = false;
125 Model(Model&& other) { *this = std::move(other); } argument
126 operator =(Model&& other) argument
204 Event(Event&& other) argument
205 operator =(Event&& other) argument
239 Compilation(Compilation&& other) argument
240 operator =(Compilation&& other) argument
281 Execution(Execution&& other) argument
282 operator =(Execution&& other) argument
[all...]
/frameworks/layoutlib/bridge/src/android/graphics/
H A DMatrix_Delegate.java239 /*package*/ static void nSet(long native_object, long other) { argument
245 Matrix_Delegate src = sManager.getDelegate(other);
455 Matrix_Delegate other = sManager.getDelegate(other_matrix);
456 if (d != null && other != null) {
457 d.preTransform(other.mValues);
523 Matrix_Delegate other = sManager.getDelegate(other_matrix);
524 if (d != null && other != null) {
525 d.postTransform(other.mValues);
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DAndroidCamera2Settings.java138 public AndroidCamera2Settings(AndroidCamera2Settings other) { argument
139 super(other);
140 mTemplateSettings = other.mTemplateSettings;
141 mRequestSettings = new Camera2RequestSettingsSet(other.mRequestSettings);
142 mActiveArray = other.mActiveArray;
143 mCropRectangle = new Rect(other.mCropRectangle);
529 // not use other fields sometimes. Setting processing
530 // method to null means the other fields should not be used.
H A DAndroidCameraSettings.java75 public AndroidCameraSettings(AndroidCameraSettings other) { argument
76 super(other);
H A DSize.java105 public Size(Size other) { argument
106 if (other == null) {
109 val = new Point(other.width(), other.height());
116 * @param other The source size.
118 public Size(Camera.Size other) { argument
119 if (other == null) {
122 val = new Point(other.width, other.height);
129 * @param other Th
131 Size(android.util.Size other) argument
[all...]
/frameworks/ex/camera2/utils/src/com/android/ex/camera2/utils/
H A DCamera2RequestSettingsSet.java53 * @param other The reference instance.
55 * @throws NullPointerException If {@code other} is {@code null}.
57 public Camera2RequestSettingsSet(Camera2RequestSettingsSet other) { argument
58 if (other == null) {
62 mDictionary = new HashMap<>(other.mDictionary);
63 mRevision = other.mRevision;
/frameworks/ex/widget/java/com/android/ex/widget/
H A DStaggeredGridView.java71 * currently attached to the grid as children. All other adapter positions do not have
82 * Whenever layout parameters for a known LayoutRecord change, other LayoutRecords before
84 * of columns it spans changes, all bets for other items in the same direction are off
474 // There may be other offscreen views, but we need to maintain
491 // There may be other offscreen views, but we need to maintain
1444 public LayoutParams(ViewGroup.LayoutParams other) { argument
1445 super(other);
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/data-binding/integration-tests/TestApp/app/src/main/java/android/databinding/testapp/vo/
H A DCallbackBindingObject.java53 boolean onClickWithParam(NotBindableVo other); argument
54 boolean onClickWithParam(View view, NotBindableVo other); argument
55 boolean onLongClickWithParam(NotBindableVo other); argument
56 boolean onLongClickWithParam(View view, NotBindableVo other); argument
H A DNotBindableVo.java70 public String mergeStringFields(NotBindableVo other) { argument
71 return mStringValue + (other == null ? "" : other.mStringValue);
/frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/store/
H A DLocation.java58 public Location(Location other) { argument
59 startOffset = other.startOffset;
60 endOffset = other.endOffset;
61 startLine = other.startLine;
62 endLine = other.endLine;
152 public boolean contains(Location other) { argument
153 if (startLine > other.startLine) {
156 if (startLine == other.startLine && startOffset > other.startOffset) {
159 if (endLine < other
[all...]
H A DResourceBundle.java436 public void inheritConfigurationFrom(LayoutFileBundle other) { argument
437 mFileName = other.mFileName;
438 mModulePackage = other.mModulePackage;
439 mBindingClass = other.mBindingClass;
440 mFullBindingClass = other.mFullBindingClass;
441 mBindingClassName = other.mBindingClassName;
442 mBindingPackage = other.mBindingPackage;
443 mHasVariations = other.mHasVariations;
444 mIsMerge = other.mIsMerge;
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DDependency.java29 public Dependency(Expr dependant, Expr other) { argument
31 mOther = other;
37 public Dependency(Expr dependant, Expr other, Expr condition, boolean expectedOutput) { argument
39 mOther = other;
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/reflection/
H A DModelMethod.java92 public boolean isBetterArgMatchThan(ModelMethod other, List<ModelClass> args) { argument
94 final ModelClass[] otherParameterTypes = other.getParameterTypes();
98 final ModelClass thatParameter = other.getParameter(i, otherParameterTypes);
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/writer/
H A DFlagSet.java66 public boolean intersect(FlagSet other, int bucketIndex) { argument
67 return (buckets[bucketIndex] & other.buckets[bucketIndex]) != 0;
90 public FlagSet andNot(FlagSet other) { argument
92 final int min = Math.min(buckets.length, other.buckets.length);
94 result.buckets[i] &= ~(other.buckets[i]);
99 public FlagSet or(FlagSet other) { argument
100 final FlagSet result = new FlagSet(buckets, other.buckets.length);
101 for (int i = 0; i < other.buckets.length; i ++) {
102 result.buckets[i] |= other.buckets[i];
132 public boolean bitsEqual(FlagSet other) { argument
[all...]
/frameworks/compile/mclinker/include/mcld/LD/
H A DLDSymbol.h91 uint8_t other() const { function in class:mcld::LDSymbol
93 return m_pResolveInfo->other();
98 return m_pResolveInfo->other();
H A DResolveInfo.h166 uint8_t other() const { return (uint8_t)visibility(); } function in class:mcld::ResolveInfo
/frameworks/compile/mclinker/include/mcld/Support/
H A DAllocators.h277 typedef LinearAllocator<NewDataType, ChunkSize> other; typedef in struct:mcld::LinearAllocator::rebind
292 typedef LinearAllocator<NewDataType, 0> other; typedef in struct:mcld::LinearAllocator::rebind
317 typedef MallocAllocator<OtherDataType> other; typedef in struct:mcld::MallocAllocator::rebind
362 typedef MallocAllocator<OtherDataType> other; typedef in struct:mcld::MallocAllocator::rebind
/frameworks/compile/mclinker/unittests/
H A DNamePoolTest.cpp71 ResolveInfo::Visibility other = ResolveInfo::Default; local
74 name, isDyn, type, desc, binding, size, other, NULL, result1);
83 EXPECT_EQ(other, result1.info->visibility());
87 name, isDyn, type, desc, binding, size, other, NULL, result2);
96 EXPECT_EQ(other, result1.info->visibility());
108 ResolveInfo::Visibility other = ResolveInfo::Default; local
111 name, isDyn, type, desc, binding, size, other, NULL, result1);
120 EXPECT_EQ(other, result1.info->visibility());
124 name, isDyn, type, desc, binding, size, other, NULL, result2);
135 other,
150 uint8_t other = 0; local
176 uint8_t other = 0; local
[all...]
/frameworks/base/tests/testables/src/android/testing/
H A DTestableLooper.java237 public LooperFrameworkMethod(TestableLooper other, FrameworkMethod base) { argument
239 mLooper = other.mLooper;
240 mTestableLooper = other;

Completed in 795 milliseconds

1234567891011