HomeSort by relevance Sort by last modified time
    Searched refs:state (Results 101 - 125 of 8554) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/webrtc/src/common_audio/signal_processing/
resample.c 46 WebRtcSpl_State22khzTo16khz* state, WebRtc_Word32* tmpmem)
57 WebRtcSpl_UpBy2ShortToInt(in, 220 / SUB_BLOCKS_22_16, tmpmem + 16, state->S_22_44);
63 // copy state to and from input array
64 tmpmem[8] = state->S_44_32[0];
65 tmpmem[9] = state->S_44_32[1];
66 tmpmem[10] = state->S_44_32[2];
67 tmpmem[11] = state->S_44_32[3];
68 tmpmem[12] = state->S_44_32[4];
69 tmpmem[13] = state->S_44_32[5];
70 tmpmem[14] = state->S_44_32[6]
    [all...]
  /cts/tools/dasm/src/java_cup/runtime/
symbol.java 6 * keep track of state on the parse stack. The symbol currently on top
7 * of the stack contains the current state in the parse_state field.
24 public symbol(int sym_num, int state)
27 parse_state = state;
32 /** Constructor without a known state. */
45 /** The parse state to be recorded on the parse stack with this symbol.
  /external/bison/src/
ielr.h 25 #include "state.h"
42 bool ielr_item_has_lookahead (state *s, symbol_number lhs, size_t item,
43 symbol_number lookahead, state ***predecessors,
  /external/chromium/net/base/
transport_security_state_unittest.cc 143 scoped_refptr<TransportSecurityState> state(
149 EXPECT_FALSE(state->IsEnabledForHost(&domain_state, "google.com", true));
151 state->EnableHost("google.com", domain_state);
152 EXPECT_TRUE(state->IsEnabledForHost(&domain_state, "google.com", true));
156 scoped_refptr<TransportSecurityState> state(
162 EXPECT_FALSE(state->IsEnabledForHost(&domain_state, "google.com", true));
164 state->EnableHost("GOOgle.coM", domain_state);
165 EXPECT_TRUE(state->IsEnabledForHost(&domain_state, "google.com", true));
169 scoped_refptr<TransportSecurityState> state(
175 EXPECT_FALSE(state->IsEnabledForHost(&domain_state, "GOOgle.coM", true))
    [all...]
  /external/chromium_org/chrome/browser/ui/gtk/
event_utils.h 15 int EventFlagsFromGdkState(guint state);
17 // Translates GdkEvent state into what kind of disposition they represent.
19 WindowOpenDisposition DispositionFromGdkState(guint state);
21 // Get the window open disposition from the state in gtk_get_current_event().
  /external/chromium_org/third_party/WebKit/Source/core/dom/
PopStateEvent.idl 30 [InitializedByEventConstructor, CustomGetter] readonly attribute any state;
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
WorkerConsoleAgent.cpp 37 WorkerConsoleAgent::WorkerConsoleAgent(InstrumentingAgents* instrumentingAgents, InspectorCompositeState* state, InjectedScriptManager* injectedScriptManager)
38 : InspectorConsoleAgent(instrumentingAgents, state, injectedScriptManager)
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TextEditorHighlighter.js 88 var state = this._textModel.getAttribute(endLine - 1, "highlight");
89 if (state && state.postConditionStringified) {
104 state = this._textModel.getAttribute(startLine - 1, "highlight");
105 if (state && state.postConditionStringified)
123 var state = this._textModel.getAttribute(startLine - 1, "highlight");
124 if (!state || !state.postConditionStringified) {
133 var state = this._textModel.getAttribute(i, "highlight")
    [all...]
  /external/chromium_org/third_party/WebKit/public/platform/win/
WebThemeEngine.h 45 // The part and state parameters correspond to values defined by the
52 WebCanvas*, int part, int state, int classicState,
56 WebCanvas*, int part, int state, int classicState,
60 WebCanvas*, int state, int classicState,
64 WebCanvas*, int part, int state, int classicState,
68 WebCanvas*, int part, int state, int classicState,
72 WebCanvas*, int part, int state, int classicState,
76 WebCanvas*, int part, int state, int classicState,
80 WebCanvas*, int part, int state, int classicState,
  /external/chromium_org/third_party/skia/include/utils/
SkCanvasStateUtils.h 32 * Captures the current state of the canvas into an opaque ptr that is safe
40 * canvases that have been created using its captured state have been dereferenced.
45 * @param canvas The canvas you wish to capture the current state of.
48 * ReleaseCanvasState to free the memory associated with this state.
53 * Create a new SkCanvas from the captured state of another SkCanvas. The
56 * 1) the captured state is in an unrecognized format
59 * @param canvas The canvas you wish to capture the current state of.
60 * @return NULL or an SkCanvas* whose devices and matrix/clip state are
64 SK_API SkCanvas* CreateFromCanvasState(const SkCanvasState* state);
67 * Free the memory associated with the captured canvas state. The stat
    [all...]
  /external/guava/guava/src/com/google/common/base/
AbstractIterator.java 32 private State state = State.NOT_READY; field in class:AbstractIterator
36 private enum State {
45 state = State.DONE;
51 checkState(state != State.FAILED);
52 switch (state) {
63 state = State.FAILED; // temporary pessimis
    [all...]
  /external/guava/guava/src/com/google/common/collect/
AbstractIterator.java 31 * end-of-data status without changing the iterator's state, using the {@link
65 private State state = State.NOT_READY; field in class:AbstractIterator
70 private enum State {
124 state = State.DONE;
130 checkState(state != State.FAILED);
131 switch (state) {
    [all...]
  /external/skia/include/utils/
SkCanvasStateUtils.h 32 * Captures the current state of the canvas into an opaque ptr that is safe
40 * canvases that have been created using its captured state have been dereferenced.
45 * @param canvas The canvas you wish to capture the current state of.
48 * ReleaseCanvasState to free the memory associated with this state.
53 * Create a new SkCanvas from the captured state of another SkCanvas. The
56 * 1) the captured state is in an unrecognized format
59 * @param canvas The canvas you wish to capture the current state of.
60 * @return NULL or an SkCanvas* whose devices and matrix/clip state are
64 SK_API SkCanvas* CreateFromCanvasState(const SkCanvasState* state);
67 * Free the memory associated with the captured canvas state. The stat
    [all...]
  /external/srtp/crypto/math/
stat.c 86 int state = 0; local
91 * the state variable holds the number of bits in the
102 if (state > 0) {
105 state++;
108 if (state > 25) {
109 debug_print(mod_stat, ">25 runs: %d", state);
113 } else if (state < 0) {
116 if (state < -25) {
117 debug_print(mod_stat, ">25 gaps: %d", state);
120 if (state < -6)
211 int state = 0; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
ir_reader.h 31 void _mesa_glsl_read_ir(_mesa_glsl_parse_state *state, exec_list *instructions,
  /external/chromium_org/ui/base/animation/
tween.cc 18 double Tween::CalculateValue(Tween::Type type, double state) {
19 DCHECK_GE(state, 0);
20 DCHECK_LE(state, 1);
24 return pow(state, 2);
27 return pow(state, 4);
30 if (state < 0.5)
31 return pow(state * 2, 2) / 2.0;
32 return 1.0 - (pow((state - 1.0) * 2, 2) / 2.0);
35 return (pow(state - 0.5, 3) + 0.125) / 0.25;
38 return state;
    [all...]
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
MemoryFlyoutPreferences.java 29 public MemoryFlyoutPreferences(int dockLocation, int state, int width) {
31 m_state = state;
56 public void setState(int state) {
57 m_state = state;
  /external/mesa3d/src/glsl/
ir_reader.h 31 void _mesa_glsl_read_ir(_mesa_glsl_parse_state *state, exec_list *instructions,
  /external/chromium_org/content/public/common/
page_state.cc 30 PageState ToPageState(const ExplodedPageState& state) {
32 if (!EncodePageState(state, &encoded_data))
38 void RecursivelyRemovePasswordData(ExplodedFrameState* state) {
39 if (state->http_body.contains_passwords)
40 state->http_body = ExplodedHttpBody();
43 void RecursivelyRemoveScrollOffset(ExplodedFrameState* state) {
44 state->scroll_offset = gfx::Point();
56 ExplodedPageState state; local
58 state.top.url_string = state.top.original_url_string
70 ExplodedPageState state; local
116 ExplodedPageState state; local
124 ExplodedPageState state; local
134 ExplodedPageState state; local
    [all...]
  /system/core/libcorkscrew/arch-mips/
backtrace-mips.c 57 /* Unwind state. */
74 unwind_state_t* state, backtrace_frame_t* backtrace,
80 uintptr_t pc = index ? rewind_pc_arch(memory, state->pc) : state->pc;
91 frame->stack_top = state->sp;
96 for (addr = state->pc; maxcheck-- > 0 && !found_start; addr -= 4) {
129 if (!try_get_word(memory, state->sp + ra_offset, &next_ra))
131 state->ra = next_ra;
132 ALOGV("New ra: 0x%08x\n", state->ra);
138 state->sp += stack_size
161 unwind_state_t state; local
184 unwind_state_t state; local
    [all...]
  /external/chromium_org/ash/
debug.cc 22 cc::LayerTreeDebugState state = compositor->GetLayerTreeDebugState(); local
24 value.reset(new bool(!state.show_debug_borders));
25 state.show_debug_borders = *value.get();
26 compositor->SetLayerTreeDebugState(state);
37 cc::LayerTreeDebugState state = compositor->GetLayerTreeDebugState(); local
39 value.reset(new bool(!state.show_fps_counter));
40 state.show_fps_counter = *value.get();
41 compositor->SetLayerTreeDebugState(state);
52 cc::LayerTreeDebugState state = compositor->GetLayerTreeDebugState(); local
54 value.reset(new bool(!state.show_paint_rects))
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/tool/steps/
revertrevision.py 33 def run(self, state):
34 self._tool.checkout().apply_reverse_diffs(state["revision_list"])
35 self.did_modify_checkout(state)
  /external/chromium_org/third_party/tcmalloc/chromium/src/
stacktrace_android-inl.h 70 stack_crawl_state_t* state = static_cast<stack_crawl_state_t*>(arg); local
83 if (ip != 0 && !state->have_skipped_self) {
84 state->have_skipped_self = true;
88 if (state->skip_count) {
89 --state->skip_count;
93 state->frames[state->frame_count++] = ip;
94 if (state->frame_count >= state->max_depth)
117 stack_crawl_state_t state(
    [all...]
  /external/chromium_org/third_party/zlib/
gzclose.c 15 gz_statep state; local
19 state = (gz_statep)file;
21 return state->mode == GZ_READ ? gzclose_r(file) : gzclose_w(file);
  /external/jmonkeyengine/engine/src/test/jme3test/input/combomoves/
ComboMoveExecution.java 44 private int state; field in class:ComboMoveExecution
55 ComboMoveState state){
57 if (state.getTimeElapsed() != -1f){
59 // if the state requires it
60 if (moveTime + state.getTimeElapsed() >= time){
64 for (String mapping : state.getPressedMappings()){
68 for (String mapping : state.getUnpressedMappings()){
81 state = 0;
97 ComboMoveState currentState = moveDef.getState(state);
99 state ++
    [all...]

Completed in 1695 milliseconds

1 2 3 45 6 7 8 91011>>