HomeSort by relevance Sort by last modified time
    Searched refs:state (Results 651 - 675 of 8770) sorted by null

<<21222324252627282930>>

  /external/clang/lib/StaticAnalyzer/Checkers/
StreamChecker.cpp 95 ProgramStateRef CheckNullStream(SVal SV, ProgramStateRef state,
97 ProgramStateRef CheckDoubleClose(const CallExpr *CE, ProgramStateRef state,
210 ProgramStateRef state = C.getState(); local
215 state = state->BindExpr(CE, C.getLocationContext(), RetVal);
218 // Bifurcate the state into two: one with a valid FILE* pointer, the other
221 llvm::tie(stateNotNull, stateNull) = CM.assumeDual(state, RetVal);
224 // if RetVal is not NULL, set the symbol's state to Opened.
236 ProgramStateRef state = CheckDoubleClose(CE, C.getState(), C); local
237 if (state)
242 ProgramStateRef state = C.getState(); local
249 ProgramStateRef state = C.getState(); local
256 ProgramStateRef state = C.getState(); local
283 ProgramStateRef state = C.getState(); local
290 ProgramStateRef state = C.getState(); local
297 ProgramStateRef state = C.getState(); local
304 ProgramStateRef state = C.getState(); local
311 ProgramStateRef state = C.getState(); local
318 ProgramStateRef state = C.getState(); local
325 ProgramStateRef state = C.getState(); local
332 ProgramStateRef state = C.getState(); local
401 ProgramStateRef state = C.getState(); local
    [all...]
ObjCSelfInitChecker.cpp 76 void printState(raw_ostream &Out, ProgramStateRef State,
112 static SelfFlagEnum getSelfFlags(SVal val, ProgramStateRef state) {
114 if (const unsigned *attachedFlags = state->get<SelfFlag>(sym))
123 static void addSelfFlag(ProgramStateRef state, SVal val,
127 state = state->set<SelfFlag>(sym, getSelfFlags(val, state) | flag);
128 C.addTransition(state);
183 ProgramStateRef state = C.getState(); local
188 state = state->set<CalledInit>(true)
    [all...]
  /external/bison/src/
state.c 1 /* Type definitions for the finite state machine for Bison.
27 #include "state.h"
41 transitions_new (int num, state **the_states)
52 | Return the state such that SHIFTS contain a shift/goto |
56 state *
121 state *final_state = NULL;
125 | Create a new state with ACCESSING_SYMBOL, for those items. Store |
126 | it in the state hash table. |
129 state *
133 state *res
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/
auth_sync_observer.cc 49 GoogleServiceAuthError::State state = local
50 sync_service->GetAuthError().state();
51 if (state != GoogleServiceAuthError::NONE &&
52 state != GoogleServiceAuthError::CONNECTION_FAILED &&
53 state != GoogleServiceAuthError::SERVICE_UNAVAILABLE &&
54 state != GoogleServiceAuthError::REQUEST_CANCELED) {
77 } else if (state == GoogleServiceAuthError::NONE) {
  /external/chromium_org/remoting/protocol/
negotiating_authenticator_base.cc 30 Authenticator::State initial_state)
39 Authenticator::State NegotiatingAuthenticatorBase::state() const { function in class:remoting::protocol::NegotiatingAuthenticatorBase
51 if (current_authenticator_->state() == WAITING_MESSAGE) {
68 // NegotiatingAuthenticatorBase must update its own state before running the
70 state_ = current_authenticator_->state();
78 DCHECK_EQ(state(), MESSAGE_READY);
82 if (current_authenticator_->state() == MESSAGE_READY) {
87 state_ = current_authenticator_->state();
101 DCHECK_EQ(state(), ACCEPTED)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleBuilderConverter.h 60 T StyleBuilderConverter::convertComputedLength(StyleResolverState& state, CSSValue* value)
62 return toCSSPrimitiveValue(value)->computeLength<T>(state.cssToLengthConversionData());
66 T StyleBuilderConverter::convertLineWidth(StyleResolverState& state, CSSValue* value)
77 return intValueForLength(primitiveValue->viewportPercentageLength(), 0, state.document().renderView());
81 T result = primitiveValue->computeLength<T>(state.cssToLengthConversionData());
82 if (state.style()->effectiveZoom() < 1.0f && result < 1.0) {
83 T originalLength = primitiveValue->computeLength<T>(state.cssToLengthConversionData().copyWithAdjustedZoom(1.0));
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i915/
i830_texblend.c 46 pass_through(GLuint * state, GLuint blendUnit)
48 state[0] = (_3DSTATE_MAP_BLEND_OP_CMD(blendUnit) |
54 state[1] = (_3DSTATE_MAP_BLEND_OP_CMD(blendUnit) |
59 state[2] = (_3DSTATE_MAP_BLEND_ARG_CMD(blendUnit) |
63 state[3] = (_3DSTATE_MAP_BLEND_ARG_CMD(blendUnit) |
72 emit_factor(GLuint blendUnit, GLuint * state, GLuint count,
89 state[count++] = _3DSTATE_COLOR_FACTOR_N_CMD(blendUnit);
90 state[count++] = col;
136 GLuint texel_op, GLuint * state, const GLfloat * factor)
215 return pass_through(state, blendUnit)
    [all...]
  /external/chromium_org/third_party/skia/src/ports/
SkPurgeableMemoryBlock_mac.cpp 23 int state = 0; local
24 kern_return_t ret = vm_purgable_control(mach_task_self(), 0, VM_PURGABLE_PURGE_ALL, &state);
70 int state = VM_PURGABLE_NONVOLATILE; local
73 VM_PURGABLE_SET_STATE, &state);
82 if (state & VM_PURGABLE_EMPTY) {
93 int state = VM_PURGABLE_VOLATILE | VM_VOLATILE_GROUP_DEFAULT; local
96 VM_PURGABLE_SET_STATE, &state); local
  /external/chromium_org/v8/src/
hydrogen-escape-analysis.cc 88 HCapturedObject* state = local
90 state->InsertAfter(previous);
91 return state;
95 // Create a new state for replacing HAllocate instructions.
99 HCapturedObject* state = NewState(previous); local
101 state->SetOperandAt(index, undefined);
103 return state;
107 // Create a new state full of phis for loop header entries.
112 HCapturedObject* state = NewState(previous); local
116 state->SetOperandAt(index, phi)
126 HCapturedObject* state = NewState(previous); local
177 HCapturedObject* state = StateAt(block); local
    [all...]
  /external/mesa3d/src/mesa/drivers/dri/i915/
i830_texblend.c 46 pass_through(GLuint * state, GLuint blendUnit)
48 state[0] = (_3DSTATE_MAP_BLEND_OP_CMD(blendUnit) |
54 state[1] = (_3DSTATE_MAP_BLEND_OP_CMD(blendUnit) |
59 state[2] = (_3DSTATE_MAP_BLEND_ARG_CMD(blendUnit) |
63 state[3] = (_3DSTATE_MAP_BLEND_ARG_CMD(blendUnit) |
72 emit_factor(GLuint blendUnit, GLuint * state, GLuint count,
89 state[count++] = _3DSTATE_COLOR_FACTOR_N_CMD(blendUnit);
90 state[count++] = col;
136 GLuint texel_op, GLuint * state, const GLfloat * factor)
215 return pass_through(state, blendUnit)
    [all...]
  /external/skia/src/ports/
SkPurgeableMemoryBlock_mac.cpp 23 int state = 0; local
24 kern_return_t ret = vm_purgable_control(mach_task_self(), 0, VM_PURGABLE_PURGE_ALL, &state);
70 int state = VM_PURGABLE_NONVOLATILE; local
73 VM_PURGABLE_SET_STATE, &state);
82 if (state & VM_PURGABLE_EMPTY) {
93 int state = VM_PURGABLE_VOLATILE | VM_VOLATILE_GROUP_DEFAULT; local
96 VM_PURGABLE_SET_STATE, &state); local
  /external/webrtc/src/common_audio/signal_processing/
filter_ar.c 24 WebRtc_Word16* state,
45 WebRtc_Word16* state_ptr = &state[state_length - 1];
69 // Save the filter state
72 WebRtcSpl_CopyFromEndW16(filtered, x_length, a_length - 1, state);
78 state[i] = state[i + x_length];
83 state[state_length - x_length + i] = filtered[i];
84 state[state_length - x_length + i] = filtered_low[i];
  /frameworks/rs/driver/runtime/
rs_structs.h 44 } state; member in struct:Allocation::__anon30646
96 } state; member in struct:ProgramStore::__anon30648
124 } state; member in struct:ProgramRaster::__anon30650
156 } state; member in struct:Sampler::__anon30652
194 } state; member in struct:Element::__anon30654
230 } state; member in struct:Type::__anon30656
264 } state; member in struct:Mesh::__anon30658
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
move01.pass.cpp 44 int state() const {return state_;} function in class:NCDeleter
68 assert(s2.get_deleter().state() == 5);
69 assert(s.get_deleter().state() == 0);
81 assert(s2.get_deleter().state() == d.state());
82 assert(s.get_deleter().state() == d.state());
  /external/bluetooth/bluedroid/stack/rfcomm/
rfc_mx_fsm.c 21 * This file contains state machine and action routines for multiplexer
60 ** Description This function sends multiplexor events through the state
68 switch (p_mcb->state)
107 ** IDLE state. This state exists when connection is being
131 p_mcb->state = RFC_MX_STATE_WAIT_CONN_CNF;
138 RFCOMM_TRACE_ERROR2 ("Mx error state %d event %d", p_mcb->state, event);
148 p_mcb->state = RFC_MX_STATE_CONFIGURE;
166 RFCOMM_TRACE_EVENT2 ("RFCOMM MX ignored - evt:%d in state:%d", event, p_mcb->state)
    [all...]
  /frameworks/base/core/java/android/view/
InputEventConsistencyVerifier.java 74 // Linked list of key state objects.
77 // Current state of the trackball.
140 * Resets the state of the input event consistency verifier.
153 final KeyState state = mKeyStateList; local
154 mKeyStateList = state.next;
155 state.recycle();
207 KeyState state = findKeyState(deviceId, source, keyCode, /*remove*/ false); local
208 if (state != null) {
213 if (state.unhandled) {
214 state.unhandled = false
226 KeyState state = findKeyState(deviceId, source, keyCode, \/*remove*\/ true); local
534 final KeyState state = findKeyState(deviceId, source, keyCode, \/*remove*\/ false); local
670 KeyState state = mKeyStateList; local
691 KeyState state = KeyState.obtain(deviceId, source, keyCode); local
710 KeyState state; local
    [all...]
  /ndk/sources/host-tools/make-3.81/
vmsify.c 337 int state; local
340 state = 0;
345 switch (state)
351 state = 1;
356 state = 10;
359 state = 2;
366 state = 3;
369 state = 4;
384 state = -1;
392 state = 7
    [all...]
  /external/openssh/openbsd-compat/
sha2.c 286 memcpy(context->state, sha256_initial_hash_value,
318 SHA256_Transform(u_int32_t state[8], const u_int8_t data[SHA256_BLOCK_LENGTH])
325 a = state[0];
326 b = state[1];
327 c = state[2];
328 d = state[3];
329 e = state[4];
330 f = state[5];
331 g = state[6];
332 h = state[7]
    [all...]
  /external/chromium_org/content/common/
page_state_serialization.cc 487 const ExplodedFrameState& state, SerializeObject* obj, bool is_top) {
494 WriteString(state.url_string, obj);
495 WriteString(state.original_url_string, obj);
496 WriteString(state.target, obj);
497 WriteInteger(state.scroll_offset.x(), obj);
498 WriteInteger(state.scroll_offset.y(), obj);
499 WriteString(state.referrer, obj);
501 WriteStringVector(state.document_state, obj);
503 WriteReal(state.page_scale_factor, obj);
504 WriteInteger64(state.item_sequence_number, obj)
    [all...]
  /external/opencv/cv/src/
cvstereogc.cpp 370 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->interactionRadius = 1
393 CvStereoGCState* state; local
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
inffast.c 42 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->whave
    [all...]
  /external/srtp/crypto/cipher/
aes.c     [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_tls.c 22 enum { START, CONTINUE, SUCCESS, FAILURE } state; member in struct:eap_tls_data
28 static const char * eap_tls_state_txt(int state)
30 switch (state) {
45 static void eap_tls_state(struct eap_tls_data *data, int state)
48 eap_tls_state_txt(data->state),
49 eap_tls_state_txt(state));
50 data->state = state;
61 data->state = START;
83 data->state = START
    [all...]
  /frameworks/base/core/java/android/content/
UndoManager.java 28 * Top-level class for managing and interacting with the global undo state for
34 * a stack of undo states; each state can have one or more undo operations
72 * Never merge with the last undo state.
77 * Allow merge with the last undo state only if it contains
83 * Always allow merge with the last undo state, if possible.
122 * Flatten the current undo state into a Parcelable object, which can later be restored
127 throw new IllegalStateException("Can't save state while updating");
170 * Restore an undo state previously created with {@link #saveInstanceState()}. This will
171 * restore the UndoManager's state to almost exactly what it was at the point it had
176 public void restoreInstanceState(Parcelable state) {
252 UndoState state = mUndos.remove(i); local
284 UndoState state = mRedos.remove(i); local
312 UndoState state = mUndos.get(i); local
330 UndoState state = mRedos.get(i); local
385 UndoState state = getTopUndo(owners); local
395 UndoState state = getTopRedo(owners); local
516 UndoState state = getTopUndo(null); local
549 UndoState state = getTopUndo(null); local
624 UndoState state = getTopUndo(null); local
648 UndoState state = getTopUndo(null); local
700 UndoState state = states.get(from); local
724 UndoState state = states.get(from); local
    [all...]
  /frameworks/base/libs/hwui/
DeferredDisplayList.cpp 69 virtual void add(DrawOp* op, const DeferredDisplayState* state, bool opaqueOverBounds) {
71 mBounds.unionWith(state->mBounds);
73 mOps.add(OpStatePair(op, state));
80 if (rect.intersects(mOps[i].state->mBounds)) {
83 mOps[i].state->mBounds.left, mOps[i].state->mBounds.top,
84 mOps[i].state->mBounds.right, mOps[i].state->mBounds.bottom);
101 const DeferredDisplayState* state = mOps[i].state; local
493 DeferredDisplayState* const state = createState(); local
619 DeferredDisplayState* state = createState(); local
632 DeferredDisplayState* state = createState(); local
    [all...]

Completed in 507 milliseconds

<<21222324252627282930>>