/frameworks/support/v4/java/android/support/v4/app/ |
FragmentTransaction.java | 111 * when it is put on the back stack: the fragment is removed from 154 /** Fragment is being added onto the stack */ 156 /** Fragment is being removed from the stack */ 165 * played when popping the back stack. 173 * operations specifically when popping the back stack. 192 * Add this transaction to the back stack. This means that the transaction 194 * when later popped off the stack. 196 * @param name An optional name for this back stack state, or null. 202 * stack. If this method would return false, {@link #addToBackStack(String)} 218 * is on the back stack [all...] |
/libcore/luni/src/main/java/java/lang/ |
StringIndexOutOfBoundsException.java | 30 * the current stack trace. 37 * stack trace and a detail message that is based on the specified invalid 49 * stack trace and the specified detail message.
|
/packages/apps/Email/src/com/android/email/service/ |
PolicyService.java | 43 // ultimately handled, the complete stack trace is losk 60 // ultimately handled, the complete stack trace is losk 72 // ultimately handled, the complete stack trace is losk
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/data/ |
FilterStackDBHelper.java | 34 /** The stack name */ 36 /** A serialized stack of filters. */ 37 public static final String FILTER_STACK= "stack";
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
elf-fdpic.h | 45 unsigned long stack_size; /* stack size requested (PT_GNU_STACK) */ 55 #define ELF_FDPIC_FLAG_EXEC_STACK 0x00000010 /* T if stack to be executable */ 56 #define ELF_FDPIC_FLAG_NOEXEC_STACK 0x00000020 /* T if stack not to be executable */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
elf-fdpic.h | 45 unsigned long stack_size; /* stack size requested (PT_GNU_STACK) */ 55 #define ELF_FDPIC_FLAG_EXEC_STACK 0x00000010 /* T if stack to be executable */ 56 #define ELF_FDPIC_FLAG_NOEXEC_STACK 0x00000020 /* T if stack not to be executable */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
elf-fdpic.h | 45 unsigned long stack_size; /* stack size requested (PT_GNU_STACK) */ 55 #define ELF_FDPIC_FLAG_EXEC_STACK 0x00000010 /* T if stack to be executable */ 56 #define ELF_FDPIC_FLAG_NOEXEC_STACK 0x00000020 /* T if stack not to be executable */
|
/prebuilts/tools/common/proguard/proguard4.7/examples/ |
applets.pro | 14 # Save the obfuscation mapping to a file, so you can de-obfuscate any stack 16 # tables to get line numbers in the stack traces. 17 # You can comment this out if you're not interested in stack traces.
|
applications.pro | 18 # Save the obfuscation mapping to a file, so you can de-obfuscate any stack 20 # tables to get line numbers in the stack traces. 21 # You can comment this out if you're not interested in stack traces.
|
library.pro | 16 # Save the obfuscation mapping to a file, so we can de-obfuscate any stack 18 # tables to get line numbers in the stack traces. 19 # You can comment this out if you're not interested in stack traces.
|
servlets.pro | 15 # Save the obfuscation mapping to a file, so you can de-obfuscate any stack 17 # tables to get line numbers in the stack traces. 18 # You can comment this out if you're not interested in stack traces.
|
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/api/ |
armCOMM_s.h | 19 REQUIRE8 ;// Requires 8-byte stack alignment 20 PRESERVE8 ;// Preserves 8-byte stack alignment 36 GBLA _RBytes ;// Number of register bytes on stack 37 GBLA _SBytes ;// Number of scratch bytes on stack 38 GBLA _ABytes ;// Stack offset of next argument 39 GBLA _Workspace ;// Stack offset of scratch workspace 300 ;// Macros to allocate space on the stack 302 ;// These all assume that the stack is 8-byte aligned 429 ;// as a stack offset 513 ;// Load unsigned byte from stack [all...] |
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/api/ |
armCOMM_s.h | 19 REQUIRE8 ;// Requires 8-byte stack alignment 20 PRESERVE8 ;// Preserves 8-byte stack alignment 36 GBLA _RBytes ;// Number of register bytes on stack 37 GBLA _SBytes ;// Number of scratch bytes on stack 38 GBLA _ABytes ;// Stack offset of next argument 39 GBLA _Workspace ;// Stack offset of scratch workspace 303 ;// Macros to allocate space on the stack 305 ;// These all assume that the stack is 8-byte aligned 432 ;// as a stack offset 516 ;// Load unsigned byte from stack [all...] |
/art/runtime/ |
instrumentation.cc | 166 // Create method enter events for all methods current on the thread's stack. 248 std::deque<instrumentation::InstrumentationStackFrame>* stack = thread->GetInstrumentationStack(); local 249 if (stack->size() > 0) { 254 CHECK_EQ(visitor.frames_removed_, stack->size()); 255 while (stack->size() > 0) { 256 stack->pop_front(); 486 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack(); local 492 stack->push_front(instrumentation_frame); 500 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack(); local 501 CHECK_GT(stack->size(), 0U) 554 std::deque<instrumentation::InstrumentationStackFrame>* stack = self->GetInstrumentationStack(); local [all...] |
/cts/libs/json/src/com/android/json/stream/ |
JsonWriter.java | 125 private final List<JsonScope> stack = new ArrayList<JsonScope>(); field in class:JsonWriter 127 stack.add(JsonScope.EMPTY_DOCUMENT); 215 stack.add(empty); 228 throw new IllegalStateException("Nesting problem: " + stack); 231 stack.remove(stack.size() - 1); 240 * Returns the value on the top of the stack. 243 return stack.get(stack.size() - 1); 247 * Replace the value on the top of the stack with the given value [all...] |
/external/bluetooth/bluedroid/main/ |
bte_main.c | 23 * Description: Contains BTE core stack initialization and shutdown code 54 /* Stack preload process timeout period */ 59 /* Stack preload process maximum retry attempts */ 116 /* bluetooth protocol stack (BTU) task */ 147 ** Description BTE MAIN API - Entry point for BTE chip/stack initialization 171 ** Description BTE MAIN API - Shutdown code for BTE chip/stack 186 ** part of the Bluetooth stack enable sequence 214 ** part of the Bluetooth stack disable sequence 298 a previous stack shutdown wasn't completed gracefully */ 421 ** Description BTE MAIN API - Stack postload configuratio [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
itspoof.cpp | 145 // A long "identifier" that will overflow implementation stack buffers, forcing heap allocations. 146 CHECK_SKELETON(SL, " A 1ong \\u02b9identifier' that will overflow implementation stack buffers, forcing heap allocations." 147 " A 1ong 'identifier' that will overflow implementation stack buffers, forcing heap allocations." 148 " A 1ong 'identifier' that will overflow implementation stack buffers, forcing heap allocations." 149 " A 1ong 'identifier' that will overflow implementation stack buffers, forcing heap allocations.", 151 " A long 'identifier' that vvill overflovv irnplernentation stack buffers, forcing heap allocations." 152 " A long 'identifier' that vvill overflovv irnplernentation stack buffers, forcing heap allocations." 153 " A long 'identifier' that vvill overflovv irnplernentation stack buffers, forcing heap allocations." 154 " A long 'identifier' that vvill overflovv irnplernentation stack buffers, forcing heap allocations.") 232 UnicodeString s1("A long string that will overflow stack buffers. A long string that will overflow stack buffers. [all...] |
/external/chromium_org/v8/src/mips/ |
simulator-mips.h | 67 // The stack limit beyond which we will throw stack overflow errors in 68 // generated code. Because generated code on mips uses the C stack, we 69 // just use the C stack limit. 86 // Calculated the stack limit beyond which we will throw stack overflow errors. 88 // the address of "this" to get a value on the current execution stack and then 89 // calculates the stack limit based on that value. 91 // running thread has its stack in all memory up to address 0x00000000. 206 // Accessor to the internal simulator stack area [all...] |
/external/clang/test/CodeGen/ |
aarch64-varargs.c | 29 // CHECK: [[STACK:%[a-z_0-9]+]] = load i8** getelementptr inbounds (%struct.__va_list* @the_list, i32 0, i32 0) 30 // CHECK: [[NEW_STACK:%[a-z_0-9]+]] = getelementptr i8* [[STACK]], i32 8 32 // CHECK: [[FROMSTACK_ADDR:%[a-z_0-9]+]] = bitcast i8* [[STACK]] to i32* 63 // CHECK: [[STACK:%[a-z_0-9]+]] = load i8** getelementptr inbounds (%struct.__va_list* @the_list, i32 0, i32 0) 64 // CHECK: [[STACKINT:%[a-z_0-9]+]] = ptrtoint i8* [[STACK]] to i64 104 // CHECK: [[STACK:%[a-z_0-9]+]] = load i8** getelementptr inbounds (%struct.__va_list* @the_list, i32 0, i32 0) 106 // CHECK: [[NEW_STACK:%[a-z_0-9]+]] = getelementptr i8* [[STACK]], i32 8 108 // CHECK: [[FROMSTACK_ADDR:%[a-z_0-9]+]] = bitcast i8* [[STACK]] to %struct.bigstruct** 141 // CHECK: [[STACK:%[a-z_0-9]+]] = load i8** getelementptr inbounds (%struct.__va_list* @the_list, i32 0, i32 0) 142 // CHECK: [[NEW_STACK:%[a-z_0-9]+]] = getelementptr i8* [[STACK]], i32 [all...] |
/external/llvm/lib/CodeGen/ |
LocalStackSlotAllocation.cpp | 1 //===- LocalStackSlotAllocation.cpp - Pre-allocate locals to stack slots --===// 10 // This pass assigns local frame indices to stack slots relative to one another 12 // estimates they are likely to be out of range of stack pointer and frame 85 "Local Stack Slot Allocation", false, false) 109 // without a hole at the start since it knows the alignment of the stack 116 /// AdjustStackOffset - Helper function used to adjust the stack frame offset. 121 // If the stack grows down, add the object size to find the lowest address. 127 // If the alignment of this object is greater than that of the stack, then 128 // increase the stack alignment to match. 149 /// abstract stack objects [all...] |
/external/opencv/cvaux/src/ |
cvsegment.cpp | 58 #define PUSH(Y,IL,IR,IPL,IPR,FL) { stack[StIn].y=(ushort)(Y); \ 59 stack[StIn].l=(ushort)(IL); \ 60 stack[StIn].r=(ushort)(IR); \ 61 stack[StIn].Prevl=(ushort)(IPL); \ 62 stack[StIn].Prevr=(ushort)(IPR); \ 63 stack[StIn].fl=(short)(FL); \ 67 Y=stack[StIn].y; \ 68 IL=stack[StIn].l; \ 69 IR=stack[StIn].r;\ 70 IPL=stack[StIn].Prevl; 94 Seg *stack = (Seg*)pStack; local 486 void* stack = 0; local [all...] |
/external/v8/src/mips/ |
simulator-mips.h | 67 // The stack limit beyond which we will throw stack overflow errors in 68 // generated code. Because generated code on mips uses the C stack, we 69 // just use the C stack limit. 86 // Calculated the stack limit beyond which we will throw stack overflow errors. 88 // the address of "this" to get a value on the current execution stack and then 89 // calculates the stack limit based on that value. 91 // running thread has its stack in all memory up to address 0x00000000. 204 // Accessor to the internal simulator stack area [all...] |
/external/valgrind/main/memcheck/tests/ |
xml1.stderr.exp | 36 <stack> 69 </stack> 71 <stack> 112 </stack> 120 <stack> 153 </stack> 161 <stack> 194 </stack> 202 <stack> 243 </stack> [all...] |
xml1.stderr.exp-s390x-mvc | 36 <stack> 69 </stack> 71 <stack> 112 </stack> 120 <stack> 153 </stack> 161 <stack> 194 </stack> 202 <stack> 243 </stack> [all...] |
/frameworks/base/core/java/android/util/ |
JsonWriter.java | 125 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 with the given value [all...] |