Searched refs:newstate (Results 1 - 18 of 18) sorted by relevance

/external/chromium_org/chrome/common/extensions/docs/examples/api/idle/idle_simple/
H A Dbackground.js10 chrome.idle.onStateChanged.addListener(function(newstate) {
15 history_log.unshift({'state':newstate, 'time':time});
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dpixel.h50 _mesa_update_pixel( struct gl_context *ctx, GLuint newstate );
64 _mesa_update_pixel(struct gl_context *ctx, GLuint newstate) argument
H A Dcontext.h202 * \param newstate new state.
206 * __struct gl_contextRec::NewState with \p newstate.
208 #define FLUSH_VERTICES(ctx, newstate) \
214 ctx->NewState |= newstate; \
221 * \param newstate new state.
225 * __struct gl_contextRec::NewState with \p newstate.
227 #define FLUSH_CURRENT(ctx, newstate) \
233 ctx->NewState |= newstate; \
H A Dmatrix.h110 _mesa_update_modelview_project( struct gl_context *ctx, GLuint newstate );
/external/mesa3d/src/mesa/main/
H A Dpixel.h50 _mesa_update_pixel( struct gl_context *ctx, GLuint newstate );
64 _mesa_update_pixel(struct gl_context *ctx, GLuint newstate) argument
H A Dcontext.h202 * \param newstate new state.
206 * __struct gl_contextRec::NewState with \p newstate.
208 #define FLUSH_VERTICES(ctx, newstate) \
214 ctx->NewState |= newstate; \
221 * \param newstate new state.
225 * __struct gl_contextRec::NewState with \p newstate.
227 #define FLUSH_CURRENT(ctx, newstate) \
233 ctx->NewState |= newstate; \
H A Dmatrix.h110 _mesa_update_modelview_project( struct gl_context *ctx, GLuint newstate );
/external/qemu/distrib/sdl-1.2.15/src/joystick/riscos/
H A DSDL_sysjoystick.c121 int newstate = regs.r[0]; local
123 if (newstate != oldstate)
125 if ((newstate & 0xFF) != (oldstate & 0xFF))
132 if ((newstate & 0xFF00) != (oldstate & 0xFF00))
139 if ((newstate & 0xFF0000) != (oldstate & 0xFF0000))
153 joystick->hwdata->joystate = newstate;
/external/chromium_org/third_party/webrtc/base/
H A Dtask.cc195 int newstate = STATE_ERROR; local
199 newstate = OnTimeout();
204 newstate = STATE_START;
207 newstate = ProcessStart();
210 newstate = ProcessResponse();
214 newstate = STATE_BLOCKED;
219 return newstate;
/external/pdfium/core/src/fdrm/crypto/
H A Dfx_crypt_aes.cpp639 #define MOVEWORD(i) ( block[i] = newstate[i] )
641 #define MAKEWORD(i) ( newstate[i] = (E0[(block[i] >> 24) & 0xFF] ^ \
645 #define LASTWORD(i) ( newstate[i] = (Sbox[(block[i] >> 24) & 0xFF] << 24) | \
654 unsigned int newstate[4]; local
682 unsigned int newstate[6]; local
718 unsigned int newstate[8]; local
759 #define MAKEWORD(i) ( newstate[i] = (D0[(block[i] >> 24) & 0xFF] ^ \
763 #define LASTWORD(i) (newstate[i] = (Sboxinv[(block[i] >> 24) & 0xFF] << 24) | \
772 unsigned int newstate[4]; local
800 unsigned int newstate[ local
836 unsigned int newstate[8]; local
[all...]
/external/chromium_org/content/child/npapi/
H A Dplugin_host.cc259 int newstate = statemachine[state][input]; local
262 if (state != newstate) {
263 switch (newstate) {
301 state = newstate;
/external/chromium_org/third_party/sqlite/src/test/
H A Dtester.tcl755 set newstate [expr {[string is alnum $char] || $char eq "_"}]
756 if {$newstate && !$state} {
759 if {!$newstate && $state} {
763 set state $newstate
/external/chromium_org/third_party/usrsctp/usrsctplib/netinet/
H A Dsctp_constants.h488 #define SCTP_SET_STATE(asoc, newstate) ((asoc)->state = ((asoc)->state & ~SCTP_STATE_MASK) | newstate)
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/
H A Dgas-parse.c44 enum gas_parser_state newstate; member in struct:dir_lookup
196 parser_gas->state = dir->newstate;
1733 word.newstate = INITIAL;
/external/chromium_org/net/spdy/
H A Dspdy_framer.cc83 #define CHANGE_STATE(newstate) \
87 << " to " << StateToString(newstate) << "\n"; \
91 state_ = newstate; \
94 #define CHANGE_STATE(newstate) \
99 state_ = newstate; \
/external/chromium_org/third_party/libxml/src/
H A Dxmlregexp.c1598 xmlRegStatePtr inter, newstate; local
1604 newstate = to;
1606 newstate = xmlRegNewState(ctxt);
1607 xmlRegStatePush(ctxt, newstate);
1622 * newstate.
1646 newstate, counter);
1649 newstate);
1664 newstate, counter);
1668 newstate);
1674 ctxt->state = newstate;
[all...]
/external/libxml2/
H A Dxmlregexp.c1602 xmlRegStatePtr inter, newstate; local
1608 newstate = to;
1610 newstate = xmlRegNewState(ctxt);
1611 xmlRegStatePush(ctxt, newstate);
1626 * newstate.
1650 newstate, counter);
1653 newstate);
1668 newstate, counter);
1672 newstate);
1678 ctxt->state = newstate;
[all...]
/external/chromium_org/third_party/sqlite/src/tool/
H A Dlemon.c4653 struct state *newstate; local
4654 newstate = (struct state *)calloc(1, sizeof(struct state) );
4655 MemoryCheck(newstate);
4656 return newstate;

Completed in 603 milliseconds