Searched defs:stack (Results 1 - 25 of 38) sorted by last modified time

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/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/opt/net/wifi/service/java/com/android/server/wifi/
H A DWifiConfigStore.java3813 protected void loge(String s, boolean stack) { argument
3814 if (stack) {
3815 Log.e(TAG, s + " stack:" + Thread.currentThread().getStackTrace()[2].getMethodName()
/frameworks/native/opengl/libagl/
H A Dcontext.h454 matrixf_t *stack; member in struct:android::gl::matrix_stack_t
468 matrixf_t& top() { return stack[depth]; }
469 const matrixf_t& top() const { return stack[depth]; }
H A Dmatrix.cpp127 // Validate the projection stack (in fact, it's never needed)
152 // Validate the texture stack
387 stack = new matrixf_t[depth];
396 delete [] stack;
402 stack[depth].loadIdentity();
409 stack[depth].load(rhs);
415 stack[depth].load(rhs);
421 stack[depth].multiply(rhs);
427 stack[depth].translate(x,y,z);
433 stack[dept
912 matrix_stack_t* stack = 0; local
[all...]
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.cpp353 void DisplayDevice::setLayerStack(uint32_t stack) { argument
354 mLayerStack = stack;
/frameworks/compile/mclinker/lib/Target/
H A DGNULDBackend.cpp377 // .stack
378 FragmentRef* stack = NULL; local
380 stack = FragmentRef::Create(
385 stack = FragmentRef::Null();
396 stack, // FragRef
2130 /// setupGNUStackInfo - setup the section flag of .note.GNU-stack in output
2141 // 2. check the stack info from the input objects
2142 // FIXME: since we alway emit .note.GNU-stack in output now, we may be able
2143 // to check this from the output .note.GNU-stack directly after section
2149 const LDSection* sect = (*obj)->context()->getSection(".note.GNU-stack");
[all...]
/frameworks/base/tools/aapt/
H A DXMLNode.h152 Vector<sp<XMLNode> > stack; member in struct:XMLNode::ParseState
/frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
H A DAsmAnalyzer.java658 public void visitFrame(int type, int local, Object[] local2, int stack, Object[] stack2) { argument
687 // instruction to load a constant from the stack
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 DDependencyFinder.java535 public void visitFrame(int type, int local, Object[] local2, int stack, Object[] stack2) { argument
564 // instruction to load a constant from the 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/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...]
/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/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/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...]
H A DTaskStackView.java46 /* The visual representation of a task stack view */
53 public void onTaskViewClicked(TaskStackView stackView, TaskView tv, TaskStack stack, Task t, argument
103 public TaskStackView(Context context, TaskStack stack) { argument
105 // Set the stack first
106 setStack(stack);
133 /** Sets the task stack */
134 void setStack(TaskStack stack) { argument
135 // Set the new stack
136 mStack = stack;
140 // Layout again with the new stack
598 updateMinMaxScrollForStack(TaskStack stack, boolean launchedWithAltTab, boolean launchedFromHome) argument
853 onStackTaskAdded(TaskStack stack, Task t) argument
858 onStackTaskRemoved(TaskStack stack, Task removedTask, Task newFrontMostTask) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DAmbientState.java17 package com.android.systemui.statusbar.stack;
H A DAnimationFilter.java17 package com.android.systemui.statusbar.stack;
H A DNotificationStackScrollLayout.java17 package com.android.systemui.statusbar.stack;
49 import com.android.systemui.statusbar.stack.StackScrollState.ViewState;
55 * A layout which handles a dynamic amount of notifications and presents them in a scrollable stack.
78 * mCurrentStackHeight is the actual stack height, mLastSetStackHeight is the stack height set
403 * last child is not in the bottom stack.
410 * Updates the children views according to the stack scroll algorithm. Call this whenever
461 * Update the height of the stack to a new height.
463 * @param height the new height of the stack
478 // so we translate the stack upward
[all...]
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 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 DStackScrollState.java17 package com.android.systemui.statusbar.stack;
34 * A state of a {@link com.android.systemui.statusbar.stack.NotificationStackScrollLayout} which

Completed in 5208 milliseconds

12