Searched defs:stack (Results 1 - 25 of 38) sorted by relevance

12

/frameworks/volley/src/com/android/volley/toolbox/
H A DVolley.java39 * @param stack An {@link HttpStack} to use for the network, or null for default.
42 public static RequestQueue newRequestQueue(Context context, HttpStack stack) { argument
53 if (stack == null) {
55 stack = new HurlStack();
59 stack = new HttpClientStack(AndroidHttpClient.newInstance(userAgent));
63 Network network = new BasicNetwork(stack);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DPiecewiseLinearIndentationFunctor.java17 package com.android.systemui.statusbar.stack;
22 * A Functor which interpolates the stack distance linearly based on base values.
35 * @param peekSize The visual appearance of this is how far the cards in the stack peek
39 * achieved when the next card just starts transitioning into the stack and
40 * the stack is full.
89 // We directly start at the stack, so no initial interpolation.
H A DStackIndentationFunctor.java17 package com.android.systemui.statusbar.stack;
34 * @param peekSize The visual appearance of this is how far the cards in the stack peek
38 * achieved when the next card just starts transitioning into the stack and
39 * the stack is full.
80 * @param itemsBefore how many items are already in the stack before this element
H A DAnimationFilter.java17 package com.android.systemui.statusbar.stack;
H A DAmbientState.java17 package com.android.systemui.statusbar.stack;
H A DStackScrollState.java17 package com.android.systemui.statusbar.stack;
34 * A state of a {@link com.android.systemui.statusbar.stack.NotificationStackScrollLayout} which
H A DStackScrollAlgorithm.java17 package com.android.systemui.statusbar.stack;
32 * The Algorithm of the {@link com.android.systemui.statusbar.stack
34 * .stack.StackScrollState}
342 // The starting position of the bottom stack peek
345 // The position where the bottom stack starts.
351 // How far in is the element currently transitioning into the bottom stack.
370 // stack start.
386 // check if we are overlapping with the bottom stack
400 // We are in the bottom stack.
403 // bottom of the screen so we are fully in the bottom stack
[all...]
H A DStackStateAnimator.java17 package com.android.systemui.statusbar.stack;
38 * An stack state animator which handles animations to new StackScrollStates
/frameworks/base/services/core/java/com/android/server/wm/
H A DTask.java31 Task(AppWindowToken wtoken, TaskStack stack, int userId) { argument
34 mStack = stack;
H A DFocusedStackFrame.java134 public void setBounds(TaskStack stack) { argument
135 stack.getBounds(mBounds);
H A DDimLayer.java65 /** Owning stack */
68 DimLayer(WindowManagerService service, TaskStack stack, DisplayContent displayContent) { argument
69 mStack = stack;
H A DDisplayContent.java45 /** Unique identifier of this stack. */
84 * is stored in display order with the current bottom stack at 0. */
91 /** Detect user tapping outside of current focused stack bounds .*/
94 /** Detect user tapping outside of current focused stack bounds .*/
152 * Retrieve the tasks on this display in stack order from the bottommost TaskStack up.
193 void attachStack(TaskStack stack) { argument
194 if (stack.mStackId == HOME_STACK_ID) {
198 mHomeStack = stack;
200 mStacks.add(stack);
204 void moveStack(TaskStack stack, boolea argument
209 detachStack(TaskStack stack) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DSpaceNode.java46 /** Sets the current stack for this space node */
47 public void setStack(TaskStack stack) { argument
48 mStack = stack;
51 /** Returns the task stack (not null if this is a leaf) */
H A DTaskStack.java34 * An interface for a task filter to query whether a particular task should show in a stack.
158 * The task stack contains a list of multiple tasks.
162 /** Task stack callbacks */
164 /* Notifies when a task has been added to the stack */
165 public void onStackTaskAdded(TaskStack stack, Task t); argument
166 /* Notifies when a task has been removed from the stack */
167 public void onStackTaskRemoved(TaskStack stack, Task removedTask, Task newFrontMostTask); argument
168 /** Notifies when the stack was filtered */
170 /** Notifies when the stack was un-filtered */
174 /** A pair of indices representing the group and task positions in the stack an
[all...]
/frameworks/base/core/java/android/util/
H A DJsonWriter.java125 private final List<JsonScope> stack = new ArrayList<JsonScope>(); field in class:JsonWriter
127 stack.add(JsonScope.EMPTY_DOCUMENT);
240 stack.add(empty);
253 throw new IllegalStateException("Nesting problem: " + stack);
256 stack.remove(stack.size() - 1);
265 * Returns the value on the top of the stack.
268 return stack.get(stack.size() - 1);
272 * Replace the value on the top of the stack wit
[all...]
H A DJsonReader.java205 private final List<JsonScope> stack = new ArrayList<JsonScope>(); field in class:JsonReader
536 stack.clear();
537 stack.add(JsonScope.CLOSED);
567 return stack.get(stack.size() - 1);
571 return stack.remove(stack.size() - 1);
575 stack.add(newTop);
579 * Replace the value on the top of the stack with the given value.
582 stack
[all...]
/frameworks/base/tools/aapt/
H A DXMLNode.h152 Vector<sp<XMLNode> > stack; member in struct:XMLNode::ParseState
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DRecentsView.java101 // Make a list of the stack view children only
111 // Remove all/extra stack views
121 // Update the stack views that we are keeping
124 // If onRecentsHidden is not triggered, we need to the stack view again here
129 // Add remaining/recreate stack views
132 TaskStack stack = stacks.get(i);
133 TaskStackView stackView = new TaskStackView(getContext(), stack);
153 /** Launches the focused task from the first stack if possible */
155 // Get the first stack view
161 TaskStack stack
404 onTaskViewClicked(final TaskStackView stackView, final TaskView tv, final TaskStack stack, final Task task, final boolean lockToTask) argument
[all...]
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DDelegateMethodAdapter.java213 // Push this.getField("this$0") on the call stack.
243 // we pushed on the call stack. The return type remains unchanged.
384 public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack) { argument
386 mOrgWriter.visitFrame(type, nLocal, local, nStack, stack);
H A DStubMethodAdapter.java153 /* Pops the stack, depending on the return type.
259 // Pop the last word from the stack since invoke will generate its own return.
299 public void visitFrame(int type, int nLocal, Object[] local, int nStack, Object[] stack) { argument
301 mParentVisitor.visitFrame(type, nLocal, local, nStack, stack);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/
H A DAlternateRecentsComponent.java105 // Debounce any task stack changes
190 // Register the task stack listener
335 TaskStack stack = plan.getTaskStack();
338 if (stack.getTaskCount() == 0) return;
343 // Return early if the running task is in the home stack (optimization)
347 ArrayList<Task> tasks = stack.getTasks();
369 toTask = stack.findTaskWithId(toTaskKey.id);
422 // Don't reuse task stack views if the configuration changes
438 // Reload the widget id before we get the task stack bounds
450 TaskStack stack
550 getThumbnailTransitionActivityOptions(ActivityManager.RunningTaskInfo topTask, TaskStack stack, TaskStackView stackView) argument
583 getThumbnailTransitionTransform(TaskStack stack, TaskStackView stackView, int runningTaskId, Task runningTaskOut) argument
[all...]
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DGraphReader.java42 public void execute(CommandStack stack); argument
88 public void execute(CommandStack stack) { argument
90 stack.getFactory().addPackage(mPackageName);
105 public void execute(CommandStack stack) { argument
120 public void execute(CommandStack stack) { argument
123 filter = stack.getFactory().createFilterByClassName(mClassName,
125 stack.getContext());
129 stack.getBuilder().addFilter(filter);
143 public void execute(CommandStack stack) { argument
144 stack
158 execute(CommandStack stack) argument
173 execute(CommandStack stack) argument
190 execute(CommandStack stack) argument
217 execute(CommandStack stack) argument
[all...]
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.cpp353 void DisplayDevice::setLayerStack(uint32_t stack) { argument
354 mLayerStack = stack;
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DPduComposer.java101 * Message compose buffer stack.
1042 private int currentStackSize; // Current stack size
1062 private LengthRecordNode stack = null; field in class:PduComposer.BufferStack
1068 * Create a new message buffer and push it into the stack.
1083 temp.next = stack;
1084 stack = temp;
1093 * Pop the message before and record current message in the stack.
1099 mMessage = stack.currentMessage;
1100 mPosition = stack.currentPosition;
1102 toCopy = stack;
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DDocumentsActivity.java173 mToolbarStack = (Spinner) findViewById(R.id.stack);
299 // Restore last stack for calling package
308 DurableUtils.readFromArray(rawStack, mState.stack);
318 // Update the restored stack to ensure we have freshest data
321 mState.stack.updateRoot(matchingRoots);
322 mState.stack.updateDocuments(getContentResolver());
324 Log.w(TAG, "Failed to restore stack: " + e);
325 mState.stack.reset();
338 // Show drawer when no stack restored, but only when requesting
443 if (mState.stack
898 onStackPicked(DocumentStack stack) argument
1214 public DocumentStack stack = new DocumentStack(); field in class:DocumentsActivity.State
[all...]

Completed in 404 milliseconds

12