Searched defs:lv (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/tests/BiDiTests/src/com/android/bidi/
H A DBiDiTestActivity.java50 private void onListItemClick(ListView lv, View v, int position, long id) { argument
52 Map<String, Object> map = (Map<String, Object>)lv.getItemAtPosition(position);
/frameworks/native/include/ui/
H A DTVecHelpers.h124 BASE<T> PURE operator +(const BASE<T>& lv, const BASE<RT>& rv) { argument
125 return BASE<T>(lv) += rv;
129 BASE<T> PURE operator -(const BASE<T>& lv, const BASE<RT>& rv) { argument
130 return BASE<T>(lv) -= rv;
140 BASE<T> PURE operator +(const BASE<T>& lv, const BASE<T>& rv) { argument
141 return BASE<T>(lv) += rv;
144 BASE<T> PURE operator -(const BASE<T>& lv, const BASE<T>& rv) { argument
145 return BASE<T>(lv) -= rv;
205 BASE<T> PURE operator *(const BASE<T>& lv, const BASE<RT>& rv) { argument
206 return BASE<T>(lv) *
210 operator /(const BASE<T>& lv, const BASE<RT>& rv) argument
221 operator *(const BASE<T>& lv, const BASE<T>& rv) argument
225 operator /(const BASE<T>& lv, const BASE<T>& rv) argument
287 operator ==(const BASE<T>& lv, const BASE<RT>& rv) argument
296 operator !=(const BASE<T>& lv, const BASE<RT>& rv) argument
302 operator >(const BASE<T>& lv, const BASE<RT>& rv) argument
311 operator <=(const BASE<T>& lv, const BASE<RT>& rv) argument
317 operator <(const BASE<T>& lv, const BASE<RT>& rv) argument
326 operator >=(const BASE<T>& lv, const BASE<RT>& rv) argument
351 dot(const BASE<T>& lv, const BASE<RT>& rv) argument
359 length(const BASE<T>& lv) argument
365 distance(const BASE<T>& lv, const BASE<RT>& rv) argument
370 normalize(const BASE<T>& lv) argument
[all...]
H A Dmat4.h341 typename tmat44<U>::col_type PURE operator *(const tmat44<T>& lv, const tvec4<U>& rv) { argument
344 result += rv[r]*lv[r];
350 typename tmat44<U>::row_type PURE operator *(const tvec4<U>& rv, const tmat44<T>& lv) { argument
353 result[r] = dot(rv, lv[r]);
359 tmat44<T> PURE operator *(const tmat44<T>& lv, U rv) { argument
362 result[r] = lv[r]*rv;
368 tmat44<T> PURE operator *(U rv, const tmat44<T>& lv) { argument
371 result[r] = lv[r]*rv;

Completed in 1863 milliseconds