/cts/tests/tests/os/src/android/os/cts/ |
D | WorkSourceTest.java | 251 private void doTestCombineTwoUids(int[] lhs, int[] rhs, int[] expected, int[] newbs, in doTestCombineTwoUids() argument 253 WorkSource ws1 = wsNew(lhs); in doTestCombineTwoUids() 257 ws1 = wsNew(lhs); in doTestCombineTwoUids() 261 ws1 = wsNew(lhs); in doTestCombineTwoUids() 282 int[] lhs = makeRepeatingIntArray(lhsnames, 0); in doTestCombineTwoNames() local 287 doTestCombineTwoUidsNames(lhs, lhsnames, rhs, rhsnames, expected, expectednames, in doTestCombineTwoNames() 291 … private void doTestCombineTwoUidsNames(int[] lhs, String[] lhsnames, int[] rhs, String[] rhsnames, in doTestCombineTwoUidsNames() argument 294 WorkSource ws1 = wsNew(lhs, lhsnames); in doTestCombineTwoUidsNames() 298 ws1 = wsNew(lhs, lhsnames); in doTestCombineTwoUidsNames() 302 ws1 = wsNew(lhs, lhsnames); in doTestCombineTwoUidsNames() [all …]
|
/cts/tests/tests/hardware/src/android/hardware/cts/helpers/ |
D | CameraUtils.java | 71 public int compare(Camera.Size lhs, Camera.Size rhs) { in compare() argument 72 return compareSizes(lhs.width, lhs.height, rhs.width, rhs.height); in compare()
|
/cts/tools/dasm/src/java_cup/ |
D | lr_item_core.java | 211 if (_the_production.lhs() != null && in to_simple_string() 212 _the_production.lhs().the_symbol() != null && in to_simple_string() 213 _the_production.lhs().the_symbol().name() != null) in to_simple_string() 214 result = _the_production.lhs().the_symbol().name(); in to_simple_string()
|
D | production.java | 167 public symbol_part lhs() {return _lhs;} in lhs() method in production 741 result += ((lhs() != null) ? lhs().toString() : "$$NULL-LHS$$"); in toString() 771 result = ((lhs() != null) ? lhs().the_symbol().name() : "NULL_LHS"); in to_simple_string()
|
D | non_terminal.java | 222 if (prod == null || prod.lhs() == null || prod.lhs().the_symbol() != this) in add_production()
|
D | emit.java | 372 prod.lhs().the_symbol().stack_type() + "(/*" + in emit_action_code() 373 prod.lhs().the_symbol().name() + "*/" + in emit_action_code() 374 prod.lhs().the_symbol().index() + ");"); in emit_action_code() 447 out.print(/* lhs symbol # */ prod.lhs().the_symbol().index() + ", "); in emit_production_table()
|
D | parser.cup | 422 /* lookup the lhs nt */ 460 the first production, make its lhs nt the start_nt
|
D | lalr_state.java | 177 System.out.print(itm.the_production().lhs().the_symbol().name()); in dump_state()
|
D | Main.java | 807 System.err.print(prod.lhs().the_symbol().name() + " ::= ");
|
/cts/suite/cts/deviceTests/opengl/jni/graphics/ |
D | Matrix.cpp | 107 float const* const lhs = l.mData; in multiply() local 119 x += lhs[j4 + 0] * e; in multiply() 120 y += lhs[j4 + 1] * e; in multiply() 121 z += lhs[j4 + 2] * e; in multiply() 122 w += lhs[j4 + 3] * e; in multiply() 317 void Matrix::multiplyVector(float* result, const Matrix& lhs, in multiplyVector() argument 319 const float* d = lhs.mData; in multiplyVector()
|
D | Matrix.h | 54 static void multiplyVector(float* result, const Matrix& lhs,
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
D | Matrix2fTest.java | 142 Matrix2f lhs = new Matrix2f(lhsData); in testMultiply() local 146 loadMul.loadMultiply(lhs, rhs); in testMultiply() 149 lhs.multiply(rhs); in testMultiply() 150 checkData(lhs, expected); in testMultiply()
|
D | Matrix4fTest.java | 208 Matrix4f lhs = new Matrix4f(lhsData); in testMultiply() local 212 loadMul.loadMultiply(lhs, rhs); in testMultiply() 215 lhs.multiply(rhs); in testMultiply() 216 checkData(lhs, expected); in testMultiply()
|
D | Matrix3fTest.java | 201 Matrix3f lhs = new Matrix3f(lhsData); in testMultiply() local 205 loadMul.loadMultiply(lhs, rhs); in testMultiply() 208 lhs.multiply(rhs); in testMultiply() 209 checkData(lhs, expected); in testMultiply()
|
/cts/tools/dasm/src/java_cup/runtime/ |
D | lr_parser.java | 956 short lhs, rhs_size; in try_parse_ahead() local 993 lhs = production_tab[(-act)-1][0]; in try_parse_ahead() 1002 rhs_size + " lhs = #" + lhs + " from state #" + vstack.top()); in try_parse_ahead() 1005 vstack.push(get_reduce(vstack.top(), lhs)); in try_parse_ahead() local
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/orientation/ |
D | CameraOrientationActivity.java | 194 public int compare(Camera.Size lhs, Camera.Size rhs) { in setUpCamera() argument 195 if (lhs.width < rhs.width) return -1; in setUpCamera() 196 if (lhs.width > rhs.width) return 1; in setUpCamera() 197 if (lhs.height < rhs.height) return -1; in setUpCamera() 198 if (lhs.height > rhs.height) return 1; in setUpCamera()
|
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/ |
D | TestResults.java | 179 public int compare(TestPackageResult lhs, TestPackageResult rhs) { in compare() argument 180 return lhs.getId().compareTo(rhs.getId()); in compare()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/video/ |
D | CameraVideoActivity.java | 609 public int compare(Size lhs, Size rhs) { in setUpCamera() argument 610 if (lhs.width < rhs.width) return -1; in setUpCamera() 611 if (lhs.width > rhs.width) return 1; in setUpCamera() 612 if (lhs.height < rhs.height) return -1; in setUpCamera() 613 if (lhs.height > rhs.height) return 1; in setUpCamera()
|
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/formats/ |
D | CameraFormatsActivity.java | 327 public int compare(Camera.Size lhs, Camera.Size rhs) { in setUpCamera() argument 328 if (lhs.width < rhs.width) return -1; in setUpCamera() 329 if (lhs.width > rhs.width) return 1; in setUpCamera() 330 if (lhs.height < rhs.height) return -1; in setUpCamera() 331 if (lhs.height > rhs.height) return 1; in setUpCamera()
|
/cts/tests/tests/bluetooth/src/android/bluetooth/cts/ |
D | BluetoothLeScanTest.java | 277 public int compare(ScanResult lhs, ScanResult rhs) { in compare() argument 278 return rhs.getRssi() - lhs.getRssi(); in compare()
|
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/ |
D | CameraTestUtils.java | 1010 public int compare(Size lhs, Size rhs) { in compare() argument 1012 .compareSizes(lhs.getWidth(), lhs.getHeight(), rhs.getWidth(), rhs.getHeight()); in compare()
|
/cts/tools/dasm/etc/ |
D | java_cup.jar | META-INF/
META-INF/MANIFEST.MF
java_cup/
java_cup/action_part.class
action_part ... |
D | java_cup-new.jar | META-INF/
META-INF/MANIFEST.MF
java_cup/
java_cup/runtime/
java_cup/ ... |
D | java_cup.jar.old | META-INF/
META-INF/MANIFEST.MF
java_cup/
java_cup/action_part.class
action_part ... |