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

<<919293949596979899100>>

  /external/v8/test/mjsunit/
messages.js 5 // Flags: --stack-size=100 --harmony
441 }, "Maximum call stack size exceeded", RangeError);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QSContainer.java 35 import com.android.systemui.statusbar.stack.StackStateAnimator;
  /hardware/qcom/display/msm8996/sdm/include/private/
hw_info_types.h 38 // given layer stack.
414 LayerStack *stack = NULL; // Input layer stack. Set by the caller. member in struct:sdm::HWLayersInfo
416 uint32_t index[kMaxSDELayers]; // Indexes of the layers from the layer stack which need to be
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/
regex_compiler.h 71 typedef std::stack<_StateSeqT> _StackT;
  /system/core/libmemunreachable/
ThreadCapture.cpp 248 thread_info.stack = std::pair<uintptr_t, uintptr_t>(regs[sp], 0);
  /system/keymaster/
asymmetric_key.cpp 22 #include <openssl/stack.h>
  /external/ImageMagick/www/api/
image.php 126 <p>AppendImages() takes all images from the current image pointer to the end of the image list and appends them to each other top-to-bottom if the stack parameter is true, otherwise left-to-right.</p>
133 Image *AppendImages(const Image *images,const MagickBooleanType stack,
148 <dt>stack</dt>
969 <p>SmushImages() takes all images from the current image pointer to the end of the image list and smushes them to each other top-to-bottom if the stack parameter is true, otherwise left-to-right.</p>
976 Image *SmushImages(const Image *images,const MagickBooleanType stack,
991 <dt>stack</dt>
  /external/apache-xml/src/main/java/org/apache/xalan/processor/
StylesheetHandler.java 23 import java.util.Stack;
62 * a ContentHandler stack, and pushing appropriate content
219 * Utility function to see if the stack contains the given URL.
221 * @param stack non-null reference to a Stack.
224 * @return true if the stack contains the url argument.
226 private boolean stackContains(Stack stack, String url)
229 int n = stack.size();
234 String url2 = (String) stack.elementAt(i)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMDefaultBaseIterators.java 1325 final int[] stack = new int[index + 4]; local
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/internal/platform/
android_platform_backend.py 521 to tweak application network stack.
675 """Returns stack trace.
677 The stack trace consists of raw logcat dump, logcat dump with symbols,
678 and stack info from tomstone files.
689 stack = os.path.join(util.GetChromiumSrcDir(), 'third_party',
690 'android_platform', 'development', 'scripts', 'stack')
692 if os.path.exists(stack):
693 cmd = [stack]
698 ret += Decorate('Stack from Logcat', p.communicate(input=logcat)[0])
  /external/chromium-trace/catapult/third_party/coverage/coverage/ctracer/
tracer.c 228 /* A new concurrency object. Make a new data stack. */
304 self->cur_entry = self->pdata_stack->stack[self->pdata_stack->depth];
341 /* Grow the stack. */
349 /* Push the current state on the stack. */
350 self->pdata_stack->stack[self->pdata_stack->depth] = self->cur_entry;
726 self->cur_entry = self->pdata_stack->stack[self->pdata_stack->depth];
    [all...]
  /external/clang/include/clang/Basic/
SourceManager.h 235 /// that it represents and include stack information.
237 /// Each FileInfo has include stack information, indicating where it came
533 /// \brief The stack used when building modules on demand, which is used
700 /// \brief The stack of modules being built, which is used to detect
734 /// \brief Retrieve the module build stack.
739 /// \brief Set the module build stack.
740 void setModuleBuildStack(ModuleBuildStack stack) {
742 StoredModuleBuildStack.append(stack.begin(), stack.end());
745 /// \brief Push an entry to the module build stack
    [all...]
  /external/google-breakpad/src/processor/
minidump_processor.cc 184 // dump of itself (when both its context and its stack are in flux),
185 // processing that stack wouldn't provide much useful data.
214 // would not result in the expected stack trace from the time of the
222 // If the memory region for the stack cannot be read using the RVA stored
224 // a memory region (containing the stack) from the minidump memory list.
252 scoped_ptr<CallStack> stack(new CallStack());
254 if (!stackwalker->Walk(stack.get(),
267 process_state->threads_.push_back(stack.release());
    [all...]
  /external/libavc/common/arm/
ih264_inter_pred_luma_horz_hpel_vert_hpel_a9q.s 117 stmfd sp!, {r4-r12, r14} @store register values to stack
118 vstmdb sp!, {d8-d15} @push neon registers to stack
439 ldmfd sp!, {r4-r12, pc} @Restoring registers from stack
ih264_inter_pred_luma_horz_qpel_vert_hpel_a9q.s 122 stmfd sp!, {r4-r12, r14} @store register values to stack
123 vstmdb sp!, {d8-d15} @push neon registers to stack
503 ldmfd sp!, {r4-r12, pc} @Restoring registers from stack
ih264_inter_pred_luma_horz_qpel_vert_qpel_a9q.s 117 stmfd sp!, {r4-r12, r14} @store register values to stack
118 vstmdb sp!, {d8-d15} @push neon registers to stack
350 ldmfd sp!, {r4-r12, pc} @Restoring registers from stack
ih264_inter_pred_luma_vert_qpel_a9q.s 108 stmfd sp!, {r4-r12, r14} @store register values to stack
109 vstmdb sp!, {d8-d15} @push neon registers to stack
326 ldmfd sp!, {r4-r12, pc} @Restoring registers from stack
  /external/opencv3/3rdparty/jinja2/
parser.py 93 stack = list(self._end_token_stack)
95 stack.append(end_tokens)
96 return self._fail_ut_eof(None, stack, lineno)
132 # from the stack so that the unknown tag fail function can
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
WallpaperController.java 510 TaskStack stack = w.getStack(); local
511 inFreeformSpace = stack != null && stack.mStackId == FREEFORM_WORKSPACE_STACK_ID;
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_sys.py 358 # threading.py are also in the thread's call stack.
360 stack = traceback.extract_stack(frame)
361 for i, (filename, lineno, funcname, sourceline) in enumerate(stack):
365 self.fail("didn't find f123() on thread's call stack")
370 filename, lineno, funcname, sourceline = stack[i+1]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_sys.py 358 # threading.py are also in the thread's call stack.
360 stack = traceback.extract_stack(frame)
361 for i, (filename, lineno, funcname, sourceline) in enumerate(stack):
365 self.fail("didn't find f123() on thread's call stack")
370 filename, lineno, funcname, sourceline = stack[i+1]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sys.py 358 # threading.py are also in the thread's call stack.
360 stack = traceback.extract_stack(frame)
361 for i, (filename, lineno, funcname, sourceline) in enumerate(stack):
365 self.fail("didn't find f123() on thread's call stack")
370 filename, lineno, funcname, sourceline = stack[i+1]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sys.py 358 # threading.py are also in the thread's call stack.
360 stack = traceback.extract_stack(frame)
361 for i, (filename, lineno, funcname, sourceline) in enumerate(stack):
365 self.fail("didn't find f123() on thread's call stack")
370 filename, lineno, funcname, sourceline = stack[i+1]
  /system/extras/simpleperf/
cmd_report.cpp 523 LOG(ERROR) << record_filename_ << " is not recorded with branch stack sampling option.";
546 for (auto& item : r.branch_stack_data.stack) {
569 std::vector<char> stack(r.stack_user_data.data.begin(),
572 UnwindCallChain(ScopedCurrentArch::GetCurrentArch(), *sample->thread, regs, stack);
  /prebuilts/go/darwin-x86/src/regexp/testdata/
testregex.c 189 T(" -s use stack instead of malloc\n");
565 char* stack; member in struct:__anon44431
1304 if (!(state.stack = stkalloc(stkstd, 0)))
1305 fprintf(stderr, "%s: out of space [stack]", unit);
1397 if (state.stack)
1398 printf(", stack");
    [all...]

Completed in 2025 milliseconds

<<919293949596979899100>>