HomeSort by relevance Sort by last modified time
    Searched full:state (Results 51 - 75 of 15835) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/icu4c/common/
rbbicst.pl 6 # rbbicst Compile the RBBI rule paser state table data into initialized C data.
26 $num_states = 1; # Always the state number for the line being compiled.
29 $states{"pop"} = 255; # Add the "pop" to the list of defined state names.
30 # This prevents any state from being labelled with "pop",
31 # and resolves references to "pop" in the next state field.
53 # State Label: handling.
54 # Does the first token end with a ":"? If so, it's the name of a state.
55 # Put in a hash, together with the current state number,
60 $state_name =~ s/://; # strip off the colon from the state name.
63 print " rbbicst: at line $line-num duplicate definition of state $state_name\n"
    [all...]
  /external/mesa3d/src/glsl/
main.cpp 51 struct _mesa_glsl_parse_state *state = local
55 state->error = preprocess(state, &source, &state->info_log,
56 state->extensions, ctx->API);
58 if (!state->error) {
59 _mesa_glsl_lexer_ctor(state, source);
60 _mesa_glsl_parse(state);
61 _mesa_glsl_lexer_dtor(state);
65 foreach_list_const(n, &state->translation_unit)
    [all...]
  /external/bison/src/
state.h 1 /* Type definitions for nondeterministic finite state machine for Bison.
25 finite state machine that parses the specified grammar. This
29 Each state of the machine is described by a set of items --
32 state. These symbols at these items are the allowable inputs that
35 A core represents one state. States are numbered in the NUMBER
36 field. When generate_states is finished, the starting state is
37 state 0 and NSTATES is the number of states. (FIXME: This sentence
38 is no longer true: A transition to a state whose state number is
40 and FIRST_STATE points to the first one (state 0)
108 typedef struct state state; typedef in typeref:struct:state
198 struct state struct
    [all...]
  /frameworks/rs/
rsProgram.cpp 30 mHal.state.inputElementsCount++;
33 mHal.state.constantsCount++;
36 mHal.state.texturesCount++;
40 mTextures = new ObjectBaseRef<Allocation>[mHal.state.texturesCount];
41 mSamplers = new ObjectBaseRef<Sampler>[mHal.state.texturesCount];
42 mInputElements = new ObjectBaseRef<Element>[mHal.state.inputElementsCount];
43 mConstantTypes = new ObjectBaseRef<Type>[mHal.state.constantsCount];
44 mConstants = new ObjectBaseRef<Allocation>[mHal.state.constantsCount];
46 mHal.state.textures = new Allocation*[mHal.state.texturesCount]
    [all...]
rsType.cpp 41 if (mHal.state.lodCount) {
42 delete [] mHal.state.lodDimX;
43 delete [] mHal.state.lodDimY;
44 delete [] mHal.state.lodDimZ;
45 delete [] mHal.state.lodOffset;
59 rsAssert(mHal.state.faces);
64 uint32_t oldLODCount = mHal.state.lodCount;
66 uint32_t l2x = rsFindHighBit(mHal.state.dimX) + 1;
67 uint32_t l2y = rsFindHighBit(mHal.state.dimY) + 1;
68 uint32_t l2z = rsFindHighBit(mHal.state.dimZ) + 1
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ProximitySensorManager.java 32 * Listener of the state of the proximity sensor.
39 /** Called when the proximity sensor transitions from the far to the near state. */
41 /** Called when the proximity sensor transitions from the near to the far state. */
45 public static enum State {
52 * The current state of the manager, i.e., whether it is currently tracking the state of the
58 * The listener to the state of the sensor.
66 * listener the next time the sensor reaches the {@link State#FAR} state if currently in the
67 * {@link State#NEAR} state
107 State state = getStateFromValue(value); local
    [all...]
  /dalvik/hit/src/com/android/hit/
Main.java 37 State state = (new HprofParser(dis)).parse(); local
41 testClassesQuery(state);
42 testAllClassesQuery(state);
43 testFindInstancesOf(state);
44 testFindAllInstancesOf(state);
50 private static void testClassesQuery(State state) {
57 Map<String, Set<ClassObj>> someClasses = Queries.classes(state, x);
70 private static void testAllClassesQuery(State state)
    [all...]
  /external/chromium/chrome/browser/
transport_security_persister.cc 25 net::TransportSecurityState* state, const FilePath& profile_path) {
27 transport_security_state_ = state;
30 state->SetDelegate(this);
40 std::string state; local
41 if (!file_util::ReadFileToString(state_file_, &state))
47 state));
50 void TransportSecurityPersister::CompleteLoad(const std::string& state) {
54 if (!transport_security_state_->LoadEntries(state, &dirty)) {
55 LOG(ERROR) << "Failed to deserialize state: " << state;
81 std::string state; local
    [all...]
  /external/bluetooth/bluedroid/btif/src/
btif_sm.c 24 * Description: Generic BTIF state machine API
43 btif_sm_state_t state; member in struct:__anon2460
67 ** Description Initializes the state machine with the state handlers
72 ** Returns Returns a pointer to the initialized state machine handle.
87 p_cb->state = initial_state;
90 /* Send BTIF_SM_ENTER_EVT to the initial state */
100 ** Description Tears down the state machine
121 ** Description Fetches the current state of the state machin
    [all...]
  /frameworks/base/core/java/android/os/
SystemService.java 33 private static HashMap<String, State> sStates = Maps.newHashMap();
36 * State of a known {@code init} service.
38 public enum State {
44 State(String state) {
45 sStates.put(state, this);
78 * Return current state of given service.
80 public static State getState(String service) {
82 final State state = sStates.get(rawState) local
    [all...]
  /system/core/libcorkscrew/arch-x86/
backtrace-x86.c 83 /* Unwind state. */
97 unwind_state_t* state, backtrace_frame_t* backtrace,
102 for (size_t index = 0; state->ebp && returned_frames < max_depth; index++) {
104 index ? rewind_pc_arch(memory, state->eip) : state->eip,
107 uint32_t next_esp = state->ebp + 8;
109 frame->stack_top = state->esp;
110 if (state->esp < next_esp) {
111 frame->stack_size = next_esp - state->esp;
114 state->esp = next_esp
130 unwind_state_t state; local
148 unwind_state_t state; local
    [all...]
  /external/webrtc/src/common_audio/signal_processing/
resample.c 46 WebRtcSpl_State22khzTo16khz* state, WebRtc_Word32* tmpmem)
57 WebRtcSpl_UpBy2ShortToInt(in, 220 / SUB_BLOCKS_22_16, tmpmem + 16, state->S_22_44);
63 // copy state to and from input array
64 tmpmem[8] = state->S_44_32[0];
65 tmpmem[9] = state->S_44_32[1];
66 tmpmem[10] = state->S_44_32[2];
67 tmpmem[11] = state->S_44_32[3];
68 tmpmem[12] = state->S_44_32[4];
69 tmpmem[13] = state->S_44_32[5];
70 tmpmem[14] = state->S_44_32[6]
    [all...]
  /frameworks/base/services/input/
SpriteController.cpp 133 if (update.state.surfaceControl == NULL && update.state.wantSurfaceVisible()) {
134 update.state.surfaceWidth = update.state.icon.bitmap.width();
135 update.state.surfaceHeight = update.state.icon.bitmap.height();
136 update.state.surfaceDrawn = false;
137 update.state.surfaceVisible = false;
138 update.state.surfaceControl = obtainSurface(
139 update.state.surfaceWidth, update.state.surfaceHeight)
    [all...]
  /frameworks/support/renderscript/v8/rs_support/
rsType.cpp 41 if (mHal.state.lodCount) {
42 delete [] mHal.state.lodDimX;
43 delete [] mHal.state.lodDimY;
44 delete [] mHal.state.lodDimZ;
45 delete [] mHal.state.lodOffset;
59 rsAssert(mHal.state.faces);
64 uint32_t oldLODCount = mHal.state.lodCount;
66 uint32_t l2x = rsFindHighBit(mHal.state.dimX) + 1;
67 uint32_t l2y = rsFindHighBit(mHal.state.dimY) + 1;
68 uint32_t l2z = rsFindHighBit(mHal.state.dimZ) + 1
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
color1-expected-completion46b.txt 2 android:state_focused : State value for StateListDrawable, set when a view has input focus. [boolean]
3 android:state_window_focused : State value for StateListDrawable, set when a view's window has input focus. [boolean]
4 android:state_enabled : State value for StateListDrawable, set when a view is enabled. [boolean]
5 android:state_checkable : State identifier indicating that the object <var>may</var> display a check mark. [boolean]
6 android:state_checked : State identifier indicating that the object is currently checked. [boolean]
7 android:state_selected : State value for StateListDrawable, set when a view (or one of its parents) is currently selected. [boolean]
8 android:state_pressed : State value for StateListDrawable, set when the user is pressing down in a view. [boolean]
9 android:state_activated : State value for StateListDrawable, set when a view or its parent has been "activated" meaning the user has currently marked it as being of interest. [boolean]
10 android:state_active : State value for StateListDrawable. [boolean]
11 android:state_single : State value for StateListDrawable. [boolean
    [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadThread.java 84 * State for the entire run() method.
86 static class State {
103 public State(DownloadInfo info) {
113 * State within executeDownload()
149 State state = new State(mInfo); local
182 Proxy.getPreferredHttpHost(mContext, state.mRequestUri));
183 HttpGet request = new HttpGet(state.mRequestUri);
185 executeDownload(state, client, request)
    [all...]
  /external/elfutils/tests/
allregs.c 92 struct state struct
132 struct state *state = arg; local
134 if (regno >= state->nregs)
136 state->info = realloc (state->info, (regno + 1) * sizeof state->info[0]);
137 memset (&state->info[state->nregs], 0,
138 ((void *) &state->info[regno + 1
190 struct state state = { NULL, 0 }; local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaCall.java 27 import com.android.internal.telephony.Call.State;
36 /*package*/ State state = State.IDLE; field in class:CdmaCall
41 static State
42 stateFromDCState (DriverCall.State dcState) {
44 case ACTIVE: return State.ACTIVE;
45 case HOLDING: return State.HOLDING;
46 case DIALING: return State.DIALING;
47 case ALERTING: return State.ALERTING
    [all...]
  /libcore/luni/src/test/java/tests/org/w3c/dom/
IsSupported.java 60 boolean state;
63 state = rootNode.isSupported("XXX", "1.0");
64 assertFalse("throw_False", state);
69 boolean state;
72 state = rootNode.isSupported("XML", "9.0");
73 assertFalse("throw_False", state);
78 boolean state;
81 state = rootNode.isSupported("xml", "1.0");
82 assertTrue("throw_True", state);
87 boolean state;
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
StateManager.java 37 private static final String KEY_MAIN = "activity-state";
53 ActivityState state = null; local
55 state = klass.newInstance();
65 state.initialize(mActivity, data);
67 mStack.push(new StateEntry(data, state));
68 state.onCreate(data, null);
69 if (mIsResumed) state.resume();
75 ActivityState state = null; local
77 state = klass.newInstance();
81 state.initialize(mActivity, data)
234 ActivityState state = null; local
264 Bundle state = bundle.getBundle(KEY_STATE); local
288 Bundle state = new Bundle(); local
    [all...]
  /external/webkit/LayoutTests/http/tests/appcache/
reload.html 18 var state = 0;
23 if (state == 0) {
24 state = 1;
26 } else if (state == 1) {
27 state = 2;
29 } else if (state == 2) {
  /external/webkit/Source/WebCore/bindings/scripts/test/ObjC/
DOMTestObj.mm 81 WebCore::JSMainThreadNullState state;
87 WebCore::JSMainThreadNullState state;
93 WebCore::JSMainThreadNullState state;
99 WebCore::JSMainThreadNullState state;
105 WebCore::JSMainThreadNullState state;
111 WebCore::JSMainThreadNullState state;
117 WebCore::JSMainThreadNullState state;
123 WebCore::JSMainThreadNullState state;
129 WebCore::JSMainThreadNullState state;
135 WebCore::JSMainThreadNullState state;
    [all...]
  /external/clang/test/CodeGenObjC/
2007-04-03-ObjcEH.m 8 -(void) Foo:(int) state;
12 - (void) Foo:(int) state {
16 if (state) {
  /hardware/broadcom/wlan/bcmdhd/bcmdhd_net_iface/
bcmdhd_net_iface.c 29 } state; variable in typeref:struct:net_if_snd_cmd_state
32 state.sock = socket(AF_INET, SOCK_DGRAM, 0);
33 if (state.sock < 0) {
56 bc += snprintf(&state.cmd[bc], sizeof(state.cmd) - bc, "%s ", argv[i]);
57 if (bc >= sizeof(state.cmd)) {
61 state.cmd[bc] = '\0';
65 strncpy(state.ibuf, state.cmd, INTERFACE_MAX_BUFFER_SIZE);
67 priv_cmd.buf = state.ibuf
    [all...]
  /libcore/luni/src/main/java/java/lang/
VMThread.java 59 static final Thread.State[] STATE_MAP = new Thread.State[] {
60 Thread.State.TERMINATED, // ZOMBIE
61 Thread.State.RUNNABLE, // RUNNING
62 Thread.State.TIMED_WAITING, // TIMED_WAIT
63 Thread.State.BLOCKED, // MONITOR
64 Thread.State.WAITING, // WAIT
65 Thread.State.NEW, // INITIALIZING
66 Thread.State.NEW, // STARTING
67 Thread.State.RUNNABLE, // NATIV
    [all...]

Completed in 508 milliseconds

1 23 4 5 6 7 8 91011>>