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

<<51525354555657585960>>

  /external/chromium_org/third_party/tcmalloc/chromium/src/
profile-handler.h 133 * Stores profile handler's current state. This function is not
142 void ProfileHandlerGetState(struct ProfileHandlerState* state);
  /external/chromium_org/third_party/tcmalloc/vendor/src/
profile-handler.h 133 * Stores profile handler's current state. This function is not
142 void ProfileHandlerGetState(struct ProfileHandlerState* state);
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
dfa.c 55 State_out(FILE *o, const State *s){
57 fprintf(o, "state %u", s->label);
68 State *s;
75 State *
78 State *s = malloc(sizeof(State));
94 State_delete(State *s)
141 State *s = d->toDo;
173 State *to = (State*) goTo[rep[j]].to
    [all...]
  /external/chromium_org/ui/aura/test/
ui_controls_factory_aurawin.cc 64 virtual bool SendMouseEvents(MouseButton type, int state) {
65 return SendMouseEventsImpl(type, state, base::Closure());
68 int state,
70 return SendMouseEventsImpl(type, state, task);
  /external/chromium_org/ui/base/gtk/
event_synthesis_gtk.h 25 guint state);
  /external/chromium_org/ui/base/test/
ui_controls_internal_win.h 25 int state,
  /external/chromium_org/ui/views/controls/button/
blue_button.cc 68 for (size_t state = STATE_NORMAL; state < STATE_COUNT; ++state)
69 SetTextColor(static_cast<ButtonState>(state), kBlueButtonTextColor);
  /external/chromium_org/ui/views/controls/
separator.h 32 virtual void GetAccessibleState(ui::AccessibleViewState* state) OVERRIDE;
  /external/chromium_org/webkit/child/
webfallbackthemeengine_impl.h 27 WebKit::WebFallbackThemeEngine::State state,
  /external/clang/lib/StaticAnalyzer/Checkers/
UndefResultChecker.cpp 40 ProgramStateRef state = C.getState(); local
42 if (state->getSVal(B, LCtx).isUndef()) {
65 if (state->getSVal(B->getLHS(), LCtx).isUndef()) {
69 else if (state->getSVal(B->getRHS(), LCtx).isUndef()) {
  /external/clang/test/SemaObjC/
foreach.m 29 unsigned long state;
37 - (unsigned long)countByEnumeratingWithState:(NSFastEnumerationState *)state objects:(id *)stackbuf count:(unsigned long)len;
  /external/elfutils/libelf/
gelf_getphdr.c 90 Elf32_Phdr *phdr = elf->state.elf32.phdr;
103 if (ndx >= elf->state.elf32.ehdr->e_phnum)
128 Elf64_Phdr *phdr = elf->state.elf64.phdr;
141 if (ndx >= elf->state.elf64.ehdr->e_phnum)
gelf_update_phdr.c 79 Elf32_Phdr *phdr = elf->state.elf32.phdr;
104 if (unlikely (ndx >= elf->state.elf32.ehdr->e_phnum))
126 Elf64_Phdr *phdr = elf->state.elf64.phdr;
137 if (unlikely (ndx >= elf->state.elf64.ehdr->e_phnum))
  /external/grub/stage2/
md5.c 89 static UINT4 state[4]; variable
100 a = state[0];
101 b = state[1];
102 c = state[2];
103 d = state[3];
138 state[0] += a;
139 state[1] += b;
140 state[2] += c;
141 state[3] += d;
147 memcpy ((char *) state, (char *) initstate, sizeof (initstate))
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
Service.java 24 * An object with an operational state, plus asynchronous {@link #start()} and
25 * {@link #stop()} lifecycle methods to transfer into and out of this state.
29 * <li>{@link State#NEW} -&gt;</li>
30 * <li>{@link State#STARTING} -&gt;</li>
31 * <li>{@link State#RUNNING} -&gt;</li>
32 * <li>{@link State#STOPPING} -&gt;</li>
33 * <li>{@link State#TERMINATED}</li>
36 * If the service fails while starting, running or stopping, its state will be
37 * {@link State#FAILED}, and its behavior is undefined. Such a service cannot be
42 * make the threading and state management easier
87 State state(); method in interface:Service
    [all...]
  /external/ipsec-tools/src/racoon/missing/crypto/sha2/
sha2.h 91 uint32_t state[8];
96 uint64_t state[8];
104 u_int32_t state[8]; member in struct:_SHA256_CTX
109 u_int64_t state[8]; member in struct:_SHA512_CTX
  /external/jmonkeyengine/engine/src/core/com/jme3/app/state/
AppState.java 33 package com.jme3.app.state;
42 * are initialized in the render thread, upon a call to {@link AppState#initialize(com.jme3.app.state.AppStateManager, com.jme3.app.Application) }
55 * @param stateManager The state manager
61 * @return True if <code>initialize()</code> was called on the state,
82 * Called when the state was attached.
84 * @param stateManager State manager to which the state was attached to.
89 * Called when the state was detached.
91 * @param stateManager The state manager from which the state was detached from
    [all...]
  /external/kernel-headers/original/asm-arm/arch/
gpio-switch.h 40 * inactive state to active state. */
42 /* Same for transition from active to inactive state. */
45 /* notify board-specific code about state changes */
46 void (* notify)(void *data, int state);
  /external/lzma/Java/SevenZip/Compression/LZMA/
Decoder.java 208 int state = Base.StateInit(); local
216 if (m_RangeDecoder.DecodeBit(m_IsMatchDecoders, (state << Base.kNumPosStatesBitsMax) + posState) == 0)
219 if (!Base.StateIsCharState(state))
224 state = Base.StateUpdateChar(state);
230 if (m_RangeDecoder.DecodeBit(m_IsRepDecoders, state) == 1)
233 if (m_RangeDecoder.DecodeBit(m_IsRepG0Decoders, state) == 0)
235 if (m_RangeDecoder.DecodeBit(m_IsRep0LongDecoders, (state << Base.kNumPosStatesBitsMax) + posState) == 0)
237 state = Base.StateUpdateShortRep(state);
    [all...]
  /external/openssl/ssl/
d1_clnt.c 153 int new_state,state,skip=0; local
194 state=s->state;
196 switch(s->state)
200 s->state=SSL_ST_CONNECT;
245 s->state=SSL3_ST_CW_CLNT_HELLO_A;
267 s->state=s->s3->tmp.next_state;
286 s->state=s->d1->next_state;
304 s->state=SSL3_ST_CW_FLUSH;
308 s->state=SSL3_ST_CR_SRVR_HELLO_A
    [all...]
  /external/skia/src/pdf/
SkPDFShader.h 47 class State;
51 ShaderCanonicalEntry(SkPDFObject* pdfShader, const State* state);
55 const State* fState;
64 static SkPDFObject* GetPDFShaderByState(State* shaderState);
  /external/sonivox/arm-fm-22k/lib_src/
eas_rtttldata.h 45 * This structure contains the state data for the iMelody parser
61 EAS_U8 state; /* current state EAS_STATE_XXXX */ member in struct:__anon28094
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_rtttldata.h 45 * This structure contains the state data for the iMelody parser
61 EAS_U8 state; /* current state EAS_STATE_XXXX */ member in struct:__anon28144
  /external/sonivox/arm-wt-22k/lib_src/
eas_rtttldata.h 45 * This structure contains the state data for the iMelody parser
61 EAS_U8 state; /* current state EAS_STATE_XXXX */ member in struct:__anon28196
eas_tcdata.h 41 * This structure contains the state data for the ToneControl parser
53 EAS_U8 state; /* current state EAS_STATE_XXXX */ member in struct:__anon28199

Completed in 3379 milliseconds

<<51525354555657585960>>