Home
last modified time | relevance | path

Searched refs:array (Results 1 – 25 of 52) sorted by relevance

123

/development/tools/mkstubs/tests/com/android/mkstubs/sourcer/
DSignatureSourcerTest.java77 String[] array = toStringArray(params); in testSimpleArg() local
81 array); in testSimpleArg()
130 String[] array = toStringArray(params); in testManyArgs() local
136 array); in testManyArgs()
140 String[] array = new String[params.size()]; in toStringArray() local
142 array[i] = params.get(i).toString(); in toStringArray()
144 return array; in toStringArray()
/development/samples/browseable/CardEmulation/src/com.example.android.cardemulation/
DCardService.java162 for (byte[] array : rest) { in ConcatArrays()
163 totalLength += array.length; in ConcatArrays()
167 for (byte[] array : rest) { in ConcatArrays()
168 System.arraycopy(array, 0, result, offset, array.length); in ConcatArrays()
169 offset += array.length; in ConcatArrays()
/development/tools/winscope/src/utils/
Dutils.js18 function findLastMatchingSorted(array, predicate) { argument
20 let b = array.length - 1;
23 if (predicate(array, m)) {
30 return predicate(array, b) ? b : a;
/development/tools/winscope/src/
DdecodeVideo.js20 function findFirstInArray(array, pattern) { argument
21 for (var i = 0; i < array.length; i++) {
24 if (array[i + j] != pattern[j]) {
Dmain.js258 (array, idx) => parseInt(array[idx]) <= timestamp,
267 (array, idx) => parseInt(array[idx]) <= timestamp,
/development/tools/winscope/src/mixins/
DTimeline.js165 indexOfClosestElementTo(target, array) {
166 let smallestDiff = Math.abs(target - array[0]);
168 for (let i = 1; i < array.length; i++) {
169 const elem = array[i];
/development/samples/ApiDemos/src/com/example/android/apis/graphics/
DVertices.java43 private static void setXY(float[] array, int index, float x, float y) { in setXY() argument
44 array[index*2 + 0] = x; in setXY()
45 array[index*2 + 1] = y; in setXY()
DBitmapMesh.java46 private static void setXY(float[] array, int index, float x, float y) { in setXY() argument
47 array[index*2 + 0] = x; in setXY()
48 array[index*2 + 1] = y; in setXY()
DBitmapDecode.java108 byte[] array = streamToBytes(is); in SampleView()
109 mMovie = Movie.decodeByteArray(array, 0, array.length); in SampleView()
DCreateBitmap.java64 byte[] array = os.toByteArray(); in codec()
65 return BitmapFactory.decodeByteArray(array, 0, array.length); in codec()
/development/samples/browseable/AppRestrictions/src/com.example.android.apprestrictions/
DGetRestrictionsReceiver.java64 String[] choiceEntries = res.getStringArray(R.array.choice_entry_entries); in populateChoiceEntry()
65 String[] choiceValues = res.getStringArray(R.array.choice_entry_values); in populateChoiceEntry()
77 String[] multiEntries = res.getStringArray(R.array.multi_entry_entries); in populateMultiEntry()
78 String[] multiValues = res.getStringArray(R.array.multi_entry_values); in populateMultiEntry()
/development/samples/ApiDemos/src/com/example/android/apis/view/
DSpinner1.java46 this, R.array.colors, android.R.layout.simple_spinner_item); in onCreate()
62 adapter = ArrayAdapter.createFromResource(this, R.array.planets, in onCreate()
DSplitTouchView.java56 String[] responses = getResources().getStringArray(R.array.cheese_responses);
/development/vndk/tools/header-checker/src/dumper/
Dfixed_argv.h58 std::array<const char *, sizeof...(options)> opts{ in GetLastArg()
81 std::array<const char *, sizeof...(arguments)> args{ in PushForwardArgs()
/development/samples/ApiDemos/src/com/example/android/mmslib/pdu/
DEncodedStringValue.java272 public static EncodedStringValue[] encodeStrings(String[] array) { in encodeStrings() argument
273 int count = array.length; in encodeStrings()
277 encodedArray[i] = new EncodedStringValue(array[i]); in encodeStrings()
/development/samples/ToyVpn/src/com/example/android/toyvpn/
DToyVpnConnection.java207 int length = in.read(packet.array()); in run()
225 out.write(packet.array(), 0, length); in run()
300 return configure(new String(packet.array(), 1, length - 1, US_ASCII).trim()); in handshake()
/development/samples/ApiDemos/src/com/example/android/apis/app/
DScreenOrientation.java62 this, R.array.screen_orientations, android.R.layout.simple_spinner_item); in onCreate()
DAlertDialogSamples.java201 .setItems(R.array.select_dialog_items, new DialogInterface.OnClickListener() { in onCreateDialog()
205 String[] items = getResources().getStringArray(R.array.select_dialog_items); in onCreateDialog()
240 … .setSingleChoiceItems(R.array.select_dialog_items2, 0, new DialogInterface.OnClickListener() { in onCreateDialog()
262 .setMultiChoiceItems(R.array.select_dialog_items3, in onCreateDialog()
/development/samples/browseable/NavigationDrawer/src/com.example.android.navigationdrawer/
DNavigationDrawerActivity.java83 mPlanetTitles = getResources().getStringArray(R.array.planets_array); in onCreate()
234 String planet = getResources().getStringArray(R.array.planets_array)[i]; in onCreateView()
/development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
DComplicationSimpleConfigActivity.java106 getResources().getStringArray(R.array.complication_simple_names); in getComplicationItems()
110 TypedArray icons = getResources().obtainTypedArray(R.array.complication_simple_icons); in getComplicationItems()
/development/samples/training/NavigationDrawer/src/com/example/android/navigationdrawerexample/
DMainActivity.java85 mPlanetTitles = getResources().getStringArray(R.array.planets_array); in onCreate()
231 String planet = getResources().getStringArray(R.array.planets_array)[i]; in onCreateView()
/development/samples/browseable/AppUsageStatistics/src/com.example.android.appusagestatistics/
DAppUsageStatisticsFragment.java101 R.array.action_list, android.R.layout.simple_spinner_dropdown_item); in onViewCreated()
105 String[] strings = getResources().getStringArray(R.array.action_list); in onViewCreated()
/development/tools/findunused/
Dfindunusedresources71 …@anim/$p\\\|@color/$p\\\|@xml/$p\\\|@layout/$p\\\|@menu/$p\\\|@+id/$p\\\|@array/$p\\\|@string/$p\\…
/development/samples/training/device-management-policy/src/com/example/training/deviceadmin/
DPolicySetupActivity.java124 R.array.password_types, android.R.layout.simple_spinner_item); in initPolicySetupScreen()
169 getResources().getStringArray(R.array.password_types)[passwordQualitySelection]); in initViewPolicyScreen()
/development/tools/winscope/spec/
DObjectTransformerSpec.js38 array: [ property

123