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

<<11121314151617181920>>

  /external/doclava/src/com/google/doclava/parser/
JavaParser.java 434 public JavaParser(TokenStream input, int port, RecognizerSharedState state) {
435 super(input, state);
436 this.state.ruleMemo = new HashMap[381+1];
450 this.state.ruleMemo = new HashMap[381+1];
474 if ( state.backtracking>0 && alreadyParsedRule(input, 1) ) { return ; }
525 state._fsp--;
526 if (state.failed) return ;
538 state._fsp--;
539 if (state.failed) return ;
575 state._fsp--
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 38 ProgramStateRef state = (*it)->getState(); local
40 SVal LeftV = state->getSVal(LHS, LCtx);
41 SVal RightV = state->getSVal(RHS, LCtx);
55 evalStore(Tmp2, B, LHS, *it, state->BindExpr(B, LCtx, ExprVal),
86 SVal Result = evalBinOp(state, Op, LeftV, RightV, B->getType());
88 Bldr.generateNode(B, *it, state);
92 state = state->BindExpr(B, LCtx, Result);
93 Bldr.generateNode(B, *it, state);
118 evalLoad(Tmp, B, LHS, *it, state, location)
229 ProgramStateRef state = subExprNode->getState(); local
248 ProgramStateRef state = Pred->getState(); local
275 ProgramStateRef state = Pred->getState(); local
453 ProgramStateRef state = N->getState(); local
510 ProgramStateRef state = Pred->getState(); local
578 ProgramStateRef state = Pred->getState(); local
632 ProgramStateRef state = Pred->getState(); local
731 ProgramStateRef state = Pred->getState(); local
761 ProgramStateRef state = Pred->getState(); local
776 ProgramStateRef state = Pred->getState(); local
797 ProgramStateRef state = Pred->getState(); local
809 ProgramStateRef state = Pred->getState(); local
868 ProgramStateRef state = Pred->getState(); local
    [all...]
  /external/icu4c/tools/genrb/
parse.cpp 93 ParseResourceFunction(ParseState* state, char *tag, uint32_t startline, const struct UString* comment, UErrorCode *status);
95 static struct SResource *parseResource(ParseState* state, char *tag, const struct UString *comment, UErrorCode *status);
111 initLookahead(ParseState* state, UCHARBUF *buf, UErrorCode *status)
121 state->lookaheadPosition = 0;
122 state->buffer = buf;
128 state->lookahead[i].type = getNextToken(state->buffer, &state->lookahead[i].value, &state->lookahead[i].line, &state->lookahead[i].comment, status)
2051 ParseState state; local
    [all...]
  /external/ceres-solver/internal/ceres/
program.h 68 // NOTE: Setting the state of a parameter block can trigger the
71 // false and the state of the parameter blocks cannot be trusted.
72 bool StateVectorToParameterBlocks(const double *state);
73 void ParameterBlocksToStateVector(double *state) const;
75 // Copy internal state to the user's parameters.
79 // runs parameter block set state internally, which may call local
83 // Update a state vector for the program given a delta.
84 bool Plus(const double* state,
99 // position of the parameter in the state and delta vector respectively.
  /external/chromium/base/
string_tokenizer.h 188 AdvanceState state; local
195 if (AdvanceOne(&state, *token_begin_))
203 while (token_end_ != end_ && AdvanceOne(&state, *token_end_))
224 bool AdvanceOne(AdvanceState* state, char_type c) {
225 if (state->in_quote) {
226 if (state->in_escape) {
227 state->in_escape = false;
229 state->in_escape = true;
230 } else if (c == state->quote_char) {
231 state->in_quote = false
    [all...]
  /external/chromium/chrome/browser/
transport_security_persister.h 10 // At startup we need to load the transport security state from the
16 // To load the state, we schedule a Task on the file thread which loads,
30 // copies the current state of the TransportSecurityState, serialises
47 void Initialize(net::TransportSecurityState* state,
50 // Called by the TransportSecurityState when it changes its state.
59 void CompleteLoad(const std::string& state);
62 void CompleteSave(const std::string& state);
70 // The path to the file in which we store the serialised state.
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_state.h 24 // bookmark bar's state.
34 // Returns YES if the bookmark bar is in the given state and not in an
36 - (BOOL)isInState:(bookmarks::VisualState)state;
38 // Returns YES if the bookmark bar is animating from the given state (to any
39 // other state), NO otherwise.
40 - (BOOL)isAnimatingToState:(bookmarks::VisualState)state;
42 // Returns YES if the bookmark bar is animating to the given state (from any
43 // other state), NO otherwise.
44 - (BOOL)isAnimatingFromState:(bookmarks::VisualState)state;
46 // Returns YES if the bookmark bar is animating from the first given state t
    [all...]
  /external/chromium/third_party/libjingle/source/talk/examples/call/
muc.h 43 enum State { MUC_JOINING, MUC_JOINED, MUC_LEAVING };
44 State state() const { return state_; } function in class:buzz::Muc
45 void set_state(State state) { state_ = state; }
58 State state_;
  /external/chromium_org/base/strings/
string_tokenizer.h 189 AdvanceState state; local
196 if (AdvanceOne(&state, *token_begin_))
204 while (token_end_ != end_ && AdvanceOne(&state, *token_end_))
225 bool AdvanceOne(AdvanceState* state, char_type c) {
226 if (state->in_quote) {
227 if (state->in_escape) {
228 state->in_escape = false;
230 state->in_escape = true;
231 } else if (c == state->quote_char) {
232 state->in_quote = false
    [all...]
  /external/chromium_org/cc/resources/
managed_tile_state.cc 99 scoped_ptr<base::DictionaryValue> state(new base::DictionaryValue());
100 state->SetBoolean("has_resource", has_resource);
101 state->SetBoolean("is_using_gpu_memory", is_using_gpu_memory);
102 state->Set("bin", ManagedTileBinAsValue(bin).release());
103 state->Set("resolution", TileResolutionAsValue(resolution).release());
104 state->Set("time_to_needed_in_seconds",
106 state->Set("distance_to_visible_in_pixels",
108 state->SetBoolean("required_for_activation", required_for_activation);
109 state->SetBoolean(
112 state->SetBoolean
    [all...]
  /external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_state.h 13 // bookmark bar's state.
23 // Returns YES if the bookmark bar is in the given state and not in an
25 - (BOOL)isInState:(BookmarkBar::State)state;
27 // Returns YES if the bookmark bar is animating from the given state (to any
28 // other state), NO otherwise.
29 - (BOOL)isAnimatingToState:(BookmarkBar::State)state;
31 // Returns YES if the bookmark bar is animating to the given state (from any
32 // other state), NO otherwise
    [all...]
  /external/chromium_org/sandbox/linux/seccomp-bpf/
verifier.cc 17 struct State {
18 State(const std::vector<struct sock_filter>& p,
28 DISALLOW_IMPLICIT_CONSTRUCTORS(State);
222 void Ld(State* state, const struct sock_filter& insn, const char** err) {
229 memcpy(&state->accumulator,
230 reinterpret_cast<const char*>(&state->data) + insn.k,
236 state->acc_is_valid = true;
240 void Jmp(State* state, const struct sock_filter& insn, const char** err)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLTreeBuilderSimulator.h 48 typedef Vector<Namespace, 1> State;
52 static State stateFor(HTMLTreeBuilder*);
54 const State& state() const { return m_namespaceStack; } function in class:WebCore::HTMLTreeBuilderSimulator
55 void setState(const State& state) { m_namespaceStack = state; }
65 State m_namespaceStack;
  /external/chromium_org/third_party/libjingle/source/talk/examples/call/
muc.h 43 enum State { MUC_JOINING, MUC_JOINED, MUC_LEAVING };
44 State state() const { return state_; } function in class:buzz::Muc
45 void set_state(State state) { state_ = state; }
58 State state_;
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/cso_cache/
cso_cache.c 90 static void delete_blend_state(void *state, void *data)
92 struct cso_blend *cso = (struct cso_blend *)state;
95 FREE(state);
98 static void delete_depth_stencil_state(void *state, void *data)
100 struct cso_depth_stencil_alpha *cso = (struct cso_depth_stencil_alpha *)state;
103 FREE(state);
106 static void delete_sampler_state(void *state, void *data)
108 struct cso_sampler *cso = (struct cso_sampler *)state;
111 FREE(state);
114 static void delete_rasterizer_state(void *state, void *data
271 void *state = cso_hash_iter_data(iter); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_state_blend.c 48 struct pipe_blend_state *state = mem_dup(blend, sizeof *blend); local
52 state->independent_blend_enable = 0;
54 state->rt[i].blend_enable = 0;
57 return state;
104 /** XXX move someday? Or consolidate all these simple state setters
113 struct pipe_depth_stencil_alpha_state *state; local
115 state = mem_dup(depth_stencil, sizeof *depth_stencil);
118 state->depth.enabled = 0;
119 state->depth.writemask = 0;
120 state->stencil[0].enabled = 0
    [all...]
  /external/chromium_org/ui/native_theme/
native_theme_aura.h 30 State state,
36 State state,
41 State state,
  /external/mesa3d/src/gallium/auxiliary/cso_cache/
cso_cache.c 90 static void delete_blend_state(void *state, void *data)
92 struct cso_blend *cso = (struct cso_blend *)state;
95 FREE(state);
98 static void delete_depth_stencil_state(void *state, void *data)
100 struct cso_depth_stencil_alpha *cso = (struct cso_depth_stencil_alpha *)state;
103 FREE(state);
106 static void delete_sampler_state(void *state, void *data)
108 struct cso_sampler *cso = (struct cso_sampler *)state;
111 FREE(state);
114 static void delete_rasterizer_state(void *state, void *data
271 void *state = cso_hash_iter_data(iter); local
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_state_blend.c 48 struct pipe_blend_state *state = mem_dup(blend, sizeof *blend); local
52 state->independent_blend_enable = 0;
54 state->rt[i].blend_enable = 0;
57 return state;
104 /** XXX move someday? Or consolidate all these simple state setters
113 struct pipe_depth_stencil_alpha_state *state; local
115 state = mem_dup(depth_stencil, sizeof *depth_stencil);
118 state->depth.enabled = 0;
119 state->depth.writemask = 0;
120 state->stencil[0].enabled = 0
    [all...]
  /external/speex/include/speex/
speex.h 54 /** Get enhancement state (decoder only) */
220 /** Encoder state initialization function */
223 /** Encoder state destruction function */
227 typedef int (*encode_func)(void *state, void *in, SpeexBits *bits);
230 typedef int (*encoder_ctl_func)(void *state, int request, void *ptr);
232 /** Decoder state initialization function */
235 /** Decoder state destruction function */
239 typedef int (*decode_func)(void *state, SpeexBits *bits, void *out);
242 typedef int (*decoder_ctl_func)(void *state, int request, void *ptr);
293 * Returns a handle to a newly created Speex encoder state structure. For now,
    [all...]
  /frameworks/av/libvideoeditor/osal/inc/
LV_Macros.h 72 * @note This macro compares a current state with a state value. If they are different,
78 #define CHECK_STATE(fct, stateValue, state) \
80 if((stateValue) != (state)) \
82 M4OSA_TRACE1_1("" #fct " called in bad state %d", state) ; \
  /frameworks/base/media/jni/
android_media_AmrInputStream.cpp 63 GsmAmrEncoderState *state = (GsmAmrEncoderState *) gae; local
64 int32_t nResult = AMREncodeInit(&state->mEncState, &state->mSidState, false);
79 GsmAmrEncoderState *state = (GsmAmrEncoderState *) gae; local
80 int32_t length = AMREncode(state->mEncState, state->mSidState,
84 (Frame_Type_3GPP*) &state->mLastModeUsed,
109 GsmAmrEncoderState *state = (GsmAmrEncoderState *)gae; local
110 AMREncodeExit(&state->mEncState, &state->mSidState)
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HasAttributeNS.java 79 boolean state;
83 state = testNode.hasAttributeNS(namespaceURI, localName);
84 assertFalse("throw_False", state);
92 boolean state;
96 state = testNode.hasAttributeNS(namespaceURI, localName);
97 assertFalse("throw_False", state);
105 boolean state;
110 state = testNode.hasAttributeNS(namespaceURI, localName);
111 assertFalse("throw_False", state);
121 // boolean state;
    [all...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/decoder/
QuotedPrintableInputStream.java 43 private byte state = 0; field in class:QuotedPrintableInputStream
128 switch (state) {
129 case 0: // start state, no bytes pending
132 break; // state remains 0
134 state = 1;
139 state = 2;
142 state = 3;
148 * Emit one = and stay in this state.
160 state = 0;
167 state = 0;
    [all...]
  /external/chromium_org/third_party/mesa/src/chromium_gensrc/mesa/
builtin_function.cpp     [all...]

Completed in 1282 milliseconds

<<11121314151617181920>>