Searched refs:new_state (Results 251 - 275 of 319) sorted by relevance

<<111213

/external/mesa3d/src/mesa/main/
H A Dpixel.c646 void _mesa_update_pixel( struct gl_context *ctx, GLuint new_state )
648 if (new_state & _NEW_PIXEL)
H A Dtexstate.c678 _mesa_update_texture( struct gl_context *ctx, GLuint new_state )
680 if (new_state & _NEW_TEXTURE_MATRIX)
683 if (new_state & (_NEW_TEXTURE | _NEW_PROGRAM))
/external/mesa3d/src/mesa/tnl/
H A Dt_vertex.c270 void _tnl_invalidate_vertex_state( struct gl_context *ctx, GLuint new_state )
273 if (new_state & (_NEW_LIGHT | _NEW_POLYGON) ) {
/external/chromium_org/chrome/browser/ui/views/location_bar/
H A Dlocation_bar_view.h426 const SearchModel::State& new_state) OVERRIDE;
/external/chromium_org/components/invalidation/
H A Dinvalidation_logger_unittest.cc33 virtual void OnStateChange(const syncer::InvalidatorState& new_state,
/external/chromium_org/content/browser/download/
H A Ddownload_item_impl.h369 void TransitionTo(DownloadInternalState new_state,
H A Ddownload_item_impl.cc1558 void DownloadItemImpl::TransitionTo(DownloadInternalState new_state, argument
1562 if (state_ == new_state)
1566 state_ = new_state;
H A Ddownload_item_impl_unittest.cc138 DownloadItem::DownloadState new_state = download->GetState(); variable
140 new_state == DownloadItem::INTERRUPTED) {
144 new_state == DownloadItem::IN_PROGRESS) {
147 last_state_ = new_state;
/external/chromium_org/content/renderer/media/webrtc/
H A Dmock_peer_connection_dependency_factory.h120 virtual bool set_state(TrackState new_state) OVERRIDE;
/external/chromium_org/cloud_print/gcp20/prototype/
H A Dprinter.cc924 bool Printer::ChangeState(ConnectionState new_state) { argument
925 if (connection_state_ == new_state)
928 connection_state_ = new_state;
/external/chromium_org/third_party/mesa/src/src/mesa/main/
H A Dtexstate.c678 _mesa_update_texture( struct gl_context *ctx, GLuint new_state )
680 if (new_state & _NEW_TEXTURE_MATRIX)
683 if (new_state & (_NEW_TEXTURE | _NEW_PROGRAM))
H A Dapi_arrayelt.c1687 void _ae_invalidate_state( struct gl_context *ctx, GLuint new_state )
1701 new_state &= _NEW_ARRAY | _NEW_PROGRAM;
1702 if (new_state) {
1704 actx->NewState |= new_state;
/external/chromium_org/third_party/openssl/openssl/ssl/
H A Ds2_clnt.c151 int new_state,state; local
317 new_state=s->state;
320 s->state=new_state;
H A Ds2_srvr.c152 int new_state,state; local
351 new_state=s->state;
354 s->state=new_state;
H A Dd1_clnt.c153 int new_state,state,skip=0; local
745 new_state=s->state;
748 s->state=new_state;
H A Dd1_srvr.c152 int new_state,state,skip=0; local
823 new_state=s->state;
826 s->state=new_state;
/external/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp129 ProgramStateRef new_state = makeWithStore(newStore); local
131 Mgr.getOwningEngine()->processRegionChange(new_state, R) :
132 new_state;
/external/openssl/ssl/
H A Ds2_clnt.c151 int new_state,state; local
317 new_state=s->state;
320 s->state=new_state;
H A Ds2_srvr.c152 int new_state,state; local
351 new_state=s->state;
354 s->state=new_state;
H A Dd1_clnt.c153 int new_state,state,skip=0; local
755 new_state=s->state;
758 s->state=new_state;
H A Dd1_srvr.c152 int new_state,state,skip=0; local
836 new_state=s->state;
839 s->state=new_state;
/external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
H A Dglcpp-lex.c764 static void yy_push_state (int new_state ,yyscan_t yyscanner);
2147 static void yy_push_state (int new_state , yyscan_t yyscanner)
2169 BEGIN(new_state);
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dparse-events-flex.c1231 static void yy_push_state (int new_state ,yyscan_t yyscanner);
2588 static void yy_push_state (int new_state , yyscan_t yyscanner)
2610 BEGIN(new_state);
/external/chromium_org/content/browser/renderer_host/media/
H A Dmedia_stream_manager.cc266 void SetState(MediaStreamType stream_type, MediaRequestState new_state) { argument
270 state_[stream_type] = new_state;
273 state_[stream_type] = new_state;
296 MediaStreamDevice(stream_type, device_id, device_id), new_state);
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/intel/
H A Dintel_context.h175 GLuint new_state);

Completed in 6643 milliseconds

<<111213