Searched refs:number (Results 51 - 69 of 69) sorted by last modified time

123

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DBaseStatusBar.java918 notification.notification.number,
1070 notification.notification.number,
H A DStatusBarIconView.java117 && mIcon.number == icon.number;
133 if (icon.number > 0 && mContext.getResources().getBoolean(
239 if (mIcon.number > tooBig) {
244 str = f.format(mIcon.number);
/frameworks/base/include/androidfw/
H A DKeyCharacterMap.h92 /* Gets the Unicode character for the number or symbol generated by the key
94 * Returns 0 if no number or symbol is generated.
164 /* The number or symbol character generated by the key, or 0 if none. */
165 char16_t number; member in struct:android::KeyCharacterMap::Key
/frameworks/base/libs/androidfw/
H A DKeyCharacterMap.cpp221 result = key->number;
570 char16_t number = parcel->readInt32(); local
577 key->number = number;
618 parcel->writeInt32(key->number);
635 label(0), number(0), firstBehavior(NULL) {
639 label(other.label), number(other.number),
814 ALOGE("%s: Expected key %s number, got '%s'.", mTokenizer->getLocation().string(),
888 } else if (token == "number") {
[all...]
/frameworks/base/media/java/android/media/
H A DMediaScanner.java623 // track number might be of the form "2/12"
624 // we just read the number before the slash
629 // set number might be of the form "1/3"
630 // we just read the number before the slash
685 StringBuffer number = new StringBuffer();
692 number.append(c);
701 short genreIndex = Short.parseShort(number.toString());
718 // else return the number, without parentheses
719 return number.toString();
1517 // returns the number o
[all...]
/frameworks/base/core/tests/coretests/src/android/database/
H A DDatabaseGeneralTest.java121 String number;
134 number = c.getString(c.getColumnIndexOrThrow("num"));
135 assertEquals("911", number);
143 number = c.getString(c.getColumnIndexOrThrow("num"));
144 assertEquals("5555", number);
157 number = c.getString(c.getColumnIndexOrThrow("num"));
158 assertEquals("+" + PHONE_NUMBER, number);
166 number = c.getString(c.getColumnIndexOrThrow("num"));
167 assertEquals("+" + PHONE_NUMBER, number);
175 number
[all...]
H A DDatabasePerformanceTests.java113 public String numberName(int number) { argument
116 if (number >= 1000) {
117 result += numberName((number / 1000)) + " thousand";
118 number = (number % 1000);
120 if (number > 0) result += " ";
123 if (number >= 100) {
124 result += ONES[(number / 100)] + " hundred";
125 number = (number
[all...]
H A DNewDatabasePerformanceTests.java70 public String numberName(int number) { argument
73 if (number >= 1000) {
74 result += numberName((number / 1000)) + " thousand";
75 number = (number % 1000);
77 if (number > 0) result += " ";
80 if (number >= 100) {
81 result += ONES[(number / 100)] + " hundred";
82 number = (number
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/
H A DarmCOMM_s.h40 GBLA _F ;// Function number
42 GBLA _SwNum ;// Switch number
195 ;// $number = (if provided) the number of entries for an array
197 M_FIELD $fname, $size, $number
202 IF "$number"<>""
203 _StOff SETA _StOff + $size*$number
875 ;// Inserts a given number of NOPs for the currently
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/
H A DarmCOMM_s.h40 GBLA _F ;// Function number
42 GBLA _SwNum ;// Switch number
198 ;// $number = (if provided) the number of entries for an array
200 M_FIELD $fname, $size, $number
205 IF "$number"<>""
206 _StOff SETA _StOff + $size*$number
878 ;// Inserts a given number of NOPs for the currently
/frameworks/av/media/libstagefright/mpeg2ts/
H A DATSParser.cpp71 unsigned number() const { return mProgramNumber; } function in struct:android::ATSParser::Program
183 ALOGV("new program number %u", programNumber);
272 // infoBytesRemaining is the number of bytes that make up the
997 if (program->number() == program_number) {
1122 // The number of bytes from the start of the current
1133 // The number of bytes received by this parser up to and
1199 if (which >= 0 && (int)program->number() != which) {
/frameworks/base/core/java/android/app/
H A DNotification.java136 * The number of events that this notification represents. For example, in a new mail
137 * notification, this could be the number of unread messages.
140 * example, before {@link android.os.Build.VERSION_CODES#HONEYCOMB}, this number was
143 * {@link Notification.Builder} has displayed the number in the expanded notification view.
145 * If the number is 0 or negative, it is never shown.
147 public int number; field in class:Notification
252 * The number of milliseconds for the LED to be on while it's flashing.
261 * The number of milliseconds for the LED to be off while it's flashing.
286 * <li>To flash the LED, pass the number of milliseconds that it should
552 number
1104 setNumber(int number) argument
[all...]
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHeadset.java587 * Current implementation returns the number of AT commands handled since
803 public void phoneStateChanged(int numActive, int numHeld, int callState, String number, argument
807 mService.phoneStateChanged(numActive, numHeld, callState, number, type);
844 String number, int type) {
847 mService.clccResponse(index, direction, status, mode, mpty, number, type);
843 clccResponse(int index, int direction, int status, int mode, boolean mpty, String number, int type) argument
H A DIBluetoothHeadset.aidl52 void phoneStateChanged(int numActive, int numHeld, int callState, String number, int type);
55 String number, int type);
/frameworks/base/core/java/android/provider/
H A DCallLog.java62 * Query parameter used to limit the number of call logs returned.
134 * The phone number as the user entered it.
137 public static final String NUMBER = "number";
169 * The cached name associated with the phone number, if it exists.
171 * associated with this number has changed.
177 * The cached number type (Home, Work, etc) associated with the
178 * phone number, if it exists.
180 * associated with this number has changed.
186 * The cached number label, for a custom number typ
278 addCall(CallerInfo ci, Context context, String number, int presentation, int callType, long start, int duration) argument
[all...]
/frameworks/base/core/java/android/text/format/
H A DFormatter.java32 * @param number size value to be formatted
33 * @return formatted string with the number
35 public static String formatFileSize(Context context, long number) { argument
36 return formatFileSize(context, number, false);
43 public static String formatShortFileSize(Context context, long number) { argument
44 return formatFileSize(context, number, true);
47 private static String formatFileSize(Context context, long number, boolean shorter) { argument
52 float result = number;
/frameworks/base/core/java/android/text/method/
H A DDialerKeyListener.java52 * Overrides the superclass's lookup method to prefer the number field
57 int number = event.getNumber();
60 * Prefer number if no meta key is active, or if it produces something
64 if (number != 0) {
65 return number;
95 * Otherwise, use the number associated with the key, since
100 return number;
/frameworks/base/core/java/com/android/internal/statusbar/
H A DStatusBarIcon.java29 public int number; field in class:StatusBarIcon
32 public StatusBarIcon(String iconPackage, UserHandle user, int iconId, int iconLevel, int number, argument
38 this.number = number;
47 + " num=" + this.number + " )";
53 this.iconLevel, this.number, this.contentDescription);
71 this.number = in.readInt();
81 out.writeInt(this.number);
/frameworks/av/media/libstagefright/
H A DFLACExtractor.cpp646 FLAC__uint64 sampleNumber = mWriteHeader.number.sample_number;

Completed in 260 milliseconds

123