/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/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
ExprEngineBuilders.h | 29 const GRState* state; member in class:clang::ento::StmtNodeBuilderRef 49 state(st), stmt(s), OldSize(Dst.size()), AutoCreateNode(auto_create_node), 56 // contains the updated state if we aren't generating sinks. 59 B.MakeNode(Dst, const_cast<Stmt*>(stmt), Pred, state); 65 const GRState *getState() { return state; } 71 ExplodedNode* MakeNode(const GRState* state) { 72 return B.MakeNode(Dst, const_cast<Stmt*>(stmt), Pred, state);
|
/external/jsilver/src/com/google/streamhtmlparser/ |
ExternalState.java | 22 * A representation of the parser state suitable for use by the caller 23 * of the Parser. The meaning of each state and therefore which action 24 * the caller should perform on that state is not self-evident. In particular, 31 * <p>The caller of the Parser will query for the current parser state at 33 * current state as represented by this class, the caller can determine 51 * @param name the name to assign to that state 71 * Returns the string representation of this external state.
|
/external/jsilver/src/com/google/streamhtmlparser/impl/ |
StateTableTransition.java | 22 * Holds one state transition as derived from a Python configuration 23 * file. A state transition is a triplet as follows: 27 * <li> A source state. 28 * <li> A destination state. 32 * state to go from A to B for any character that is either 1,2,3 or in 42 * Returns the full state of the {@code StateTableTransition} in a 46 * @return full state of the {@code StateTableTransition}
|
InternalState.java | 24 * A very simple representation of the parser internal state. The state 26 * the implementation of a simple finite state machine. The name is 54 * @param name the {@code String} identifier for this state 55 * @param id the integer identiifer for this state, guaranteed to be unique 66 * Used only for the error state. Bypasses assert checks. 74 * @return {@code String} name of that state. 81 * @return {@code int} id of that state. 99 * @param name a unique identifier for this state useful during debugging 110 * @param name A unique identifier for this state useful during debuggin [all...] |
/external/v8/test/mjsunit/ |
debug-stepin-builtin.js | 34 var state = 1; variable 44 if (state == 1) { 46 state = 2; 47 } else if (state == 2) { 51 state = 3; 72 state = 1; 75 assertEquals(3, state);
|
debug-stepout-to-builtin.js | 34 var state = 1; variable 44 if (state == 1) { 46 state = 2; 47 } else if (state == 2) { 51 state = 3; 78 state = 1; 81 assertEquals(3, state);
|
/external/webkit/LayoutTests/dom/xhtml/level3/core/ |
domconfigcomments1.js | 85 var state; 91 state = domConfig.getParameter(parameter); 92 assertTrue("defaultFalse",state); 98 state = domConfig.getParameter(parameter); 99 assertFalse("setFalseEffective",state); 101 state = domConfig.getParameter(parameter); 102 assertTrue("setTrueEffective",state);
|
domconfigentities1.js | 86 var state; 92 state = domConfig.getParameter(parameter); 93 assertTrue("defaultFalse",state); 99 state = domConfig.getParameter(parameter); 100 assertFalse("setFalseEffective",state); 102 state = domConfig.getParameter(parameter); 103 assertTrue("setTrueEffective",state);
|
domconfignamespaces1.js | 85 var state; 91 state = domConfig.getParameter(parameter); 92 assertTrue("defaultFalse",state); 101 state = domConfig.getParameter(parameter); 102 assertFalse("setFalseEffective",state); 118 state = domConfig.getParameter(parameter); 119 assertTrue("setFalseNotEffective",state);
|
/external/webkit/Source/WebCore/bindings/generic/ |
GenericBinding.h | 43 // Class to represent execution state for each language binding. 45 class State {}; 47 // Common notion of execution state for language bindings. 49 class State<GenericBinding> { 54 KURL completeURL(State<Binding>* state, const String& relativeURL) 58 Frame* frame = state->firstFrame();
|
/external/webkit/Tools/Scripts/webkitpy/tool/steps/ |
createbug.py | 42 def run(self, state): 44 if state.get("bug_id"): 48 cc = state.get("bug_cc") 51 blocks = state.get("bug_blocked") 52 state["bug_id"] = self._tool.bugs.create_bug(state["bug_title"], state["bug_description"], blocked=blocks, component=self._options.component, cc=cc)
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/unit/ |
MediaPlayerStateUnitTestTemplate.java | 151 * Calls method under test in the given state of the MediaPlayer object. 153 * @param state the MediaPlayer state in which the method under test is called. 155 private void callMediaPlayerMethodUnderTestInState(MediaPlayerStateErrors.MediaPlayerState state) { 156 Log.v(TAG, "call " + mMethodUnderTest + ": started in state " + state); 157 setMediaPlayerToState(state); 163 Log.v(TAG, "callMediaPlayerMethodUnderTestInState: wait is interrupted in state " + state); 166 Log.v(TAG, "call " + mMethodUnderTest + ": ended in state " + state) [all...] |
/frameworks/base/services/java/com/android/server/ |
WiredAccessoryObserver.java | 44 "/sys/class/switch/h2w/state", 47 "/sys/class/switch/usb_audio/state", 50 "/sys/class/switch/hdmi/state", 100 int state = Integer.parseInt(event.get("SWITCH_STATE")); local 101 updateState(name, state); 103 Slog.e(TAG, "Could not parse switch state from event " + event); 107 private synchronized final void updateState(String name, int state) 111 ((state == 1) ? BIT_USB_HEADSET_ANLG : 112 ((state == 2) ? BIT_USB_HEADSET_DGTL : 0))); 116 ((state == 1) ? BIT_HDMI_AUDIO : 0)) 230 int state = 0; local [all...] |
/system/media/wilhelm/src/itf/ |
IDynamicInterfaceManagement.c | 41 // check interface state 43 SLuint8 state = *interfaceStateP; local 44 switch (state) { 48 // change state to indicate we are now adding the interface 64 // re-lock mutex to update state 69 state = INTERFACE_ADDED; 71 state = INTERFACE_INITIALIZED; 78 state = INTERFACE_INITIALIZED; 88 // mutex is locked, update state 89 *interfaceStateP = state; 299 SLuint8 state = *interfaceStateP; local [all...] |
/bootable/recovery/updater/ |
updater.c | 113 State state; local 114 state.cookie = &updater_info; 115 state.script = script; 116 state.errmsg = NULL; 118 char* result = Evaluate(&state, root); 120 if (state.errmsg == NULL) { 124 fprintf(stderr, "script aborted: %s\n", state.errmsg); 125 char* line = strtok(state.errmsg, "\n"); 132 free(state.errmsg) [all...] |
/external/bison/tests/ |
conflicts.at | 28 # initial state (because it was confusing it with the last state). It 144 [[State 5 conflicts: 1 shift/reduce 171 state 0 177 NUM shift, and go to state 1 179 exp go to state 2 182 state 1 189 state 2 194 $end shift, and go to state 3 195 OP shift, and go to state [all...] |
/external/chromium/chrome/browser/ |
command_updater.h | 16 // This object manages the enabled state of a set of commands. Observers 17 // register to listen to changes in this state so they can update their 51 // the state of a particular command ID is modified. 54 // Notifies the observer that the enabled state has changed for the 62 // Adds an observer to the state of a particular command. If the command does 66 // Removes an observer to the state of a particular command. 74 // initialized to |state|. This function is very lightweight if the command 75 // state has not changed. 76 void UpdateCommandEnabled(int id, bool state); 80 // of objects that observe the enabled state of this command [all...] |
/external/qemu/hw/ |
goldfish_switch.c | 30 uint32_t state; member in struct:switch_state 33 uint32_t (*writefn)(void *opaque, uint32_t state); 43 qemu_put_be32(f, s->state); 55 s->state = qemu_get_be32(f); 74 return s->state; 103 if(new_state != s->state) { 135 void goldfish_switch_set_state(void *opaque, uint32_t state) 139 s->state = state; 144 void *goldfish_switch_add(char *name, uint32_t (*writefn)(void *opaque, uint32_t state), void *writeopaque, int id [all...] |
/external/speex/include/speex/ |
speex_callbacks.h | 88 typedef int (*speex_callback_func)(SpeexBits *bits, void *state, void *data); 100 int speex_inband_handler(SpeexBits *bits, SpeexCallback *callback_list, void *state); 103 int speex_std_mode_request_handler(SpeexBits *bits, void *state, void *data); 106 int speex_std_high_mode_request_handler(SpeexBits *bits, void *state, void *data); 109 int speex_std_char_handler(SpeexBits *bits, void *state, void *data); 112 int speex_default_user_handler(SpeexBits *bits, void *state, void *data); 117 int speex_std_low_mode_request_handler(SpeexBits *bits, void *state, void *data); 120 int speex_std_vbr_request_handler(SpeexBits *bits, void *state, void *data); 123 int speex_std_enh_request_handler(SpeexBits *bits, void *state, void *data); 126 int speex_std_vbr_quality_request_handler(SpeexBits *bits, void *state, void *data) [all...] |
/external/speex/libspeex/ |
speex_callbacks.c | 43 EXPORT int speex_inband_handler(SpeexBits *bits, SpeexCallback *callback_list, void *state) 53 return callback->func(bits, state, callback->data); 75 EXPORT int speex_std_mode_request_handler(SpeexBits *bits, void *state, void *data) 83 EXPORT int speex_std_low_mode_request_handler(SpeexBits *bits, void *state, void *data) 91 EXPORT int speex_std_high_mode_request_handler(SpeexBits *bits, void *state, void *data) 100 EXPORT int speex_std_vbr_request_handler(SpeexBits *bits, void *state, void *data) 109 EXPORT int speex_std_enh_request_handler(SpeexBits *bits, void *state, void *data) 118 EXPORT int speex_std_vbr_quality_request_handler(SpeexBits *bits, void *state, void *data) 127 EXPORT int speex_std_char_handler(SpeexBits *bits, void *state, void *data) 139 EXPORT int speex_default_user_handler(SpeexBits *bits, void *state, void *data [all...] |
/external/webkit/Source/WebCore/bindings/v8/specialization/ |
V8BindingState.cpp | 41 State<V8Binding>* State<V8Binding>::Only() 43 DEFINE_STATIC_LOCAL(State, globalV8BindingState, ()); 47 DOMWindow* State<V8Binding>::activeWindow() 58 DOMWindow* State<V8Binding>::firstWindow() 63 Frame* State<V8Binding>::activeFrame() 77 Frame* State<V8Binding>::firstFrame() 82 void State<V8Binding>::immediatelyReportUnsafeAccessTo(Frame* target) 87 bool State<V8Binding>::processingUserGesture() 92 bool State<V8Binding>::allowsAccessFromFrame(Frame* frame [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/eap_server/ |
eap_md5.c | 26 enum { CONTINUE, SUCCESS, FAILURE } state; member in struct:eap_md5_data 37 data->state = CONTINUE; 57 data->state = FAILURE; 66 data->state = FAILURE; 75 data->state = CONTINUE; 115 data->state = FAILURE; 132 data->state = SUCCESS; 135 data->state = FAILURE; 143 return data->state != CONTINUE; 150 return data->state == SUCCESS [all...] |
/external/wpa_supplicant_8/src/eap_server/ |
eap_server_md5.c | 27 enum { CONTINUE, SUCCESS, FAILURE } state; member in struct:eap_md5_data 38 data->state = CONTINUE; 58 data->state = FAILURE; 67 data->state = FAILURE; 76 data->state = CONTINUE; 116 data->state = FAILURE; 133 data->state = SUCCESS; 136 data->state = FAILURE; 144 return data->state != CONTINUE; 151 return data->state == SUCCESS [all...] |
/external/wpa_supplicant_8/src/eapol_auth/ |
eapol_auth_sm_i.h | 2 * IEEE 802.1X-2004 Authenticator - EAPOL state machine (internal definitions) 43 * struct eapol_state_machine - Per-Supplicant Authenticator state machines 67 /* Port Timers state machine */ 70 /* Authenticator PAE state machine */ 98 /* Backend Authentication state machine */ 113 /* Reauthentication Timer state machine */ 120 /* Authenticator Key Transmit state machine */ 124 /* Key Receive state machine */ 129 /* Controlled Directions state machine */ 175 Boolean initializing; /* in process of initializing state machines * [all...] |