HomeSort by relevance Sort by last modified time
    Searched refs:stack (Results 551 - 575 of 3511) sorted by null

<<21222324252627282930>>

  /external/v8/test/mjsunit/
regress-crbug-528379.js 8 assertThrows(function() { new Error().stack[0].getMethodName.call({}); });
stack-traces-2.js 28 // Flags: --builtins-in-stack-traces
37 // stack trace.
44 assertTrue(e.stack.indexOf(nativeFuncName) >= 0, nativeFuncName);
49 // stack trace.
56 assertTrue(e.stack.indexOf(nativeFuncName) >= 0, nativeFuncName);
66 assertTrue(e.stack.indexOf(included) >= 0, included);
78 // builtin. Should not be omitted with the --builtins-in-stack-traces flag.
  /external/valgrind/drd/tests/
fp_race_xml.stderr.exp 41 <stack>
50 </stack>
64 <stack>
73 </stack>
  /external/valgrind/memcheck/tests/darwin/
deep_badparam.stderr.exp 10 Address 0x........ is on thread 1's stack
  /external/valgrind/memcheck/tests/solaris/
scalar_zone_defunct.stderr.exp 15 Address 0x........ is not stack'd, malloc'd or (recently) free'd
28 Address 0x........ is not stack'd, malloc'd or (recently) free'd
50 Address 0x........ is not stack'd, malloc'd or (recently) free'd
54 Address 0x........ is not stack'd, malloc'd or (recently) free'd
  /external/valgrind/memcheck/tests/
writev1.stderr.exp 5 Address 0x........ is not stack'd, malloc'd or (recently) free'd
  /frameworks/base/packages/DocumentsUI/tests/src/com/android/documentsui/services/
CopyJobTest.java 82 CopyJob createJob(List<DocumentInfo> srcs, DocumentInfo srcParent, DocumentStack stack)
85 mContext, mContext, mJobListener, FileOperations.createJobId(), stack, srcs);
TestJob.java 35 int operationType, String id, DocumentStack stack) {
36 super(service, appContext, listener, operationType, id, stack);
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/
HtmlTreeBuilder.java 38 /** Stack contains HTML4.Element objects to keep track of unclosed tags */
39 private final List<HTML.Element> stack = new ArrayList<HTML.Element>(); field in class:HtmlTreeBuilder
59 while (stack.size() > 0) {
103 while (pos < stack.size() - 1) {
128 /** Finds the start tag from the stack, returns -1 if not found */
130 for (int i = stack.size() - 1; i >= 0; i--) {
131 HTML.Element e = stack.get(i);
140 * Adds a close tag corresponding to a tag on the stack, if
151 /** Pushes a tag onto the stack */
153 stack.add(element)
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/cfi/
cfi-i386.s 4 #; - function with a space on the stack
82 #; touch the stack at all.
cfi-m68k.s 6 #; - function with a space on the stack
59 #; touch the stack at all.
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/m68hc11/
insns.s 7 lds #stack+1024
63 stack: label
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
elf.exp 146 {"stack exec" "-z execstack" "" "" {stack.s}
147 {{readelf {-Wl} stack-exec.rd}} "stack-exec.exe"}
148 {"stack size" "-z stack-size=0x123400" "" "" {stack.s}
149 {{readelf {-Wl} stack-size.rd}} "stack-size.exe"}
orphan-region.d 2 #ld: -T orphan-region.ld -N -z stack-size=0
  /external/v8/test/webkit/fast/js/
stack-overflow-arrity-catch.js 24 description('Test that if an arrity check causes a stack overflow, the exception goes to the right catch');
40 // Should get here because of stack overflow,
41 // now cause a stack overflow exception due to arrity processing
45 // (1) It is dendent on the stack size if we arrive here, in (2) or
63 // (2) It is dendent on the stack size if we arrive here, in (1) or
71 // Should get here because of stack overflow,
72 // now cause a stack overflow exception due to arrity processing
  /external/valgrind/coregrind/m_aspacemgr/
aspacemgr-common.c 423 Protect the stack active area and the guard areas appropriately.
425 stack. On success, also sets *initial_sp to what the stack pointer
432 VgStack* stack; local
436 /* Allocate the stack. */
444 stack = (VgStack*)(Addr)sr_Res(sres);
447 aspacem_assert(VG_IS_PAGE_ALIGNED(stack));
451 (Addr) &stack[0],
456 (Addr) &stack->bytes[0],
461 (Addr) &stack->bytes[VG_STACK_GUARD_SZB + VG_(clo_valgrind_stacksize)],
    [all...]
  /external/compiler-rt/lib/asan/
asan_debugging.cc 29 descr->region_kind = "stack";
89 StackTrace stack(nullptr, 0);
92 stack = chunk.GetAllocStack();
96 stack = chunk.GetFreeStack();
101 size = Min(size, Min(stack.size, kStackTraceMax));
103 trace[i] = StackTrace::GetPreviousInstructionPc(stack.trace[i]);
  /external/libpcap/msdos/
ndis_0.asm 76 call _NdisAllocStack ;; Get and install a stack.
78 mov bx,ss ;; Save off the old stack in other regs
82 push bx ;; Save the old one on to the new stack
84 sub sp,&argsSize ;; Allocate space for arguments on the stack
93 mov cx,&argsSize ;; Move the arguments to the stack.
102 pop di ;; Pop off the old stack
104 mov bx,ss ;; Save off the current allocated stack.
106 mov ss,si ;; Restore the old stack
109 push bx ;; Free the stack. Push the pointer to it
114 add di,32 ;; Get a pointer to ax on the stack
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i965/
brw_eu.c 157 assert(p->current != &p->stack[BRW_EU_MAX_INSN_STACK-1]);
159 p->compressed_stack[p->current - p->stack] = p->compressed;
165 assert(p->current != p->stack);
167 p->compressed = p->compressed_stack[p->current - p->stack];
185 p->current = p->stack;
198 /* Set up control flow stack */
  /external/opencv3/modules/cudalegacy/perf/
perf_labeling.cpp 83 : image(img), _labels(image.size(), CV_32SC1, cv::Scalar::all(-1)) {stack = new dot[image.cols * image.rows];}
85 ~GreedyLabeling(){delete[] stack;}
105 dot* top = stack;
111 while (top >= stack)
141 dot* stack; member in struct:GreedyLabeling
  /external/protobuf/gtest/test/
gtest_xml_output_unittest.py 65 Expected: 1%(stack)s]]></failure>
73 Expected: 1%(stack)s]]></failure>
76 Expected: 2%(stack)s]]></failure>
84 XML output: <?xml encoding="utf-8"><top><![CDATA[cdata text]]>]]&gt;<![CDATA[</top>%(stack)s]]></failure>
91 Invalid characters in brackets []%(stack)s]]></failure>
108 </testsuites>""" % {'stack': STACK_TRACE_TEMPLATE}
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
ProfileData.java 74 public void addSample(String[] stack) {
75 int[] ids = new int[stack.length];
76 for (int i = 0; i < stack.length; i++) {
77 ids[i] = nameToId(stack[i]);
81 for (int i = stack.length - 1; i >= 0; i--) {
127 // Writes out one stack, consisting of N+2 words:
129 // second word: depth of the stack (N)
130 // N words: each word is the id of one address in the stack
  /external/llvm/test/MC/ARM/
eh-directive-setfp.s 7 @ the stack pointer. This is required for the function that will change
8 @ the stack pointer out of the function prologue. If the exception is thrown,
9 @ then libunwind will reconstruct the stack pointer from the frame pointer.
11 @ (i) the unwind opcode to copy stack offset from the other register, and
12 @ (ii) the unwind opcode to add or subtract the stack offset.
43 @ The assembler should emit 0x9B to copy stack pointer from r11.
85 @ The assembler should emit 0x9B to copy stack pointer from r11.
128 @ The assembler should emit 0x9B to copy stack pointer from r11.
171 @ The assembler should emit 0x9B to copy stack pointer from r11.
229 @ The assembler should emit 0x9B to copy stack pointer from r11
    [all...]
  /external/skia/tools/lua/
count_reduced_clipstacks.lua 20 function build_stack_string(stack)
22 for i = 1, #stack do
23 local element = stack[i];
41 local stack = canvas:getReducedClipStack()
42 local stackstr = build_stack_string(stack)
  /external/v8/test/mjsunit/harmony/
async-function-stacktrace.js 12 var stack = e.stack.split('\n').
18 assertEquals(funcs, stack, `Unexpected stack trace ${e.stack}`);

Completed in 1329 milliseconds

<<21222324252627282930>>