Searched refs:inflater (Results 1 - 25 of 51) sorted by relevance

123

/external/okhttp/okio/okio/src/main/java/okio/
H A DInflaterSource.java29 private final Inflater inflater; field in class:InflaterSource
32 * When we call Inflater.setInput(), the inflater keeps our byte array until
33 * it needs input again. This tracks how many bytes the inflater is currently
39 public InflaterSource(Source source, Inflater inflater) { argument
40 this(Okio.buffer(source), inflater);
45 * In general we can't share a BufferedSource because the inflater holds input
48 InflaterSource(BufferedSource source, Inflater inflater) { argument
50 if (inflater == null) throw new IllegalArgumentException("inflater == null");
52 this.inflater
[all...]
H A DGzipSource.java48 /** The inflater used to decompress the deflated body. */
49 private final Inflater inflater; field in class:GzipSource
52 * The inflater source takes care of moving data between compressed source and
62 this.inflater = new Inflater(true);
64 this.inflaterSource = new InflaterSource(this.source, inflater);
174 checkEqual("ISIZE", source.readIntLe(), inflater.getTotalOut());
/external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
H A DDeflateUncompressor.java51 private Inflater inflater = null; field in class:DeflateUncompressor
113 release(); // Cannot re-use the inflater any more.
141 * @return the inflater
144 Inflater result = inflater;
148 inflater = result;
160 if (inflater != null) {
161 inflater.end();
162 inflater = null;
/external/replicaisland/src/com/replica/replicaisland/
H A DCustomToastSystem.java33 LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
34 mView = inflater.inflate(R.layout.custom_toast, null);
/external/dagger2/examples/android-activity-graphs/src/main/java/com/example/dagger/activitygraphs/ui/
H A DHomeFragment.java36 @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
H A DNameValueBlockReader.java51 // Limit the inflater input stream to only those bytes in the Name/Value
52 // block. We cut the inflater off at its source because we can't predict the
64 // Subclass inflater to install a dictionary when it's needed.
65 Inflater inflater = new Inflater() {
77 this.inflaterSource = new InflaterSource(throttleSource, inflater);
106 // Move any outstanding unread bytes into the inflater. One side-effect of
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
H A DTestFragment.java50 public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { argument
52 onCreateViewInflater = inflater;
H A DDialogFragmentTest.java194 public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { argument
196 return inflater.inflate(R.layout.main, null);
/external/libgdx/tests/gdx-tests-android/src/com/badlogic/gdx/tests/android/
H A DFragmentTestStarter.java87 public View onCreateView (LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { argument
88 View view = super.onCreateView(inflater, container, savedInstanceState);
134 public View onCreateView (LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { argument
/external/deqp/framework/common/
H A DtcuTestHierarchyUtil.cpp127 DefaultHierarchyInflater inflater (testCtx);
128 TestHierarchyIterator iter (root, inflater, cmdLine);
183 DefaultHierarchyInflater inflater (testCtx);
184 TestHierarchyIterator iter (root, inflater, cmdLine);
H A DtcuTestHierarchyIterator.cpp89 TestHierarchyInflater& inflater,
91 : m_inflater (inflater)
88 TestHierarchyIterator(TestPackageRoot& rootNode, TestHierarchyInflater& inflater, const CommandLine& cmdLine) argument
H A DtcuTestHierarchyIterator.hpp39 * \brief Test hierarchy inflater
102 * inflater is called to construct the list of child nodes for that group.
103 * Upon exiting a group node, before STATE_LEAVE_NODE is called, inflater
110 TestHierarchyIterator (TestPackageRoot& rootNode, TestHierarchyInflater& inflater, const CommandLine& cmdLine);
H A DtcuApp.cpp52 DefaultHierarchyInflater inflater (testCtx);
53 TestHierarchyIterator iter (root, inflater, cmdLine);
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/
H A DApiPrompt.java98 LayoutInflater inflater =
101 inflater.inflate(R.layout.api_prompt_item, parent, false /* do not attach to root */);
H A DInterpreterPicker.java128 LayoutInflater inflater =
130 container = (LinearLayout) inflater.inflate(R.layout.list_item, null);
H A DScriptProcessMonitor.java232 LayoutInflater inflater =
234 itemView = inflater.inflate(R.layout.script_monitor_list_item, parent, false);
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/widget/
H A DDurationPicker.java51 LayoutInflater inflater =
53 inflater.inflate(R.layout.duration_picker, this, true);
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
H A DCallFragment.java51 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
54 inflater.inflate(R.layout.fragment_call, container, false);
H A DHudFragment.java44 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
46 controlView = inflater.inflate(R.layout.fragment_hud, container, false);
/external/okhttp/okio/okio/src/test/java/okio/
H A DDeflaterSinkTest.java136 Inflater inflater = new Inflater();
137 InputStream inflatedIn = new InflaterInputStream(deflatedIn, inflater);
140 while (!inflater.needsInput() || deflated.size() > 0 || deflatedIn.available() > 0) {
/external/libmicrohttpd/src/testspdy/
H A Dtest_notls.c108 /* The gzip stream inflater for the compressed response. */
109 spdylay_gzip *inflater; member in struct:Request
184 if(req->inflater) {
187 rv = spdylay_gzip_inflate_new(&req->inflater);
411 if(req->inflater) {
417 rv = spdylay_gzip_inflate(req->inflater, out, &outlen, data, &tlen);
591 req->inflater = NULL;
599 spdylay_gzip_inflate_del(req->inflater);
H A Dtest_new_connection.c129 /* The gzip stream inflater for the compressed response. */
130 spdylay_gzip *inflater; member in struct:Request
205 if(req->inflater) {
208 rv = spdylay_gzip_inflate_new(&req->inflater);
413 if(req->inflater) {
419 rv = spdylay_gzip_inflate(req->inflater, out, &outlen, data, &tlen);
639 req->inflater = NULL;
647 spdylay_gzip_inflate_del(req->inflater);
H A Dtest_request_response.c111 /* The gzip stream inflater for the compressed response. */
112 spdylay_gzip *inflater; member in struct:Request
187 if(req->inflater) {
190 rv = spdylay_gzip_inflate_new(&req->inflater);
396 if(req->inflater) {
402 rv = spdylay_gzip_inflate(req->inflater, out, &outlen, data, &tlen);
627 req->inflater = NULL;
635 spdylay_gzip_inflate_del(req->inflater);
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ui/
H A DFullScreenTask.java194 ViewInflater inflater = new ViewInflater();
199 view = inflater.inflate(getActivity(), xml);
201 mInflater = inflater;
/external/deqp/external/vulkancts/modules/vulkan/
H A DvktBuildPrograms.cpp183 tcu::DefaultHierarchyInflater inflater (testCtx);
184 tcu::TestHierarchyIterator iterator (*root, inflater, testCtx.getCommandLine());

Completed in 1645 milliseconds

123