HomeSort by relevance Sort by last modified time
    Searched defs:mBands (Results 1 - 12 of 12) sorted by null

  /frameworks/base/telephony/java/android/telephony/
RadioAccessSpecifier.java 48 private int[] mBands;
76 this.mBands = bands.clone();
78 this.mBands = null;
104 return mBands == null ? null : mBands.clone();
133 dest.writeIntArray(mBands);
139 mBands = in.createIntArray();
158 && Arrays.equals(mBands, ras.mBands)
165 + (Arrays.hashCode(mBands) * 37
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/
FilterGradRepresentation.java 52 int n = mBands.size();
54 mBands.add(new Band());
57 mBands.remove(i);
61 Vector<Band> mBands = new Vector<Band>();
102 for (Band point : mBands) {
107 return "c=" + mBands.indexOf(mCurrentBand) + "[" + mBands.size() + "]" + count;
120 mBands.add(0, p);
129 int n = (rep.mCurrentBand == null) ? 0 : rep.mBands.indexOf(rep.mCurrentBand);
130 for (Band band : rep.mBands) {
    [all...]
  /hardware/interfaces/broadcastradio/1.1/vts/functional/
VtsHalBroadcastradioV1_1TargetTest.cpp 119 hidl_vec<BandConfig> mBands;
162 mBands = prop10.bands;
215 EXPECT_GT(mBands.size(), idx);
216 if (mBands.size() <= idx) {
221 auto& band = mBands[idx];
227 if (currentBandIndex + 1 >= mBands.size()) return false;
  /frameworks/av/media/libeffects/dynamicsproc/dsp/
DPBase.h 192 std::vector<DPEqBand> mBands;
203 std::vector<DPMbcBand> mBands;
  /packages/apps/Car/libs/car-broadcastradio-support/src/com/android/car/broadcastradio/support/media/
BrowseTree.java 370 private @Nullable List<BandDescriptor> mBands;
382 mBands = bands;
389 if (mBands == null) {
393 return mBands.isEmpty();
412 for (BandDescriptor band : mBands) {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/
AudioFrequencyLineActivity.java 102 int mBands = 4;
103 AudioBandSpecs[] bandSpecsArray = new AudioBandSpecs[mBands];
319 int[] mPointsPerBand = new int[mBands];
320 double[] mAverageEnergyPerBand = new double[mBands];
321 int[] mInBoundPointsPerBand = new int[mBands];
331 for (int b = 0; b < mBands; b++) {
355 if (b >= 0 && b < mBands && mPointsPerBand[b] > 0) {
367 for (int b = 0; b < mBands; b++) {
413 if (currentBand >= mBands)
423 for (int b = 0; b < mBands; b++)
    [all...]
AudioFrequencyMicActivity.java 136 int mBands = 4;
137 AudioBandSpecs[] bandSpecsArray = new AudioBandSpecs[mBands];
138 AudioBandSpecs[] baseBandSpecsArray = new AudioBandSpecs[mBands];
508 int[] mPointsPerBand = new int[mBands];
509 double[] mAverageEnergyPerBand = new double[mBands];
510 int[] mInBoundPointsPerBand = new int[mBands];
522 for (int b = 0; b < mBands; b++) {
548 if (b >= 0 && b < mBands && mPointsPerBand[b] > 0) {
561 for (int b = 0; b < mBands; b++) {
639 if (currentBand >= mBands)
    [all...]
AudioFrequencySpeakerActivity.java 109 int mBands = 4;
110 AudioBandSpecs[] bandSpecsArray = new AudioBandSpecs[mBands];
111 AudioBandSpecs[] baseBandSpecsArray = new AudioBandSpecs[mBands];
335 int[] mPointsPerBand = new int[mBands];
336 double[] mAverageEnergyPerBand = new double[mBands];
337 int[] mInBoundPointsPerBand = new int[mBands];
349 for (int b = 0; b < mBands; b++) {
375 if (b >= 0 && b < mBands && mPointsPerBand[b] > 0) {
387 for (int b = 0; b < mBands; b++) {
439 if (currentBand >= mBands)
    [all...]
AudioFrequencyUnprocessedActivity.java 153 int mBands = 3;
156 AudioBandSpecs[] mBandSpecsMic = new AudioBandSpecs[mBands];
292 mResultsMic = new Results("mic_response", mBands);
    [all...]
  /frameworks/base/core/java/android/hardware/radio/
RadioManager.java 216 private final BandDescriptor[] mBands;
243 mBands = bands;
423 return mBands;
440 mBands = new BandDescriptor[tmp.length];
442 mBands[i] = (BandDescriptor) tmp[i];
475 dest.writeParcelableArray(mBands, flags);
499 + ", mBands=" + Arrays.toString(mBands) + "]";
506 mIsCaptureSupported, mBands, mIsBgScanSupported, mDabFrequencyTable, mVendorInfo);
526 if (!Objects.equals(mBands, other.mBands)) return false
    [all...]
  /frameworks/base/media/java/android/media/audiofx/
DynamicsProcessing.java 712 private final EqBand[] mBands;
724 mBands = new EqBand[bandCount];
731 mBands[b] = new EqBand(true, freq, EQ_DEFAULT_GAIN);
734 mBands = null
    [all...]
  /frameworks/wilhelm/src/
itfstruct.h 351 const struct EqualizerBand *mBands;

Completed in 253 milliseconds