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

<<11121314151617181920>>

  /tools/motodev/src/plugins/preflighting.core/devices/
milestone-qrty-a853.xml 24 <d:keyboard-state>keyssoft</d:keyboard-state>
28 <d:keyboard-state>keyssoft</d:keyboard-state>
32 <d:keyboard-state>keysexposed</d:keyboard-state>
34 <d:nav-state>navexposed</d:nav-state>
mt716.xml 24 <d:keyboard-state>keyssoft</d:keyboard-state>
28 <d:keyboard-state>keyssoft</d:keyboard-state>
32 <d:keyboard-state>keysexposed</d:keyboard-state>
34 <d:nav-state>navexposed</d:nav-state>
xt702.xml 24 <d:keyboard-state>keyssoft</d:keyboard-state>
28 <d:keyboard-state>keyssoft</d:keyboard-state>
32 <d:keyboard-state>keysexposed</d:keyboard-state>
34 <d:nav-state>navexposed</d:nav-state>
  /frameworks/rs/driver/
rsdShader.cpp 50 StateBasedKey *state = mStateBasedShaders.itemAt(i); local
51 if (state->mShaderID) {
52 glDeleteShader(state->mShaderID);
54 delete state;
81 for (uint32_t ct = 0; ct < mRSProgram->mHal.state.texturesCount; ct ++) {
83 if (mRSProgram->mHal.state.textureTargets[ct] == RS_TEXTURE_2D) {
84 Allocation *a = mRSProgram->mHal.state.textures[ct];
85 if (a && a->mHal.state.surfaceTextureID) {
103 StateBasedKey *state = getExistingState(); local
104 if (state != NULL)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineCXX.cpp 30 ProgramStateRef state = Pred->getState(); local
35 SVal V = state->getSVal(tempExpr, LCtx);
45 state = state->bindLoc(L, V);
49 Bldr.generateNode(ME, Pred, state->BindExpr(ME, LCtx, V));
56 ProgramStateRef State = Pred->getState();
78 SVal Base = State->getLValue(Var, LCtx);
79 Target = State->getLValue(AT->getElementType(),
83 Target = State->getLValue(Var, LCtx).getAsRegion();
98 SVal ThisVal = State->getSVal(ThisPtr)
279 ProgramStateRef state = Pred->getState(); local
295 ProgramStateRef state = Pred->getState(); local
313 ProgramStateRef state = Pred->getState(); local
    [all...]
ExprEngineC.cpp 37 ProgramStateRef state = (*it)->getState(); local
39 SVal LeftV = state->getSVal(LHS, LCtx);
40 SVal RightV = state->getSVal(RHS, LCtx);
54 evalStore(Tmp2, B, LHS, *it, state->BindExpr(B, LCtx, ExprVal),
83 SVal Result = evalBinOp(state, Op, LeftV, RightV, B->getType());
85 Bldr.generateNode(B, *it, state);
89 state = state->BindExpr(B, LCtx, Result);
90 Bldr.generateNode(B, *it, state);
115 evalLoad(Tmp, B, LHS, *it, state, location)
226 ProgramStateRef state = subExprNode->getState(); local
245 ProgramStateRef state = Pred->getState(); local
272 ProgramStateRef state = Pred->getState(); local
405 ProgramStateRef state = Pred->getState(); local
449 ProgramStateRef state = N->getState(); local
501 ProgramStateRef state = Pred->getState(); local
565 ProgramStateRef state = Pred->getState(); local
612 ProgramStateRef state = Pred->getState(); local
694 ProgramStateRef state = Pred->getState(); local
724 ProgramStateRef state = Pred->getState(); local
739 ProgramStateRef state = Pred->getState(); local
760 ProgramStateRef state = Pred->getState(); local
772 ProgramStateRef state = Pred->getState(); local
829 ProgramStateRef state = Pred->getState(); local
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
DNSStatefulObject.java 17 * Sets of methods to manage the state machine.<br/>
144 public void associateWithTask(DNSTask task, DNSState state) {
145 if (this._task == null && this._state == state) {
148 if (this._task == null && this._state == state) {
178 public boolean isAssociatedWithTask(DNSTask task, DNSState state) {
181 return this._task == task && this._state == state;
192 * @param state
193 * the state to set
195 protected void setState(DNSState state) {
198 this._state = state;
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
RecognizerSharedState.java 32 * 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) {
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.errorRecovery
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
ProgramState_Fwd.h 20 void ProgramStateRetain(const ProgramState *state);
21 void ProgramStateRelease(const ProgramState *state);
27 static void retain(const clang::ento::ProgramState *state) {
28 clang::ento::ProgramStateRetain(state);
30 static void release(const clang::ento::ProgramState *state) {
31 clang::ento::ProgramStateRelease(state);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
DefaultPhoneNotifier.java 107 PhoneConstants.DataState state) {
108 doNotifyDataConnection(sender, reason, apnType, state);
112 PhoneConstants.DataState state) {
121 if (state == PhoneConstants.DataState.CONNECTED) {
130 convertDataState(state),
183 * Convert the {@link State} enum into the TelephonyManager.CALL_STATE_* constants
186 public static int convertCallState(PhoneConstants.State state) {
187 switch (state) {
198 * Convert the TelephonyManager.CALL_STATE_* constants into the {@link State} enu
    [all...]
  /libcore/luni/src/main/native/
java_io_Console.cpp 28 termios state; local
29 if (TEMP_FAILURE_RETRY(tcgetattr(STDIN_FILENO, &state)) == -1) {
34 state.c_lflag = previousState;
36 previousState = state.c_lflag;
37 state.c_lflag &= ~(ECHO | ECHOE | ECHOK | ECHONL);
39 if (TEMP_FAILURE_RETRY(tcsetattr(STDIN_FILENO, TCSAFLUSH, &state)) == -1){
  /packages/apps/Contacts/src/com/android/contacts/
ProximitySensorAware.java 20 * An object that is aware of the state of the proximity sensor.
23 /** Start tracking the state of the proximity sensor. */
27 * Stop tracking the state of the proximity sensor.
29 * @param waitForFarState if true and the sensor is currently in the near state, it will wait
30 * until it is again in the far state before stopping to track its state.
  /bootable/recovery/updater/
install.c 49 Value* MountFn(const char* name, State* state, int argc, Expr* argv[]) {
52 return ErrorAbort(state, "%s() expects 4 args, got %d", name, argc);
58 if (ReadArgs(state, argv, 4, &fs_type, &partition_type,
64 ErrorAbort(state, "fs_type argument to %s() can't be empty", name);
68 ErrorAbort(state, "partition_type argument to %s() can't be empty",
73 ErrorAbort(state, "location argument to %s() can't be empty", name);
77 ErrorAbort(state, "mount_point argument to %s() can't be empty", name);
137 Value* IsMountedFn(const char* name, State* state, int argc, Expr* argv[])
    [all...]
  /external/bluetooth/bluedroid/bta/gatt/
bta_gattc_main.c 21 * This file contains the GATT client main functions and state machine.
40 /* state machine action enumeration list */
111 /* state table information */
113 #define BTA_GATTC_NEXT_STATE 1 /* position of next state */
114 #define BTA_GATTC_NUM_COLS 2 /* number of columns in state tables */
116 /* state table for idle state */
119 /* Event Action 1 Next state */
148 /* state table for wait for open state */
    [all...]
  /external/bluetooth/bluedroid/stack/avct/
avct_lcb.c 21 * This module contains the link control state machine and functions which
34 ** state machine constants and types
39 /* verbose state strings for trace */
61 /* lcb state machine states */
69 /* state machine action enumeration list */
115 /* state table information */
117 #define AVCT_LCB_NEXT_STATE 2 /* position of next state */
118 #define AVCT_LCB_NUM_COLS 3 /* number of columns in state tables */
120 /* state table for idle state */
    [all...]
  /external/chromium-trace/trace-viewer/src/
linux_perf_power_parser_test.html 26 'type=2 state=1000000 cpu_id=0',
28 'type=2 state=800000 cpu_id=1',
30 'type=2 state=1300000 cpu_id=1'
47 'state=800000 cpu_id=1',
49 'state=1300000 cpu_id=1',
51 'state=1000000 cpu_id=0',
53 'state=800000 cpu_id=0'
70 'state=1 cpu_id=0',
72 'state=4294967295 cpu_id=0',
74 'state=1 cpu_id=1'
    [all...]
  /external/expat/xmlwf/
xmlmime.c 9 int state = init; local
14 if (state == inAtom)
21 if (state == inAtom)
25 if (state == inAtom)
27 if (state != inString)
28 state++;
31 if (state > init)
32 --state;
33 else if (state != inString)
39 if (state == inAtom
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/eap_server/
eap_vendor_test.c 26 enum { INIT, CONFIRM, SUCCESS, FAILURE } state; member in struct:eap_vendor_test_data
30 static const char * eap_vendor_test_state_txt(int state)
32 switch (state) {
48 int state)
51 eap_vendor_test_state_txt(data->state),
52 eap_vendor_test_state_txt(state));
53 data->state = state;
64 data->state = INIT;
91 wpabuf_put_u8(req, data->state == INIT ? 1 : 3)
    [all...]
  /external/wpa_supplicant_8/src/eap_server/
eap_server_vendor_test.c 20 enum { INIT, CONFIRM, SUCCESS, FAILURE } state; member in struct:eap_vendor_test_data
24 static const char * eap_vendor_test_state_txt(int state)
26 switch (state) {
42 int state)
45 eap_vendor_test_state_txt(data->state),
46 eap_vendor_test_state_txt(state));
47 data->state = state;
58 data->state = INIT;
85 wpabuf_put_u8(req, data->state == INIT ? 1 : 3)
    [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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/transforms/
PropertyChangeTransform.java 17 package com.android.ide.eclipse.gltrace.state.transforms;
19 import com.android.ide.eclipse.gltrace.state.IGLProperty;
23 * single GL State variable. An optional predicate provides the ability to perform
33 * Construct a state transform that will extract the property using the accessor,
41 * Construct a state transform that will extract the property using the accessor,
53 /** Apply the state transformation on the given OpenGL state. */
55 public void apply(IGLProperty state) {
56 IGLProperty property = mAccessor.getProperty(state);
76 * Reverses the effect of this state transform. It restores the property's value to the sam
    [all...]
  /external/mesa3d/src/glsl/
ast_to_hir.cpp 60 _mesa_ast_to_hir(exec_list *instructions, struct _mesa_glsl_parse_state *state)
62 _mesa_glsl_initialize_variables(instructions, state);
63 _mesa_glsl_initialize_functions(instructions, state);
65 state->symbols->language_version = state->language_version;
67 state->current_function = NULL;
82 state->symbols->push_scope();
84 foreach_list_typed (ast_node, ast, link, & state->translation_unit)
85 ast->hir(instructions, state);
96 * \param state GLSL compiler stat
    [all...]
  /frameworks/av/cmds/stagefright/
SimplePlayer.cpp 311 CodecState *state = local
315 state->mNumFramesWritten = 0;
316 state->mCodec = MediaCodec::CreateByType(
319 CHECK(state->mCodec != NULL);
321 err = state->mCodec->configure(
332 state->mCSD.push_back(buffer);
339 CodecState *state = &mStateByTrackIndex.editValueAt(i); local
341 status_t err = state->mCodec->start();
344 err = state->mCodec->getInputBuffers(&state->mBuffers[0])
400 CodecState *state = &mStateByTrackIndex.editValueAt(i); local
419 CodecState *state = &mStateByTrackIndex.editValueAt(i); local
474 CodecState *state = &mStateByTrackIndex.editValueFor(trackIndex); local
515 CodecState *state = &mStateByTrackIndex.editValueAt(i); local
    [all...]
  /external/chromium/chrome/browser/geolocation/
geolocation_settings_state_unittest.cc 27 GeolocationSettingsState state(&profile);
34 state.DidNavigate(load_committed_details);
38 state.OnGeolocationPermissionSet(url_0, true);
43 state.OnGeolocationPermissionSet(url_1, false);
46 state.state_map();
51 state.GetDetailedInfo(&formatted_host_per_state, &tab_state_flags);
74 state.OnGeolocationPermissionSet(url_0, false);
78 state.GetDetailedInfo(&formatted_host_per_state, &tab_state_flags);
100 state.OnGeolocationPermissionSet(url_0, true);
103 state.DidNavigate(load_committed_details)
    [all...]
  /external/srtp/crypto/hash/
hmac.c 83 (*a)->state = pointer + sizeof(auth_t);
98 /* zeroize entire state*/
112 hmac_init(hmac_ctx_t *state, const uint8_t *key, int key_len) {
129 state->opad[i] = key[i] ^ 0x5c;
134 ((uint8_t *)state->opad)[i] = 0x5c;
140 sha1_init(&state->init_ctx);
143 sha1_update(&state->init_ctx, ipad, 64);
144 memcpy(&state->ctx, &state->init_ctx, sizeof(sha1_ctx_t));
150 hmac_start(hmac_ctx_t *state) {
    [all...]

Completed in 1160 milliseconds

<<11121314151617181920>>