OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:stack
(Results
1 - 25
of
965
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/stlport/test/unit/
stack_header_test.cpp
8
#include <
stack
>
/ndk/tests/device/test-gnustl-full/unit/
stack_header_test.cpp
8
#include <
stack
>
/ndk/tests/device/test-stlport/unit/
stack_header_test.cpp
8
#include <
stack
>
/external/speex/libspeex/
stack_alloc.h
4
@brief Temporary memory allocation on
stack
51
* @def ALIGN(
stack
, size)
53
* Aligns the
stack
to a 'size' boundary
55
* @param
stack
Stack
60
* @def PUSH(
stack
, size, type)
62
* Allocates 'size' elements of type 'type' on the
stack
64
* @param
stack
Stack
72
* Declare variable on
stack
[
all
...]
/external/proguard/src/proguard/evaluation/
Processor.java
34
* local variable frame and
stack
.
44
private final
Stack
stack
;
field in class:Processor
57
* @param
stack
the local
stack
.
62
Stack
stack
,
68
this.
stack
=
stack
;
85
stack
.push(valueFactory.createReferenceValueNull())
[
all
...]
/external/easymock/src/org/easymock/internal/
LastControl.java
21
import java.util.
Stack
;
31
private static final ThreadLocal<
Stack
<Invocation>> threadToCurrentInvocation = new ThreadLocal<
Stack
<Invocation>>();
33
private static final ThreadLocal<
Stack
<IArgumentMatcher>> threadToArgumentMatcherStack = new ThreadLocal<
Stack
<IArgumentMatcher>>();
48
Stack
<IArgumentMatcher>
stack
= threadToArgumentMatcherStack.get();
local
49
if (
stack
== null) {
50
stack
= new
Stack
<IArgumentMatcher>();
57
Stack<IArgumentMatcher>
stack
= threadToArgumentMatcherStack.get();
local
66
Stack<IArgumentMatcher>
stack
= threadToArgumentMatcherStack.get();
local
72
Stack<IArgumentMatcher>
stack
= threadToArgumentMatcherStack.get();
local
78
Stack<IArgumentMatcher>
stack
= threadToArgumentMatcherStack.get();
local
98
Stack<IArgumentMatcher>
stack
= threadToArgumentMatcherStack.get();
local
104
Stack<Invocation>
stack
= threadToCurrentInvocation.get();
local
112
Stack<Invocation>
stack
= threadToCurrentInvocation.get();
local
121
Stack<Invocation>
stack
= threadToCurrentInvocation.get();
local
[
all
...]
/external/webkit/Tools/Scripts/webkitpy/common/system/
stack_utils.py
29
"""Simple routines for logging, obtaining thread
stack
information."""
37
stack
= _find_thread_stack(thread_id)
38
assert(
stack
is not None)
41
_log_stack(logger,
stack
)
46
"""Returns a
stack
object that can be used to dump a
stack
trace for
48
for tid,
stack
in sys._current_frames().items():
50
return
stack
54
def _log_stack(logger,
stack
):
55
"""Log a
stack
trace to the logger callback.""
[
all
...]