Searched defs:state (Results 126 - 150 of 1540) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DRecognizerSharedState.cs40 * and recover from errors etc... As a separate state object, it can be
45 * These fields are publically visible but the actual state pointer per
108 // LEXER FIELDS (must be in same state object to avoid casting
159 public RecognizerSharedState(RecognizerSharedState state) { argument
160 if (state == null)
161 throw new ArgumentNullException("state");
163 following = (BitSet[])state.following.Clone();
164 _fsp = state._fsp;
165 errorRecovery = state.errorRecovery;
166 lastErrorIndex = state
[all...]
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugParser.cs55 public DebugParser(ITokenStream input, IDebugEventListener dbg, RecognizerSharedState state) argument
56 : base(input is DebugTokenStream ? input : new DebugTokenStream(input, dbg), state) {
60 public DebugParser(ITokenStream input, RecognizerSharedState state) argument
61 : base(input is DebugTokenStream ? input : new DebugTokenStream(input, null), state) {
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeRewriter.cs46 public TreeRewriter(ITreeNodeStream input, RecognizerSharedState state) argument
47 : base(input, state) {
59 // share TreeParser object but not parsing-related state
60 state = new RecognizerSharedState();
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DParser.java39 super(); // highlight that we go to super to set state object
43 public Parser(TokenStream input, RecognizerSharedState state) { argument
44 super(state); // share the state object with another parser
49 super.reset(); // reset all recognizer state variables
H A DRecognizerSharedState.java32 * and recover from errors etc... As a separate state object, it can be
35 * These fields are publically visible but the actual state pointer per
83 // LEXER FIELDS (must be in same state object to avoid casting
122 public RecognizerSharedState(RecognizerSharedState state) { argument
123 if ( this.following.length < state.following.length ) {
124 this.following = new BitSet[state.following.length];
126 System.arraycopy(state.following, 0, this.following, 0, state.following.length);
127 this._fsp = state._fsp;
128 this.errorRecovery = state
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
H A DDebugParser.java46 public DebugParser(TokenStream input, DebugEventListener dbg, RecognizerSharedState state) { argument
47 super(input instanceof DebugTokenStream?input:new DebugTokenStream(input,dbg), state);
51 public DebugParser(TokenStream input, RecognizerSharedState state) { argument
52 super(input instanceof DebugTokenStream?input:new DebugTokenStream(input,null), state);
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/tree/
H A DTreeFilter.java89 public TreeFilter(TreeNodeStream input, RecognizerSharedState state) { argument
90 super(input, state);
98 // share TreeParser object but not parsing-related state
99 state = new RecognizerSharedState();
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DNFAConfiguration.java32 /** An NFA state, predicted alt, and syntactic/semantic context.
34 * chain used to arrive at the state. The semantic context is
36 * an NFA state.
39 /** The NFA state associated with this configuration */
40 public int state; field in class:NFAConfiguration
45 /** What is the stack of rule invocations that got us to state? */
50 * the associated NFA state in this syntactic context.
82 /** Indicates that the NFA state associated with this configuration
89 public NFAConfiguration(int state, argument
94 this.state
[all...]
H A DNFAContext.java40 * To "push" a new context, just do "new NFAContext(context-parent, state)"
56 * stack component may mention the same NFA invocation state at
85 * can't ever visit a state that is on your rule invocation stack.
103 /** The NFA state that invoked another rule's start state is recorded
109 * uses it to track when it's seen a state|ctx before to avoid
168 * single NFA state's configurations within a single DFA state.
169 * If there are configurations s and t within a DFA state such that
170 * s.state
249 recursionDepthEmanatingFromState(int state) argument
[all...]
/external/apache-http/src/org/apache/http/conn/
H A DClientConnectionManager.java70 ClientConnectionRequest requestConnection(HttpRoute route, Object state) argument
/external/bison/lib/
H A Dstrverscmp.c66 int state; local
73 /* state x d 0 - */
82 /* state x/x x/d x/0 x/- d/x d/d d/0 d/-
101 state = S_N | ((c1 == '0') + (ISDIGIT (c1) != 0));
105 state = next_state[state];
108 state |= (c1 == '0') + (ISDIGIT (c1) != 0);
111 state = result_type[state << 2 | ((c2 == '0') + (ISDIGIT (c2) != 0))];
113 switch (state)
[all...]
/external/blktrace/
H A Dstrverscmp.c94 int state; local
101 /* state x d 0 - */
110 /* state x/x x/d x/0 x/- d/x d/d d/0 d/-
129 state = S_N | ((c1 == '0') + (isdigit (c1) != 0));
133 state = next_state[state];
136 state |= (c1 == '0') + (isdigit (c1) != 0);
139 state = result_type[state << 2 | (((c2 == '0') + (isdigit (c2) != 0)))];
141 switch (state)
[all...]
/external/chromium/chrome/browser/policy/
H A Dpolicy_notifier.h14 // Keeps track of the state of the policy subsystem components as far as it's
16 // changes (failures and successes), determines the overall state and
34 // state and triggers observer notifications as necessary.
35 void Inform(PolicySubsystemState state,
39 CloudPolicySubsystem::PolicySubsystemState state() const { function in class:policy::PolicyNotifier
/external/chromium/chrome/browser/
H A Dshell_integration.cc99 DefaultBrowserState state = ShellIntegration::IsDefaultBrowser(); local
103 this, &DefaultBrowserWorker::CompleteCheckDefaultBrowser, state));
107 DefaultBrowserState state) {
109 UpdateUI(state);
130 DefaultBrowserState state) {
132 switch (state) {
106 CompleteCheckDefaultBrowser( DefaultBrowserState state) argument
129 UpdateUI( DefaultBrowserState state) argument
/external/chromium/chrome/browser/sync/glue/
H A Dautofill_data_type_controller.h52 virtual State state() const;
76 void StartDone(StartResult result, State state);
77 void StartDoneImpl(StartResult result, State state,
88 void set_state(State state) { argument
90 state_ = state;
H A Dpassword_data_type_controller.h50 virtual State state() const;
58 void StartDone(StartResult result, State state);
59 void StartDoneImpl(StartResult result, State state);
65 void set_state(State state) { argument
67 state_ = state;
/external/chromium/chrome/browser/ui/views/location_bar/
H A Dstar_view.cc35 void StarView::GetAccessibleState(ui::AccessibleViewState* state) { argument
36 state->name = l10n_util::GetStringUTF16(IDS_ACCNAME_STAR);
37 state->role = ui::AccessibilityTypes::ROLE_PUSHBUTTON;
/external/chromium/net/base/
H A Dauth.h51 AuthState state; // whether we need, have, or gave up on authentication. member in class:net::AuthData
/external/chromium/third_party/libjingle/source/talk/examples/login/
H A Dxmppthread.cc66 void XmppThread::OnStateChange(buzz::XmppEngine::State state) { argument
/external/chromium/third_party/libjingle/source/talk/xmpp/
H A Dxmppclient.h128 // Internal state management
133 int Process(int state) { argument
134 switch (state) {
137 default: return Task::Process(state);
141 std::string GetStateName(int state) const {
142 switch (state) {
145 default: return Task::GetStateName(state);
/external/clang/lib/StaticAnalyzer/Checkers/
H A DBuiltinFunctionChecker.cpp34 ProgramStateRef state = C.getState(); local
49 SVal X = state->getSVal(*(CE->arg_begin()), LCtx);
50 C.addTransition(state->BindExpr(CE, LCtx, X));
64 state->getSVal(*(CE->arg_begin()), LCtx).castAs<DefinedOrUnknownSVal>();
69 svalBuilder.evalEQ(state, Extent, Size);
70 state = state->assume(extentMatchesSizeArg, true);
71 assert(state && "The region should not have any previous constraints");
73 C.addTransition(state->BindExpr(CE, LCtx, loc::MemRegionVal(R)));
H A DNoReturnFunctionChecker.cpp40 ProgramStateRef state = C.getState(); local
46 SVal L = state->getSVal(Callee, C.getLocationContext());
/external/easymock/src/org/easymock/
H A DIMocksControl.java76 * @param state <code>true</code> switches order checking on, <code>false</code> switches it off.
78 void checkOrder(boolean state); argument
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/flyout/
H A DMemoryFlyoutPreferences.java29 public MemoryFlyoutPreferences(int dockLocation, int state, int width) { argument
31 m_state = state;
56 public void setState(int state) { argument
57 m_state = state;
/external/guava/guava/src/com/google/common/base/
H A DAbstractIterator.java32 private State state = State.NOT_READY; field in class:AbstractIterator
45 state = State.DONE;
51 checkState(state != State.FAILED);
52 switch (state) {
63 state = State.FAILED; // temporary pessimism
65 if (state != State.DONE) {
66 state = State.READY;
77 state = State.NOT_READY;

Completed in 1530 milliseconds

1234567891011>>