Searched refs:state (Results 276 - 300 of 2419) sorted by relevance

<<11121314151617181920>>

/external/webkit/Source/WebKit/efl/DefaultTheme/widget/search/decoration/
H A Dsearch_decoration.edc57 state: "default" 0.0;
67 state: "disabled" 0.0;
72 state: "hovered" 0.0;
76 state: "focused" 0.0;
80 state: "pressed" 0.0;
/external/jpeg/
H A Djchuff.c12 * back up to the start of the current MCU. To do this, we copy state
58 savable_state saved; /* Bit buffer & DC state at start of MCU */
60 /* These fields are NOT loaded into local working state. */
76 /* Working state while writing an MCU.
83 savable_state cur; /* Current bit buffer & DC state */
270 #define emit_byte(state,val,action) \
271 { *(state)->next_output_byte++ = (JOCTET) (val); \
272 if (--(state)->free_in_buffer == 0) \
273 if (! dump_buffer(state)) \
278 dump_buffer (working_state * state)
479 working_state state; local
536 working_state state; local
[all...]
/external/qemu/elff/
H A Ddwarf_cu.cc477 /* Create new state machine. */
478 DwarfStateMachine state(stmtl_header_.default_is_stmt != 0);
497 state.end_sequence_ = true;
498 state.reset(stmtl_header_.default_is_stmt != 0);
503 Elf_Xword prev_address = state.address_;
505 state.address_ =
508 state.address_ =
512 address >= prev_address && address < state.address_) {
513 return set_source_info(&state, info);
514 } else if (address == state
740 set_source_info( const DwarfStateMachine* state, Dwarf_AddressInfo* info) argument
[all...]
/external/chromium/chrome/browser/sync/
H A Dbackend_migrator_unittest.cc88 // Test that in the normal case a migration does transition through each state
97 EXPECT_CALL(*manager(), state())
102 EXPECT_EQ(BackendMigrator::DISABLING_TYPES, migrator.state());
105 EXPECT_EQ(BackendMigrator::WAITING_FOR_PURGE, migrator.state());
110 EXPECT_EQ(BackendMigrator::REENABLING_TYPES, migrator.state());
113 EXPECT_EQ(BackendMigrator::IDLE, migrator.state());
123 EXPECT_CALL(*manager(), state())
127 EXPECT_EQ(BackendMigrator::WAITING_TO_START, migrator.state());
130 EXPECT_CALL(*manager(), state())
135 EXPECT_EQ(BackendMigrator::DISABLING_TYPES, migrator.state());
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DObjCSelfInitChecker.cpp133 static SelfFlagEnum getSelfFlags(SVal val, const ProgramState *state) { argument
135 if (const unsigned *attachedFlags = state->get<SelfFlag>(sym))
144 static void addSelfFlag(const ProgramState *state, SVal val, argument
148 C.addTransition(state->set<SelfFlag>(sym, getSelfFlags(val, C) | flag));
202 const ProgramState *state = C.getState(); local
207 state = state->set<CalledInit>(true);
209 SVal V = state->getSVal(msg.getOriginExpr());
210 addSelfFlag(state, V, SelfFlag_InitRes, C);
262 const ProgramState *state local
280 const ProgramState *state = C.getState(); local
303 const ProgramState *state = C.getState(); local
[all...]
/external/bison/src/
H A Dstate.c1 /* Type definitions for nondeterministic finite state machine for Bison.
30 #include "state.h"
43 transitions_new (int num, state **the_states)
54 | Return the state such that SHIFTS contain a shift/goto |
58 state *
123 state *final_state = NULL;
127 | Create a new state with ACCESSING_SYMBOL, for those items. Store |
128 | it in the state hash table. |
131 state *
135 state *re
[all...]
/external/chromium/chrome/browser/download/
H A Ddownload_request_limiter.cc49 // Don't change the state if the user clicks on the page some where.
99 // NOTE: resetting state on a pending navigate isn't ideal. In particular
117 // reset the download state if the user is navigating to a different
187 TabDownloadState* state = GetDownloadState(&tab->controller(), NULL, false); local
188 return state ? state->download_status() : ALLOW_ONE_DOWNLOAD;
196 // thread so that we can query UI state.
206 TabDownloadState* state = GetDownloadState(&tab->controller(), NULL, false); local
207 if (!state)
210 state
272 TabDownloadState* state = GetDownloadState( local
318 Remove(TabDownloadState* state) argument
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DExprEngineObjC.cpp26 const ProgramState *state = Pred->getState(); local
27 SVal baseVal = state->getSVal(Ex->getBase());
28 SVal location = state->getLValue(Ex->getDecl(), baseVal);
31 MakeNode(dstIvar, Ex, Pred, state->BindExpr(Ex, location));
71 // result in state splitting.
74 const ProgramState *state = Pred->getState(); local
80 elementV = state->getLValue(elemD, Pred->getLocationContext());
83 elementV = state->getSVal(elem);
87 evalLocation(dstLocation, elem, Pred, state, elementV, NULL, false);
95 const ProgramState *state local
150 const ProgramState *state = Pred->getState(); local
237 evalObjCMessage(ExplodedNodeSet &Dst, const ObjCMessage &msg, ExplodedNode *Pred, const ProgramState *state) argument
[all...]
/external/guava/src/com/google/common/util/concurrent/
H A DAbstractService.java50 * The internal state, which equals external state unless
53 private State state = State.NEW; field in class:AbstractService
89 if (state == State.NEW) {
90 state = State.STARTING;
106 if (state == State.NEW) {
107 state = State.TERMINATED;
110 } else if (state == State.STARTING) {
113 } else if (state == State.RUNNING) {
114 state
232 public final State state() { method in class:AbstractService
[all...]
/external/openssl/crypto/ocsp/
H A Docsp_ht.c77 int state; /* Current I/O state */ member in struct:ocsp_req_ctx_st
130 rctx->state = OHS_ASN1_WRITE;
161 rctx->state = OHS_ERROR;
268 if (!(rctx->state & OHS_NOREAD))
285 switch(rctx->state)
298 rctx->state = OHS_ERROR;
307 rctx->state = OHS_ASN1_FLUSH;
317 rctx->state = OHS_FIRSTLINE;
324 rctx->state
[all...]
/external/skia/src/core/
H A DSkBitmapProcShader.cpp152 const SkBitmapProcState& state = fState; local
153 if (state.fShaderProc32) {
154 state.fShaderProc32(state, x, y, dstC, count);
159 SkBitmapProcState::MatrixProc mproc = state.fMatrixProc;
160 SkBitmapProcState::SampleProc32 sproc = state.fSampleProc32;
163 SkASSERT(state.fBitmap->getPixels());
164 SkASSERT(state.fBitmap->pixelRef() == NULL ||
165 state.fBitmap->pixelRef()->getLockCount());
178 mproc(state, buffe
196 const SkBitmapProcState& state = fState; local
[all...]
/external/webrtc/src/modules/audio_processing/main/test/android/apmtest/jni/
H A Dmain.c33 * Our saved state data.
42 * Shared state for our app.
57 struct saved_state state; member in struct:engine
117 engine->state.angle = 0;
119 // Initialize GL state.
138 glClearColor(((float)engine->state.x)/engine->width, engine->state.angle,
139 ((float)engine->state.y)/engine->height, 1);
172 engine->state.x = AMotionEvent_getX(event, 0);
173 engine->state
231 android_main(struct android_app* state) argument
[all...]
/external/zlib/
H A Dinffast.c42 state->mode == LEN
46 state->bits < 8
48 On return, state->mode is one of:
71 struct inflate_state FAR *state; local
97 /* copy state to local variables */
98 state = (struct inflate_state FAR *)strm->state;
105 dmax = state->dmax;
107 wsize = state->wsize;
108 whave = state
[all...]
/external/opencv/cv/src/
H A Dcvstereobm.cpp57 CvStereoBMState* state = 0; local
63 state = (CvStereoBMState*)cvAlloc( sizeof(*state) );
64 if( !state )
67 state->preFilterType = CV_STEREO_BM_NORMALIZED_RESPONSE;
68 state->preFilterSize = 9;
69 state->preFilterCap = 31;
70 state->SADWindowSize = 15;
71 state->minDisparity = 0;
72 state
177 icvFindStereoCorrespondenceBM_SSE2( const CvMat* left, const CvMat* right, CvMat* disp, CvStereoBMState* state, uchar* buf, int _dy0, int _dy1 ) argument
385 icvFindStereoCorrespondenceBM( const CvMat* left, const CvMat* right, CvMat* disp, CvStereoBMState* state, uchar* buf, int _dy0, int _dy1 ) argument
[all...]
H A Dcvstereogc.cpp370 CvStereoGCState* state = 0; local
376 state = (CvStereoGCState*)cvAlloc( sizeof(*state) );
377 memset( state, 0, sizeof(*state) );
378 state->minDisparity = 0;
379 state->numberOfDisparities = numberOfDisparities;
380 state->maxIters = maxIters <= 0 ? 3 : maxIters;
381 state->Ithreshold = 5;
382 state
393 CvStereoGCState* state; local
525 icvComputeEnergy( const CvStereoGCState* state, const CvStereoGCState2* state2, bool allOccluded ) argument
661 icvAlphaExpand( int64 Eprev, int alpha, CvStereoGCState* state, CvStereoGCState2* state2 ) argument
841 cvFindStereoCorrespondenceGC( const CvArr* _left, const CvArr* _right, CvArr* _dispLeft, CvArr* _dispRight, CvStereoGCState* state, int useDisparityGuess ) argument
[all...]
/external/webkit/Source/WebCore/platform/image-encoders/
H A DPNGImageEncoder.cpp57 PNGEncoderState* state = static_cast<PNGEncoderState*>(png_get_io_ptr(png)); local
58 ASSERT(state->m_dump);
60 size_t oldSize = state->m_dump->size();
61 state->m_dump->resize(oldSize + size);
62 char* destination = state->m_dump->data() + oldSize;
106 PNGEncoderState state(&pngData);
107 png_set_write_fn(pngPtr, &state, encoderWriteCallback, 0);
/external/webkit/Tools/Scripts/
H A Dprint-msvc-project-dependencies57 my $state = "initial";
59 if ($state eq "initial") {
74 $state = "inProject";
80 if ($state eq "inProject") {
84 $state = "inDependencies";
87 $state = "initial";
93 if ($state eq "inDependencies") {
108 $state = "inProject";
/external/webrtc/src/common_audio/signal_processing_library/main/source/
H A Dfilter_ar.c24 WebRtc_Word16* state,
48 WebRtc_Word16* state_ptr = &state[state_length - 1];
72 // Save the filter state
75 WebRtcSpl_CopyFromEndW16(filtered, x_length, a_length - 1, state);
81 state[i] = state[i + x_length];
86 state[state_length - x_length + i] = filtered[i];
87 state[state_length - x_length + i] = filtered_low[i];
20 WebRtcSpl_FilterAR(G_CONST WebRtc_Word16* a, int a_length, G_CONST WebRtc_Word16* x, int x_length, WebRtc_Word16* state, int state_length, WebRtc_Word16* state_low, int state_low_length, WebRtc_Word16* filtered, WebRtc_Word16* filtered_low, int filtered_low_length) argument
/external/qemu/distrib/zlib-1.2.3/
H A Dinffast.c42 state->mode == LEN
46 state->bits < 8
48 On return, state->mode is one of:
71 struct inflate_state FAR *state; local
97 /* copy state to local variables */
98 state = (struct inflate_state FAR *)strm->state;
105 dmax = state->dmax;
107 wsize = state->wsize;
108 whave = state
[all...]
/external/srtp/crypto/cipher/
H A Daes.c1505 aes_round(v128_t *state, const v128_t *round_key) { argument
1509 of state, using the tables T0, T1, T2, T3 */
1511 column0 = T0[state->v8[0]] ^ T1[state->v8[5]]
1512 ^ T2[state->v8[10]] ^ T3[state->v8[15]];
1514 column1 = T0[state->v8[4]] ^ T1[state->v8[9]]
1515 ^ T2[state->v8[14]] ^ T3[state
1532 aes_inv_round(v128_t *state, const v128_t *round_key) argument
1558 aes_final_round(v128_t *state, const v128_t *round_key) argument
1594 aes_inv_final_round(v128_t *state, const v128_t *round_key) argument
1633 aes_round(v128_t *state, const v128_t *round_key) argument
1672 aes_inv_round(v128_t *state, const v128_t *round_key) argument
1713 aes_final_round(v128_t *state, const v128_t *round_key) argument
1748 aes_inv_final_round(v128_t *state, const v128_t *round_key) argument
1785 aes_round(v128_t *state, const v128_t *round_key) argument
1812 aes_inv_round(v128_t *state, const v128_t *round_key) argument
1838 aes_final_round(v128_t *state, const v128_t *round_key) argument
1874 aes_inv_final_round(v128_t *state, const v128_t *round_key) argument
[all...]
/external/webkit/Source/WebCore/platform/win/
H A DScrollbarThemeSafari.cpp83 (ThemePart part, CGContextRef context, const CGRect& rect, NSControlSize size, ThemeControlState state),
84 (part, context, rect, size, state))
86 static ScrollbarControlState scrollbarControlStateFromThemeState(ThemeControlState state) argument
89 if (state & ActiveState)
91 if (state & EnabledState)
93 if (state & PressedState)
211 ThemeControlState state = 0; local
213 state |= ActiveState;
215 state |= EnabledState;
216 paintThemePart(scrollbar->orientation() == VerticalScrollbar ? VScrollTrackPart : HScrollTrackPart, graphicsContext->platformContext(), trackRect, size, state);
224 ThemeControlState state = 0; local
244 ThemeControlState state = 0; local
[all...]
/external/llvm/lib/DebugInfo/
H A DDWARFDebugLine.cpp123 State state; local
124 if (!parseStatementTable(debug_line_data, &offset, state))
126 pos.first->second = state;
188 uint32_t *offset_ptr, State &state) {
191 Prologue *prologue = &state.Prologue;
202 state.reset();
217 // Set the end_sequence register of the state machine to true and
219 // state-machine registers. Then reset the registers to the initial
224 state.EndSequence = true;
225 state
187 parseStatementTable(DataExtractor debug_line_data, uint32_t *offset_ptr, State &state) argument
[all...]
/external/quake/quake/src/QW/client/
H A Dcl_ents.c164 // set everything to the state we are delta'ing from
662 player_state_t *state; local
672 state = &cl.frames[parsecountmod].playerstate[num];
674 flags = state->flags = MSG_ReadShort ();
676 state->messagenum = cl.parsecount;
677 state->origin[0] = MSG_ReadCoord ();
678 state->origin[1] = MSG_ReadCoord ();
679 state->origin[2] = MSG_ReadCoord ();
681 state->frame = MSG_ReadByte ();
689 state
795 player_state_t *state; local
911 entity_state_t *state; local
953 player_state_t *state; local
[all...]
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/generators/
H A DPKCS5S2ParametersGenerator.java39 byte[] state = new byte[hMac.getMacSize()];
51 hMac.doFinal(state, 0);
53 System.arraycopy(state, 0, out, outOff, state.length);
63 hMac.update(state, 0, state.length);
64 hMac.doFinal(state, 0);
66 for (int j = 0; j != state.length; j++)
68 out[outOff + j] ^= state[j];
/external/chromium/net/tools/dump_cache/
H A Durl_utilities.cc75 UnescapeState state = NORMAL; local
79 switch (state) {
83 state = ESCAPE1;
92 state = ESCAPE2;
97 state = NORMAL;
106 state = NORMAL;
112 state = NORMAL;
118 if (state == ESCAPE1 || state == ESCAPE2) {

Completed in 538 milliseconds

<<11121314151617181920>>