Searched defs:size (Results 1 - 25 of 178) sorted by relevance

12345678

/packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/
H A Ddictionary_structure_with_buffer_policy_factory.cpp31 const int size, const bool isUpdatable) {
34 const MmappedBuffer *const mmapedBuffer = MmappedBuffer::openBuffer(path, bufOffset, size,
30 newDictionaryStructureWithBufferPolicy(const char *const path, const int bufOffset, const int size, const bool isUpdatable) argument
/packages/apps/Camera/src/com/android/camera/
H A DIntArray.java34 public int size() { method in class:IntArray
H A DPreferenceGroup.java48 public int size() { method in class:PreferenceGroup
49 return list.size();
/packages/apps/Camera/src/com/android/camera/ui/
H A DPreviewSurfaceView.java42 private void setLayoutSize(int size) { argument
44 if (p.width != size || p.height != size) {
45 p.width = size;
46 p.height = size;
/packages/apps/Camera2/src/com/android/camera/
H A DIntArray.java34 public int size() { method in class:IntArray
H A DPreferenceGroup.java48 public int size() { method in class:PreferenceGroup
49 return list.size();
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/
H A DWidgetSource.java25 public int size(); method in interface:WidgetSource
/packages/apps/Gallery2/src/com/android/gallery3d/util/
H A DIntArray.java39 public int size() { method in class:IntArray
/packages/apps/Launcher3/src/com/android/gallery3d/util/
H A DIntArray.java39 public int size() { method in class:IntArray
/packages/apps/LegacyCamera/src/com/android/camera/
H A DIntArray.java34 public int size() { method in class:IntArray
H A DPreferenceGroup.java48 public int size() { method in class:PreferenceGroup
49 return list.size();
/packages/apps/UnifiedEmail/src/org/apache/commons/io/filefilter/
H A DSizeFileFilter.java23 * Filters files based on size, can filter either smaller files or
27 * current directory whose size is greater than 1 MB:
43 /** The size threshold. */
44 private final long size; field in class:SizeFileFilter
49 * Constructs a new size file filter for files equal to or
50 * larger than a certain size.
52 * @param size the threshold size of the files
53 * @throws IllegalArgumentException if the size is negative
55 public SizeFileFilter(long size) { argument
68 SizeFileFilter(long size, boolean acceptLarger) argument
[all...]
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/address/
H A DDomainList.java47 public int size() { method in class:DomainList
48 return domains.size();
54 * @throws IndexOutOfBoundsException If index is < 0 or >= size().
57 if (0 > index || size() <= index)
68 for (int i = 0; i < domains.size(); i++) {
71 if (i + 1 < domains.size())
H A DMailboxList.java47 public int size() { method in class:MailboxList
48 return mailboxes.size();
55 if (0 > index || size() <= index)
65 for (int i = 0; i < size(); i++) {
/packages/experimental/Bummer/src/com/android/dreams/bummer/
H A DBummer.java32 public float size = 20.0f; field in class:Bummer
48 mApology.setTextSize(size);
/packages/inputmethods/LatinIME/native/jni/src/utils/
H A Dlog_utils.cpp50 // Get the necessary size. Add 1 for the 0 terminator.
51 const int size = vsnprintf(fixedSizeCString, DEFAULT_LINE_SIZE, format, argList) + 1; local
55 if (size <= DEFAULT_LINE_SIZE) {
61 char variableSizeCString[size];
62 vsnprintf(variableSizeCString, size, format, argList);
/packages/apps/Dialer/src/com/android/dialer/calllog/
H A DCallLogGroupBuilder.java33 public void addGroup(int cursorPosition, int size, boolean expanded); argument
48 * For entries that are not grouped with others, we do not need to create a group of size one.
85 // Increment the size of the group to include the current call, but do not create
114 private void addGroup(int cursorPosition, int size) { argument
115 mGroupCreator.addGroup(cursorPosition, size, false);
/packages/apps/Email/src/com/android/email/activity/
H A DUiUtilities.java31 * Formats the given size as a String in bytes, kB, MB or GB. Ex: 12,315,000 = 11 MB
33 public static String formatSize(Context context, long size) { argument
42 if (size < KB) {
44 value = (int) size;
45 } else if (size < MB) {
47 value = (int) (size / KB);
48 } else if (size < GB) {
50 value = (int) (size / MB);
53 value = (int) (size / GB);
/packages/apps/Email/tests/src/com/android/email/provider/
H A DPolicyTests.java116 private Attachment setupSimpleAttachment(String name, long size, Account acct) { argument
117 Attachment att = ProviderTestUtils.setupAttachment(-1, name, size, false, mMockContext);
/packages/apps/Nfc/tests/src/com/android/nfc/snep/
H A DSnepBasicTests.java267 NdefMessage getNdef(int size) { argument
268 StringBuffer string = new StringBuffer(size);
269 for (int i = 0; i < size; i++) {
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DSearchSettings.java36 public int getNextVoiceSearchHintIndex(int size); argument
/packages/apps/Settings/src/com/android/settings/widget/
H A DChartAxis.java31 public boolean setSize(float size); argument
/packages/apps/UnifiedEmail/src/com/android/mail/lib/base/
H A DCharEscaper.java141 // This is the size needed to add the replacement, not the full size needed by the string. We
199 private static char[] growBuffer(char[] dest, int index, int size) { argument
200 char[] copy = new char[size];
/packages/apps/UnifiedEmail/src/com/android/mail/ui/
H A DCustomTypefaceSpan.java38 * @param size Desired font size; this should have already been converted
43 public CustomTypefaceSpan(String family, Typeface type, int size, int color) { argument
46 newSize = size;
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
H A DCharEscaper.java142 // This is the size needed to add the replacement, not the full size needed by the string. We
200 private static char[] growBuffer(char[] dest, int index, int size) { argument
201 char[] copy = new char[size];

Completed in 3458 milliseconds

12345678