Searched refs:lhs (Results 51 - 75 of 77) sorted by relevance

1234

/frameworks/opt/calendar/src/com/android/calendarcommon2/
H A DEventRecurrence.java611 String lhs = part.substring(0, equalIndex);
621 PartParser parser = sParsePartMap.get(lhs);
623 if (lhs.startsWith("X-")) {
624 //Log.d(TAG, "Ignoring custom part " + lhs);
627 throw new InvalidFormatException("Couldn't find parser for " + lhs);
631 throw new InvalidFormatException("Part " + lhs + " was specified twice");
/frameworks/rs/scriptc/
H A Drs_cl.rsh873 _RS_RUNTIME float3 __attribute__((overloadable)) cross(float3 lhs, float3 rhs);
874 _RS_RUNTIME float4 __attribute__((overloadable)) cross(float4 lhs, float4 rhs);
881 _RS_RUNTIME float __attribute__((overloadable)) dot(float lhs, float rhs);
897 _RS_RUNTIME float __attribute__((overloadable)) distance(float lhs, float rhs);
949 _RS_RUNTIME float __attribute__((overloadable)) fast_distance(float lhs, float rhs);
/frameworks/support/renderscript/v8/rs_support/scriptc/
H A Drs_cl.rsh873 _RS_RUNTIME float3 __attribute__((overloadable)) cross(float3 lhs, float3 rhs);
874 _RS_RUNTIME float4 __attribute__((overloadable)) cross(float4 lhs, float4 rhs);
881 _RS_RUNTIME float __attribute__((overloadable)) dot(float lhs, float rhs);
897 _RS_RUNTIME float __attribute__((overloadable)) distance(float lhs, float rhs);
949 _RS_RUNTIME float __attribute__((overloadable)) fast_distance(float lhs, float rhs);
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp97 int compare_type(const ComposerState& lhs, const ComposerState& rhs) { argument
98 if (lhs.client < rhs.client) return -1;
99 if (lhs.client > rhs.client) return 1;
100 if (lhs.state.surface < rhs.state.surface) return -1;
101 if (lhs.state.surface > rhs.state.surface) return 1;
106 int compare_type(const DisplayState& lhs, const DisplayState& rhs) { argument
107 return compare_type(lhs.token, rhs.token);
H A DSurface.cpp88 const sp<SurfaceControl>& lhs, const sp<SurfaceControl>& rhs)
90 if (lhs == 0 || rhs == 0)
92 return lhs->mSurface->asBinder() == rhs->mSurface->asBinder();
87 isSameSurface( const sp<SurfaceControl>& lhs, const sp<SurfaceControl>& rhs) argument
/frameworks/base/tools/aapt/
H A DAaptAssets.h145 inline int compare_type(const AaptGroupEntry& lhs, const AaptGroupEntry& rhs) argument
147 return lhs.compare(rhs);
150 inline int strictly_order_type(const AaptGroupEntry& lhs, const AaptGroupEntry& rhs) argument
152 return compare_type(lhs, rhs) < 0;
H A DStringPool.h142 static int config_sort(void* state, const void* lhs, const void* rhs);
H A DStringPool.cpp217 int StringPool::config_sort(void* state, const void* lhs, const void* rhs)
220 const entry& lhe = pool->mEntries[pool->mEntryArray[*static_cast<const size_t*>(lhs)]];
/frameworks/native/include/gui/
H A DSurface.h56 const sp<SurfaceControl>& lhs, const sp<SurfaceControl>& rhs);
/frameworks/native/opengl/libagl/
H A Degl.cpp282 static Region subtract(const Rect& lhs, const Rect& rhs) { argument
285 if (!lhs.isEmpty()) {
286 if (lhs.top < rhs.top) { // top rect
287 storage->left = lhs.left;
288 storage->top = lhs.top;
289 storage->right = lhs.right;
293 const int32_t top = max(lhs.top, rhs.top);
294 const int32_t bot = min(lhs.bottom, rhs.bottom);
296 if (lhs.left < rhs.left) { // left-side rect
297 storage->left = lhs
[all...]
H A Dcontext.h388 const matrixf_t& lhs, const matrixf_t& rhs);
/frameworks/native/include/utils/
H A DVector.h165 typedef int (*compar_t)(const TYPE* lhs, const TYPE* rhs);
166 typedef int (*compar_r_t)(const TYPE* lhs, const TYPE* rhs, void* state);
/frameworks/rs/
H A DrsScriptGroup.cpp81 static int CompareNodeForSort(ScriptGroup::Node *const* lhs, argument
83 if (lhs[0]->mOrder > rhs[0]->mOrder) {
/frameworks/support/renderscript/v8/rs_support/
H A DrsScriptGroup.cpp81 static int CompareNodeForSort(ScriptGroup::Node *const* lhs, argument
83 if (lhs[0]->mOrder > rhs[0]->mOrder) {
/frameworks/base/core/java/com/android/internal/app/
H A DMediaRouteChooserDialogFragment.java635 public int compare(RouteInfo lhs, RouteInfo rhs) { argument
636 return lhs.getName(getActivity()).toString()
/frameworks/native/libs/utils/
H A DVectorImpl.cpp155 static int sortProxy(const void* lhs, const void* rhs, void* func) argument
157 return (*(VectorImpl::compar_t)func)(lhs, rhs);
/frameworks/native/services/sensorservice/
H A DSensorService.cpp340 static int cmp(void const* lhs, void const* rhs) { argument
341 sensors_event_t const* l = static_cast<sensors_event_t const*>(lhs);
/frameworks/base/cmds/installd/
H A Dutils.c721 const cache_file_t *lhs = *(const cache_file_t**)lhsP; local
723 return lhs->modTime < rhs->modTime ? -1 : (lhs->modTime > rhs->modTime ? 1 : 0);
/frameworks/base/core/java/android/content/
H A DSyncManager.java1345 public int compare(AuthoritySyncStats lhs, AuthoritySyncStats rhs) {
1347 int compare = Integer.compare(rhs.times, lhs.times);
1349 compare = Long.compare(rhs.elapsedTime, lhs.elapsedTime);
1389 public int compare(AccountSyncStats lhs, AccountSyncStats rhs) {
1391 int compare = Integer.compare(rhs.times, lhs.times);
1393 compare = Long.compare(rhs.elapsedTime, lhs.elapsedTime);
H A DContentService.java93 public int compare(Integer lhs, Integer rhs) {
94 int lc = pidCounts.get(lhs);
/frameworks/native/services/surfaceflinger/
H A DSurfaceFlinger.cpp288 EGLint lhs(v);
290 if (lhs == EGL_NONE) lhs = 0x7FFFFFFF;
292 return lhs < rhs;
2839 int SurfaceFlinger::LayerVector::do_compare(const void* lhs, argument
2843 const sp<LayerBase>& l(*reinterpret_cast<const sp<LayerBase>*>(lhs));
H A DSurfaceFlinger.h156 virtual int do_compare(const void* lhs, const void* rhs) const;
/frameworks/base/services/java/com/android/server/
H A DAlarmManagerService.java558 public int compare(FilterStats lhs, FilterStats rhs) {
559 if (lhs.aggregateTime < rhs.aggregateTime) {
561 } else if (lhs.aggregateTime > rhs.aggregateTime) {
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java112 public int compare(ItemInfo lhs, ItemInfo rhs) {
113 return lhs.position - rhs.position;
2750 public int compare(View lhs, View rhs) { argument
2751 final LayoutParams llp = (LayoutParams) lhs.getLayoutParams();
/frameworks/base/opengl/java/android/opengl/
H A DMatrix.java48 * matrix. In matrix notation: result = lhs x rhs. Due to the way
51 * the lhs matrix. This is the opposite of what you might expect.
53 * The same float array may be passed for result, lhs, and/or rhs. However,
55 * either the lhs or rhs elements.
60 * @param lhs The float array that holds the left-hand-side matrix.
61 * @param lhsOffset The offset into the lhs array where the lhs is stored
65 * @throws IllegalArgumentException if result, lhs, or rhs are null, or if
66 * resultOffset + 16 > result.length or lhsOffset + 16 > lhs.length or
70 float[] lhs, in
69 multiplyMM(float[] result, int resultOffset, float[] lhs, int lhsOffset, float[] rhs, int rhsOffset) argument
[all...]

Completed in 637 milliseconds

1234