/development/ndk/platforms/android-3/include/linux/raid/ |
md_u.h | 61 int state; member in struct:mdu_array_info_s 78 int state; member in struct:mdu_disk_info_s 87 int state; member in struct:mdu_start_info_s
|
/development/samples/TicTacToeMain/src/com/example/android/tictactoe/ |
MainActivity.java | 26 import com.example.android.tictactoe.library.GameView.State; 53 startWithHuman ? State.PLAYER1.getValue() : State.PLAYER2.getValue());
|
/external/antlr/src/org/antlr/runtime/ |
CharStreamState.java | 31 * we need to record the state of the input stream (char index, 32 * line, etc...) so that we can rewind the state after scanning ahead. 34 * This is the complete state of a stream.
|
/external/bluetooth/glib/docs/reference/glib/tmpl/ |
base64.sgml | 46 @state: 58 @state: 81 @state:
|
/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/chromeos/ |
audio_mixer.h | 19 enum State { 48 // Call may block. Gets the mute state of the default device (true == mute). 58 virtual State GetState() const = 0;
|
/external/chromium/chrome/browser/chromeos/login/ |
mock_auth_response_handler.h | 23 // appropriate state and then call the OnURLFetchComplete method of 24 // |delegate| directly. Rather than using some kind of global state, we 25 // allow a MockAuthResponseHandler to be instantiated with the state we
|
/external/chromium/chrome/browser/policy/ |
managed_prefs_banner_base.h | 31 // Convenience constructor that fetches the local state PrefService from the 40 // Add a local state preference as visibility trigger. 42 // Remove a local state preference from being a visibility trigger.
|
/external/chromium/chrome/browser/sync/glue/ |
data_type_manager_impl.h | 32 virtual State state(); 65 State state_;
|
/external/chromium/chrome/browser/ui/cocoa/bookmarks/ |
bookmark_bar_folder_hover_state_unittest.mm | 17 // Hover state machine interface. 19 // these specific state transitions. 25 // Initial state.
|
/external/chromium/chrome/browser/ui/cocoa/toolbar/ |
reload_button.h | 14 // ToolbarButton subclass which defers certain state changes when the mouse 20 // unexpected state changes. 41 // inadvertent click _just_ as the state changes.
|
/external/chromium/chrome/browser/ui/views/tab_contents/ |
tab_contents_container.cc | 47 void TabContentsContainer::GetAccessibleState(ui::AccessibleViewState* state) { 48 state->role = ui::AccessibilityTypes::ROLE_WINDOW; 73 // us to clean up our state in case this happens.
|
/external/chromium/third_party/libjingle/source/talk/base/ |
task.h | 43 // Task is a state machine infrastructure. States are pushed forward by 50 // Process*() function, you return an integer for the next state. You do 51 // not go onto the next state yourself. Every time you enter a state, 54 // STATE_BLOCKED - even if you end up in the same state, return 76 // STATE_START - the task is in its first state 77 // STATE_RESPONSE - the task is in its second state 86 // STATE_NEXT - the first undefined state number. (like WM_USER) - you 89 // When you define more task states, just override Process(int state) and 104 // yet in the STATE_DONE state [all...] |
/external/dropbear/libtomcrypt/src/hashes/chc/ |
chc.c | 38 Initialize the CHC state with a given cipher 83 Initialize the hash state 84 @param md The hash state you wish to initialize 116 cipher_descriptor[cipher_idx].ecb_encrypt(buf, md->chc.state, key); 127 key <= state 130 state <= state xor T0 xor T1 141 if ((err = cipher_descriptor[cipher_idx].setup(md->chc.state, cipher_blocksize, 0, key)) != CRYPT_OK) { 148 md->chc.state[x] ^= T[0][x] ^ T[1][x]; 164 @param md The hash state [all...] |
/external/dropbear/libtomcrypt/src/mac/f9/ |
f9_init.c | 15 F9 Support, start an F9 state 20 /** Initialize F9-MAC state 21 @param f9 [out] f9 state to initialize
|
/external/elfutils/libelf/ |
gelf_getehdr.c | 48 Elf32_Ehdr *ehdr = elf->state.elf32.ehdr; 79 if (elf->state.elf64.ehdr == NULL) 82 result = memcpy (dest, elf->state.elf64.ehdr, sizeof (*dest));
|
/external/icu4c/test/testdata/ |
test3.ucm | 16 <icu:state> 0, 1:1, 5-9, ff 17 <icu:state> 2:2 18 <icu:state> a-f.p
|
/external/kernel-headers/original/linux/sunrpc/ |
xprt.h | 148 unsigned long state; /* transport state */ member in struct:rpc_xprt 158 * State of TCP reply receive stuff 266 * Reserved bit positions in xprt->state 275 set_bit(XPRT_CONNECTED, &xprt->state); 280 clear_bit(XPRT_CONNECTED, &xprt->state); 285 return test_bit(XPRT_CONNECTED, &xprt->state); 290 return test_and_set_bit(XPRT_CONNECTED, &xprt->state); 295 return test_and_clear_bit(XPRT_CONNECTED, &xprt->state); 301 clear_bit(XPRT_CONNECTING, &xprt->state); [all...] |
/external/mesa3d/src/glsl/builtins/tools/ |
generate_builtins.py | 199 _mesa_read_profile(struct _mesa_glsl_parse_state *state, 209 sh = read_builtins(state, GL_VERTEX_SHADER, prototypes, functions, count); 214 state->builtins_to_link[state->num_builtins_to_link] = sh; 215 state->num_builtins_to_link++; 220 struct _mesa_glsl_parse_state *state) 227 state->num_builtins_to_link = 0; 233 check = 'state->target == vertex_shader && ' 235 check = 'state->target == fragment_shader && ' 239 check += 'state->language_version == ' + versio [all...] |
/external/oprofile/libop/ |
op_interface.h | 40 /** the current kernel-side profiler state */ 53 enum oprof_state state; /**< current profiler state */ member in struct:op_buffer_head
|
/external/ppp/pppd/include/net/ |
ppp-comp.h | 64 void (*comp_free) __P((void *state)); 66 int (*comp_init) __P((void *state, u_char *options, int opt_len, 69 void (*comp_reset) __P((void *state)); 71 int (*compress) __P((void *state, PACKETPTR *mret, 74 void (*comp_stat) __P((void *state, struct compstat *stats)); 79 void (*decomp_free) __P((void *state)); 81 int (*decomp_init) __P((void *state, u_char *options, int opt_len, 84 void (*decomp_reset) __P((void *state)); 86 int (*decompress) __P((void *state, PACKETPTR mp, 88 /* Update state for an incompressible packet received * [all...] |
/external/webkit/LayoutTests/dom/html/level2/html/ |
hasFeature01.js | 84 var state; 86 state = domImpl.hasFeature("hTmL",version); 87 assertTrue("hasHTMLnull",state);
|
hasFeature02.js | 83 var state; 85 state = domImpl.hasFeature("hTmL",version); 86 assertTrue("hasHTML2",state);
|
hasFeature05.js | 84 var state; 86 state = domImpl.hasFeature("cOrE",version); 87 assertTrue("hasCore",state);
|
hasFeature06.js | 83 var state; 85 state = domImpl.hasFeature("cOrE",version); 86 assertTrue("hasCore",state);
|