HomeSort by relevance Sort by last modified time
    Searched full:inflater (Results 1 - 25 of 134) sorted by null

1 2 3 4 5 6

  /dalvik/libcore/archive/src/test/java/java/util/zip/
DeflaterTest.java 26 private Inflater inflater = new Inflater(); field in class:DeflaterTest
40 assertEquals(0, inflater.inflate(decompressed));
46 assertEquals(0, inflater.inflate(decompressed));
47 inflater = new Inflater(true); // safe because we did a FULL_FLUSH
53 assertEquals(0, inflater.inflate(decompressed));
59 assertTrue(inflater.needsInput());
60 inflater.setInput(compressed, totalDeflated, lastDeflated)
    [all...]
DeflaterOutputStreamTest.java 49 * and flushes it. Returns an inflater stream that reads this deflater's
52 * <p>These bytes are written on a separate thread so that when the inflater
  /dalvik/libcore/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
InflaterTest.java 32 import java.util.zip.Inflater;
37 @TestTargetClass(Inflater.class)
44 * @tests java.util.zip.Inflater#end()
53 // test method of java.util.zip.inflater.end()
57 Inflater inflate = new Inflater();
68 Inflater i = new Inflater();
75 * @tests java.util.zip.Inflater#finished()
84 // test method of java.util.zip.inflater.finished(
861 Inflater inflater = new Inflater(); local
    [all...]
InflaterInputStreamTest.java 38 import java.util.zip.Inflater;
53 MyInflaterInputStream(InputStream in, Inflater infl) {
57 MyInflaterInputStream(InputStream in, Inflater infl, int size) {
86 * java.util.zip.Inflater)
92 args = {java.io.InputStream.class, java.util.zip.Inflater.class}
98 Inflater inflate = new Inflater();
107 * java.util.zip.Inflater, int)
113 args = {java.io.InputStream.class, java.util.zip.Inflater.class, int.class}
121 Inflater inflate = new Inflater()
    [all...]
DeflaterTest.java 31 import java.util.zip.Inflater;
102 Inflater infl = new Inflater();
153 Inflater infl = new Inflater();
268 Inflater infl = new Inflater();
503 Inflater infl = new Inflater();
666 Inflater infl = new Inflater()
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
DeflateTest.java 24 import java.util.zip.Inflater;
40 * Inflater/Deflater classes.
56 Inflater decompresser = new Inflater();
81 Inflater inflater = new Inflater(false); local
87 expand(inflater, comp, (int) deflater.getBytesWritten(), output);
89 assertEquals(inflater.getBytesWritten(), input.length);
90 assertEquals(deflater.getAdler(), inflater.getAdler())
    [all...]
  /frameworks/base/core/java/android/preference/
GenericInflater.java 36 * Generic XML inflater. This has been adapted from {@link LayoutInflater} and
69 * inflater. You can use this to customize the tag
100 * Create a new inflater instance associated with a
103 * @param context The Context in which this inflater will
113 * Create a new inflater instance that is a copy of an
114 * existing inflater, optionally with its Context
117 * @param original The original inflater to copy.
126 * Create a copy of the existing inflater object, with the copy
128 * {@link ContextThemeWrapper} to create a new inflater to go along
131 * @param newContext The new Context to associate with the new inflater
    [all...]
  /dalvik/libcore/archive/src/main/java/java/util/zip/
InflaterInputStream.java 31 * Basically it wraps the {@code Inflater} class and takes care of the
34 * @see Inflater
40 * The inflater used for this stream.
42 protected Inflater inf;
70 * settings for the {@code Inflater} and internal buffer are be used. In
71 * particular the Inflater expects a ZLIB header from the input stream.
77 this(is, new Inflater(), BUF_SIZE);
81 * This constructor lets you pass a specifically initialized Inflater,
87 * the specific {@code Inflater} for uncompressing data.
89 public InflaterInputStream(InputStream is, Inflater inf)
    [all...]
Inflater.java 32 * The typical usage of a {@code Inflater} outside this package consists of a
39 public class Inflater {
59 * This constructor creates an inflater that expects a header from the input
60 * stream. Use {@code Inflater(boolean)} if the input comes without a ZLIB
63 public Inflater() {
68 * This constructor allows to create an inflater that expects no header from
75 public Inflater(boolean noHeader) {
82 * Release any resources associated with this {@code Inflater}. Any unused
102 * Indicates if the {@code Inflater} has inflated the entire deflated
105 * called after all deflated input is supplied to the {@code Inflater}
    [all...]
  /frameworks/base/core/java/android/view/
InflateException.java 20 * This exception is thrown by an inflater on error conditions.
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
WordActivity.java 59 MenuInflater inflater = getMenuInflater(); local
60 inflater.inflate(R.menu.options_menu, menu);
SearchableDictionary.java 116 MenuInflater inflater = getMenuInflater(); local
117 inflater.inflate(R.menu.options_menu, menu);
  /frameworks/base/core/java/com/android/internal/view/menu/
ListMenuItemView.java 212 LayoutInflater inflater = mItemData.getLayoutInflater(mMenuType); local
213 mIconView = (ImageView) inflater.inflate(com.android.internal.R.layout.list_menu_item_icon,
219 LayoutInflater inflater = mItemData.getLayoutInflater(mMenuType); local
221 (RadioButton) inflater.inflate(com.android.internal.R.layout.list_menu_item_radio,
227 LayoutInflater inflater = mItemData.getLayoutInflater(mMenuType); local
229 (CheckBox) inflater.inflate(com.android.internal.R.layout.list_menu_item_checkbox,
  /frameworks/base/core/java/android/widget/
ZoomControls.java 47 LayoutInflater inflater = (LayoutInflater) context local
49 inflater.inflate(R.layout.zoom_controls, this, // we are the parent
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
ListWithFooterViewAndNewLabels.java 96 LayoutInflater inflater = (LayoutInflater) local
99 TextView tv = (TextView) inflater.inflate(
ListWithMailMessages.java 130 LayoutInflater inflater = (LayoutInflater) local
133 LinearLayout messageUi = (LinearLayout) inflater
  /dalvik/libcore/archive/src/main/native/
zip.h 48 // Contents from Harmony's inflater.h was put here:
  /development/samples/ApiDemos/src/com/example/android/apis/view/
AutoComplete4.java 61 final LayoutInflater inflater = LayoutInflater.from(context); local
62 final TextView view = (TextView) inflater.inflate(
  /packages/apps/Mms/src/com/android/mms/ui/
NumberPickerDialog.java 92 LayoutInflater inflater = local
94 View view = inflater.inflate(R.layout.number_picker_dialog, null);
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppTransferHistory.java 131 MenuInflater inflater = getMenuInflater(); local
132 inflater.inflate(R.menu.transferhistory, menu);
187 MenuInflater inflater = getMenuInflater(); local
188 inflater.inflate(R.menu.transferhistorycontextfinished, menu);
  /packages/apps/Browser/src/com/android/browser/
BrowserYesNoPreference.java 26 // This is the constructor called by the inflater
BrowserDownloadPage.java 160 MenuInflater inflater = getMenuInflater(); local
161 inflater.inflate(R.menu.downloadhistory, menu);
299 MenuInflater inflater = getMenuInflater(); local
302 inflater.inflate(R.menu.downloadhistorycontextfinished, menu);
304 inflater.inflate(R.menu.downloadhistorycontextfailed, menu);
320 inflater.inflate(R.menu.downloadhistorycontextrunning, menu);
  /frameworks/base/core/java/android/appwidget/
AppWidgetHostView.java 348 LayoutInflater inflater = (LayoutInflater) local
350 inflater = inflater.cloneInContext(theirContext);
351 inflater.setFilter(sInflaterFilter);
352 defaultView = inflater.inflate(mInfo.initialLayout, this, false);
  /frameworks/policies/base/mid/com/android/internal/policy/impl/
GlobalActions.java 274 LinearLayout create(Context context, LinearLayout convertView, LayoutInflater inflater);
306 public LinearLayout create(Context context, LinearLayout convertView, LayoutInflater inflater) {
309 inflater.inflate(R.layout.global_actions_item, null));
358 LayoutInflater inflater) {
361 inflater.inflate(R
  /packages/apps/Contacts/src/com/android/contacts/ui/
ContactsPreferencesActivity.java 123 final LayoutInflater inflater = getLayoutInflater(); local
125 createWithPhonesOnlyPreferenceView(inflater);
126 createSortOrderPreferenceView(inflater);
127 createDisplayOrderPreferenceView(inflater);
128 createDisplayGroupHeader(inflater);
141 private void createWithPhonesOnlyPreferenceView(LayoutInflater inflater) {
143 mHeaderPhones = inflater.inflate(R.layout.display_options_phones_only, mList, false);
156 private void createSortOrderPreferenceView(LayoutInflater inflater) {
157 mSortOrderView = inflater.inflate(R.layout.preference_with_more_button, mList, false);
167 private void createDisplayOrderPreferenceView(LayoutInflater inflater) {
    [all...]

Completed in 336 milliseconds

1 2 3 4 5 6