Searched refs:bin (Results 1 - 5 of 5) sorted by relevance

/packages/inputmethods/LatinIME/tools/makedict/etc/
H A Dmakedict0 #!/bin/sh
20 newProg=`/bin/ls -ld "${prog}"`
/packages/apps/Browser/src/com/android/browser/
H A DDateSortedExpandableListAdapter.java36 // in that bin.
76 // The ItemMap will store the number of items in each bin.
91 // We are already in the last bin, so it will
168 int bin = mDateSorter.getIndex(getLong(mDateIndex));
169 // bin is the same as the group if the number of bins is the
172 return bin;
176 for (int i = 0; i < bin; i++) {
188 * Translates from a group position in the ExpandableList to a bin. This is
192 * @return The corresponding bin that holds that group.
/packages/apps/Settings/src/com/android/settings/fuelgauge/
H A DBatteryHistoryChart.java70 void addTick(int x, int bin) { argument
71 if (bin != mLastBin && mNumTicks < mTicks.length) {
72 mTicks[mNumTicks] = x | bin << CHART_DATA_BIN_SHIFT;
74 mLastBin = bin;
90 int bin = (tick&CHART_DATA_BIN_MASK) >> CHART_DATA_BIN_SHIFT;
94 lastBin = bin;
617 int bin;
621 bin = 0;
623 bin = 1;
625 bin
[all...]
/packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
H A DDateSortedExpandableListAdapter.java41 // in that bin.
97 // The ItemMap will store the number of items in each bin.
112 // We are already in the last bin, so it will
184 int bin = mDateSorter.getIndex(getLong(mDateIndex));
185 // bin is the same as the group if the number of bins is the
187 if (DateSorter.DAY_COUNT == mNumberOfBins) return bin;
190 for (int i = 0; i < bin; i++) {
200 * Translates from a group position in the ExpandableList to a bin. This is
204 * @return The corresponding bin that holds that group.
/packages/apps/Camera/jni/feature_stab/src/dbreg/
H A Ddbreg.cpp640 int bin = (int)(error/m_max_cost_pix*m_nr_bins); local
641 if ( bin < m_nr_bins )
642 m_cost_histogram[bin]++;

Completed in 945 milliseconds