HomeSort by relevance Sort by last modified time
    Searched defs:put (Results 251 - 275 of 6493) sorted by null

<<11121314151617181920>>

  /tools/tradefederation/core/src/com/android/tradefed/util/
SimplePerfResult.java 86 benchmarkMetrics.put(key, val);
99 benchmarkComments.put(key, val);
  /tools/tradefederation/core/src/com/android/tradefed/util/proto/
TfMetricProtoUtil.java 63 oldFormat.put(key, value);
76 newFormat.put(key, stringToMetric(metrics.get(key)));
  /art/test/004-InterfaceTest/src/
Main.java 27 map.put(intobj, s);
38 map.put(intobj, s);
  /art/test/044-proxy/src/
Main.java 43 proxyClassNameMap.put(proxyClassName,
  /art/test/530-regression-lse/src/
Main.java 33 b.put((byte) 0);
  /art/tools/dexfuzz/src/dexfuzz/
MutationStats.java 50 stats.put(statName, 0L);
53 stats.put(statName, stats.get(statName) + amt);
  /build/make/tools/
post_process_props.py 27 # Put the modifications that you need to make into the /system/build.prop into this
28 # function. The prop object has get(name) and put(name,value) methods.
32 # Put the modifications that you need to make into /vendor/default.prop and
34 # put(name,value) methods.
38 # Put the modifications that you need to make into the /system/etc/prop.default into this
39 # function. The prop object has get(name) and put(name,value) methods.
50 prop.put("persist.sys.usb.config", val)
55 prop.put("persist.sys.usb.config", "none");
96 def put(self, name, value): member in class:PropFile
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleScannerPowerLevelActivity.java 70 mMacText.put(AdvertiseSettings.ADVERTISE_TX_POWER_ULTRA_LOW,
72 mMacText.put(AdvertiseSettings.ADVERTISE_TX_POWER_LOW,
74 mMacText.put(AdvertiseSettings.ADVERTISE_TX_POWER_MEDIUM,
76 mMacText.put(AdvertiseSettings.ADVERTISE_TX_POWER_HIGH,
79 mCountText.put(AdvertiseSettings.ADVERTISE_TX_POWER_ULTRA_LOW,
81 mCountText.put(AdvertiseSettings.ADVERTISE_TX_POWER_LOW,
83 mCountText.put(AdvertiseSettings.ADVERTISE_TX_POWER_MEDIUM,
85 mCountText.put(AdvertiseSettings.ADVERTISE_TX_POWER_HIGH,
88 mRssiText.put(AdvertiseSettings.ADVERTISE_TX_POWER_ULTRA_LOW,
90 mRssiText.put(AdvertiseSettings.ADVERTISE_TX_POWER_LOW
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Dialogs/
AccuracyResultDialog.java 45 mTextViews.put(ResultType.WAYPOINT, (TextView) mRootView.findViewById(R.id.tvWaypointResult));
46 mTextViews.put(ResultType.PATH, (TextView) mRootView.findViewById(R.id.tvPathResult));
ComplexMovementResultDialog.java 45 mTextViews.put(ResultType.WAYPOINT, (TextView) mRootView.findViewById(R.id.tvWaypointResult));
46 mTextViews.put(ResultType.RINGS, (TextView) mRootView.findViewById(R.id.tvRingsResult));
RobustnessResultDialog.java 45 mTextViews.put(ResultType.WAYPOINT, (TextView) mRootView.findViewById(R.id.tvWaypointResult));
46 mTextViews.put(ResultType.PATH, (TextView) mRootView.findViewById(R.id.tvPathResult));
47 mTextViews.put(ResultType.TIME, (TextView) mRootView.findViewById(R.id.tvTimeResult));
48 mTextViews.put(ResultType.ROTATION, (TextView) mRootView.findViewById(R.id.tvRotationResult));
  /cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/
ICalendar.java 61 mPropsMap.put(name, props);
  /cts/tests/tests/keystore/src/android/keystore/cts/
PutOverflowTest.java 27 Method put = keystoreClass.getMethod("put", local
31 Boolean result = (Boolean)put.invoke(keystore, "crashFile", buffer, -1, 0);
  /cts/tests/tests/os/src/android/os/cts/
SharedMemoryService.java 62 mMappedBuffer.put(index, value);
  /cts/tests/tests/security/src/android/security/cts/
PutOverflowTest.java 29 Method put = keystoreClass.getMethod("put", local
33 Boolean result = (Boolean)put.invoke(keystore, "crashFile", buffer, -1, 0);
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
RopToDop.java 55 MAP.put(Rops.NOP, Dops.NOP);
56 MAP.put(Rops.MOVE_INT, Dops.MOVE);
57 MAP.put(Rops.MOVE_LONG, Dops.MOVE_WIDE);
58 MAP.put(Rops.MOVE_FLOAT, Dops.MOVE);
59 MAP.put(Rops.MOVE_DOUBLE, Dops.MOVE_WIDE);
60 MAP.put(Rops.MOVE_OBJECT, Dops.MOVE_OBJECT);
61 MAP.put(Rops.MOVE_PARAM_INT, Dops.MOVE);
62 MAP.put(Rops.MOVE_PARAM_LONG, Dops.MOVE_WIDE);
63 MAP.put(Rops.MOVE_PARAM_FLOAT, Dops.MOVE);
64 MAP.put(Rops.MOVE_PARAM_DOUBLE, Dops.MOVE_WIDE)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
RopToDop.java 232 MAP.put(Rops.NOP, Dops.NOP);
233 MAP.put(Rops.MOVE_INT, Dops.MOVE);
234 MAP.put(Rops.MOVE_LONG, Dops.MOVE_WIDE);
235 MAP.put(Rops.MOVE_FLOAT, Dops.MOVE);
236 MAP.put(Rops.MOVE_DOUBLE, Dops.MOVE_WIDE);
237 MAP.put(Rops.MOVE_OBJECT, Dops.MOVE_OBJECT);
238 MAP.put(Rops.MOVE_PARAM_INT, Dops.MOVE);
239 MAP.put(Rops.MOVE_PARAM_LONG, Dops.MOVE_WIDE);
240 MAP.put(Rops.MOVE_PARAM_FLOAT, Dops.MOVE);
241 MAP.put(Rops.MOVE_PARAM_DOUBLE, Dops.MOVE_WIDE)
    [all...]
  /dalvik/dx/src/com/android/dx/io/instructions/
BaseCodeCursor.java 53 baseAddressMap.put(targetAddress, baseAddress);
  /developers/build/prebuilts/gradle/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/server/
StoreBackendImpl.java 71 mPublicKeys.put(userId, publicKey);
  /developers/build/prebuilts/gradle/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
SampleGattAttributes.java 31 attributes.put("0000180d-0000-1000-8000-00805f9b34fb", "Heart Rate Service");
32 attributes.put("0000180a-0000-1000-8000-00805f9b34fb", "Device Information Service");
34 attributes.put(HEART_RATE_MEASUREMENT, "Heart Rate Measurement");
35 attributes.put("00002a29-0000-1000-8000-00805f9b34fb", "Manufacturer Name String");
  /developers/build/prebuilts/gradle/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/
LocationDataManager.java 55 mPointsMap.put(day, points);
86 mPointsMap.put(entry.day, points);
  /developers/samples/android/connectivity/bluetooth/BluetoothLeGatt/Application/src/main/java/com/example/android/bluetoothlegatt/
SampleGattAttributes.java 31 attributes.put("0000180d-0000-1000-8000-00805f9b34fb", "Heart Rate Service");
32 attributes.put("0000180a-0000-1000-8000-00805f9b34fb", "Device Information Service");
34 attributes.put(HEART_RATE_MEASUREMENT, "Heart Rate Measurement");
35 attributes.put("00002a29-0000-1000-8000-00805f9b34fb", "Manufacturer Name String");
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/edgecases/
MultipleStepsCreditCardActivity.java 31 steps.put(R.string.credit_card_number_label,
33 steps.put(R.string.credit_card_expiration_month_label,
35 steps.put(R.string.credit_card_expiration_year_label,
37 steps.put(R.string.credit_card_security_code_abbrev_label,
MultipleStepsSignInActivity.java 31 steps.put(R.string.username_label, View.AUTOFILL_HINT_USERNAME);
32 steps.put(R.string.password_label, View.AUTOFILL_HINT_PASSWORD);
  /developers/samples/android/security/AsymmetricFingerprintDialog/Application/src/main/java/com/example/android/asymmetricfingerprintdialog/server/
StoreBackendImpl.java 71 mPublicKeys.put(userId, publicKey);

Completed in 841 milliseconds

<<11121314151617181920>>