Searched defs:values (Results 1 - 9 of 9) sorted by relevance

/art/test/123-compiler-regressions-mt/src/
H A DMain.java60 private int[] values = { 42 }; field in class:B17689750TestVolatile
64 values = null;
69 int[] vs1 = values;
72 int[] vs2 = values;
82 private int[] values = { 42 }; field in class:B17689750TestMonitor
93 values = null;
101 vs1 = values;
112 int[] vs2 = values;
/art/test/800-smali/src/
H A DMain.java29 public TestCase(String testName, String testClass, String testMethodName, Object[] values, argument
34 this.values = values;
42 Object[] values; field in class:Main.TestCase
217 retValue = method.invoke(null, tc.values);
219 retValue = method.invoke(method.getDeclaringClass().newInstance(), tc.values);
/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DEncodedArray.java23 public EncodedValue[] values; field in class:EncodedArray
29 values = new EncodedValue[size];
31 (values[i] = new EncodedValue()).read(file);
40 for (EncodedValue encodedValue : values) {
49 for (EncodedValue value : values) {
/art/tools/ahat/src/
H A DDoc.java75 * The number of values must match the number of columns provided for the
78 void row(DocString... values); argument
H A DHtmlDoc.java131 public void row(DocString... values) { argument
136 if (mCurrentTableColumns.length != values.length) {
138 "Wrong number of row values. Expected %d, but got %d",
139 mCurrentTableColumns.length, values.length));
143 for (int i = 0; i < values.length; i++) {
148 ps.format(">%s</td>", values[i].html());
/art/cmdline/
H A Dcmdline_parser.h56 // Allow argument definitions to save their values when they are parsed,
130 // Map the list of names into the list of values. List of names must not have
145 // Map the parsed string values (from _) onto a concrete value. If no wildcard
149 // Do not use if a values list has already been set.
208 assert(false && "Should not be appending values to ignored arguments");
242 "No Into... function called, nowhere to save parsed values to");
244 "No Into... function called, nowhere to load parsed values from");
296 ArgumentBuilder<TArg> WithValues(std::initializer_list<TArg> values) { argument
298 a.WithValues(values);
343 std::vector<Unit> values(names
[all...]
/art/runtime/arch/
H A Dstub_test.cc1294 uint8_t values[num_values] = { 0, 1, 2, 128, 0xFF };
1298 static_cast<size_t>(values[i]),
1310 EXPECT_EQ(values[i], static_cast<uint8_t>(res)) << "Iteration " << i;
1324 int8_t values[] = { -128, -64, 0, 64, 127 };
1326 for (size_t i = 0; i < arraysize(values); ++i) {
1328 static_cast<size_t>(values[i]),
1339 EXPECT_EQ(values[i], static_cast<int8_t>(res)) << "Iteration " << i;
1355 uint8_t values[] = { 0, true, 2, 128, 0xFF };
1357 for (size_t i = 0; i < arraysize(values); ++i) {
1360 static_cast<size_t>(values[
1722 uint64_t values[] = { 0, 1, 2, 255, 32768, 1000000, 0xFFFFFFFF, 0xFFFFFFFFFFFF }; local
1755 uint64_t values[] = { 0, 1, 2, 255, 32768, 1000000, 0xFFFFFFFF, 0xFFFFFFFFFFFF }; local
[all...]
/art/runtime/hprof/
H A Dhprof.cc222 void AddU1List(const uint8_t* values, size_t count) { argument
223 HandleU1List(values, count);
226 void AddU2List(const uint16_t* values, size_t count) { argument
227 HandleU2List(values, count);
230 void AddU4List(const uint32_t* values, size_t count) { argument
231 HandleU4List(values, count);
237 void AddU8List(const uint64_t* values, size_t count) { argument
238 HandleU8List(values, count);
242 void AddIdList(mirror::ObjectArray<mirror::Object>* values)
244 const int32_t length = values
[all...]
/art/test/083-compiler-regressions/src/
H A DMain.java991 int v1 = B16177324Values.values[0]; // Null-check on array element access.
992 int v2 = B16177324ValuesKiller.values[0]; // clinit<>() sets B16177324Values.values to null.
993 int v3 = B16177324Values.values[0]; // Should throw NPE.
995 System.out.println("Unexpectedly retrieved all values: " + v1 + ", " + v2 + ", " + v3);
9878 public static int values[] = { 42 }; field in class:B16177324Values
9882 public static int values[] = { 1234 }; field in class:B16177324ValuesKiller
9884 B16177324Values.values = null;

Completed in 431 milliseconds