HomeSort by relevance Sort by last modified time
    Searched refs:state (Results 576 - 600 of 8554) sorted by null

<<21222324252627282930>>

  /frameworks/compile/mclinker/lib/LD/
MsgHandler.cpp 33 m_Engine.state().ArgumentKinds[m_NumArgs] = DiagnosticEngine::ak_std_string;
34 m_Engine.state().ArgumentStrs[m_NumArgs++] = pStr.data();
41 m_Engine.state().ArgumentKinds[m_NumArgs] = DiagnosticEngine::ak_std_string;
42 m_Engine.state().ArgumentStrs[m_NumArgs++] = pStr;
49 m_Engine.state().ArgumentKinds[m_NumArgs] = pKind;
50 m_Engine.state().ArgumentVals[m_NumArgs++] = pValue;
  /frameworks/rs/driver/
rsdMeshObj.cpp 55 RsDataType dt = elem->mHal.state.fields[fieldIdx]->mHal.state.dataType;
63 uint32_t arraySize = elem->mHal.state.fieldArraySizes[fieldIdx];
77 for (uint32_t ct=0; ct < mRSMesh->mHal.state.vertexBuffersCount; ct++) {
78 const Element *elem = mRSMesh->mHal.state.vertexBuffers[ct]->getType()->getElement();
79 for (uint32_t ct=0; ct < elem->mHal.state.fieldsCount; ct++) {
100 for (uint32_t ct=0; ct < mRSMesh->mHal.state.vertexBuffersCount; ct++) {
101 const Element *elem = mRSMesh->mHal.state.vertexBuffers[ct]->getType()->getElement();
102 uint32_t stride = elem->mHal.state.elementSizeBytes;
103 for (uint32_t fieldI=0; fieldI < elem->mHal.state.fieldsCount; fieldI++)
    [all...]
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...]
  /hardware/invensense/60xx/libsensors_iio/software/core/mllite/
results_holder.h 38 void inv_set_acc_state(int state);
40 void inv_set_motion_state(unsigned char state);
58 void inv_set_compass_bias_found(int state);
60 void inv_set_large_mag_field(int state);
61 void inv_set_compass_state(int state);
74 void inv_set_accel_bias_found(int state);
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/
results_holder.h 39 void inv_set_acc_state(int state);
41 void inv_set_motion_state(unsigned char state);
64 void inv_set_compass_bias_found(int state);
66 void inv_set_large_mag_field(int state);
67 void inv_set_compass_state(int state);
83 void inv_set_accel_bias_found(int state);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HasAttributes.java 74 boolean state;
78 state = addrNode.hasAttributes();
79 assertFalse("throw_False", state);
85 boolean state;
89 state = addrNode.hasAttributes();
90 assertTrue("throw_True", state);
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/rpcsvc/
sm_inter.x 44 /* if res_stat == stat_succ, state = state number of site sm_name */
49 /* stat consists of state number of local site */
52 /* stat consists of state number of local site */
55 /* stat consists of state number of local site */
89 * state # of status monitor monotonically increases each time
95 int state; /* state # of status monitor */
105 int state;
114 int state;
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
sm_inter.x 44 /* if res_stat == stat_succ, state = state number of site sm_name */
49 /* stat consists of state number of local site */
52 /* stat consists of state number of local site */
55 /* stat consists of state number of local site */
89 * state # of status monitor monotonically increases each time
95 int state; /* state # of status monitor */
105 int state;
114 int state;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/rpcsvc/
sm_inter.x 44 /* if res_stat == stat_succ, state = state number of site sm_name */
49 /* stat consists of state number of local site */
52 /* stat consists of state number of local site */
55 /* stat consists of state number of local site */
89 * state # of status monitor monotonically increases each time
95 int state; /* state # of status monitor */
105 int state;
114 int state;
    [all...]
  /sdk/emulator/opengl/host/tools/emugen/
EntryPoint.h 45 void setUnsupported(bool state) { m_unsupported = state; }
47 void setCustomDecoder(bool state) { m_customDecoder = state; }
49 void setNotApi(bool state) { m_notApi = state; }
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3baserecognizer.c 84 antlr3BaseRecognizerNew(ANTLR3_UINT32 type, ANTLR3_UINT32 sizeHint, pANTLR3_RECOGNIZER_SHARED_STATE state)
100 // If we have been supplied with a pre-existing recognizer state
103 if (state == NULL)
105 recognizer->state = (pANTLR3_RECOGNIZER_SHARED_STATE) ANTLR3_CALLOC(1, (size_t)sizeof(ANTLR3_RECOGNIZER_SHARED_STATE));
107 if (recognizer->state == NULL)
113 // Initialize any new recognizer state
115 recognizer->state->errorRecovery = ANTLR3_FALSE;
116 recognizer->state->lastErrorIndex = -1;
117 recognizer->state->failed = ANTLR3_FALSE;
118 recognizer->state->errorCount = 0
    [all...]
  /bootable/recovery/edify/
main.c 43 State state; local
44 state.cookie = NULL;
45 state.script = strdup(expr_str);
46 state.errmsg = NULL;
48 result = Evaluate(&state, e);
49 free(state.errmsg);
50 free(state.script);
203 State state; local
    [all...]
  /device/lge/hammerhead/liblight/
lights.c 101 static int rgb_to_brightness(struct light_state_t const* state)
103 int color = state->color & 0x00ffffff;
110 struct light_state_t const* state)
113 int brightness = rgb_to_brightness(state);
122 static int set_light_locked(struct light_state_t const* state, int type)
129 switch (state->flashMode) {
132 onMS = state->flashOnMS;
133 offMS = state->flashOffMS;
142 colorRGB = state->color;
146 state->flashMode, colorRGB, onMS, offMS)
    [all...]
  /external/dropbear/libtomcrypt/src/mac/pelican/
pelican.c 15 Pelican MAC, initialize state, by Tom St Denis
25 Initialize a Pelican state
26 @param pelmac The Pelican state to initialize
48 zeromem(pelmac->state, 16);
49 aes_ecb_encrypt(pelmac->state, pelmac->state, &pelmac->K);
60 LOAD32H(s0, pelmac->state );
61 LOAD32H(s1, pelmac->state + 4);
62 LOAD32H(s2, pelmac->state + 8);
63 LOAD32H(s3, pelmac->state + 12)
    [all...]
  /external/skia/tests/
PathOpsSimplifyTrianglesThreadedTest.cpp 12 PathOpsThreadState& state = *data; local
14 bool progress = state.fReporter->verbose(); // FIXME: break out into its own parameter?
18 state.fKey = "?";
19 int ax = state.fA & 0x03;
20 int ay = state.fA >> 2;
21 int bx = state.fB & 0x03;
22 int by = state.fB >> 2;
23 int cx = state.fC & 0x03;
24 int cy = state.fC >> 2;
60 outputProgress(state.fPathStr, pathStr, SkPath::kWinding_FillType)
    [all...]
  /external/v8/src/
v8.cc 116 static void seed_random(uint32_t* state) {
119 state[i] = FLAG_random_seed;
124 state[i] = val;
126 state[i] = random();
133 static uint32_t random_base(uint32_t* state) {
136 if (state[0] == 0) seed_random(state);
138 // Mix the bits. Never replaces state[i] with 0 if it is nonzero.
139 state[0] = 18273 * (state[0] & 0xFFFF) + (state[0] >> 16)
    [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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/views/detail/
ShaderUniformDetailsProvider.java 20 import com.android.ide.eclipse.gltrace.state.GLCompositeProperty;
21 import com.android.ide.eclipse.gltrace.state.GLStateType;
22 import com.android.ide.eclipse.gltrace.state.IGLProperty;
39 public boolean isApplicable(IGLProperty state) {
40 return getShaderUniformProperty(state) != null;
59 public void updateControl(IGLProperty state) {
60 IGLProperty uniform = getShaderUniformProperty(state);
154 * the state hierarchy.
156 private IGLProperty getShaderUniformProperty(IGLProperty state) {
157 if (state.getType() == GLStateType.PER_UNIFORM_STATE)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BaseRecognizer.cs 68 * State of a lexer, parser, or tree parser are collected into a state
69 * object so the state can be shared. This sharing is needed to
71 * and other state variables. It's a kind of explicit multiple
72 * inheritance via delegation of methods and shared state.
75 protected internal RecognizerSharedState state; field in class:Antlr.Runtime.BaseRecognizer
81 public BaseRecognizer(RecognizerSharedState state) {
82 if (state == null) {
83 state = new RecognizerSharedState();
85 this.state = state
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BaseRecognizer.cs 70 * State of a lexer, parser, or tree parser are collected into a state
71 * object so the state can be shared. This sharing is needed to
73 * and other state variables. It's a kind of explicit multiple
74 * inheritance via delegation of methods and shared state.
77 protected internal RecognizerSharedState state; field in class:Antlr.Runtime.BaseRecognizer
84 public BaseRecognizer( RecognizerSharedState state )
86 if ( state == null )
88 state = new RecognizerSharedState();
90 this.state = state
    [all...]
  /external/chromium_org/chrome/browser/ui/views/accessibility/
accessibility_event_router_views.cc 74 // we pass more information along to the listener such as focused state.
93 // event loop, to handle cases where the view's state changes after
189 ui::AccessibleViewState state; local
190 view->GetAccessibleState(&state);
192 switch (state.role) {
297 ui::AccessibleViewState state; local
298 view->GetAccessibleState(&state);
299 std::string name = UTF16ToUTF8(state.name);
302 (state.state & ui::AccessibilityTypes::STATE_PROTECTED) != 0
314 ui::AccessibleViewState state; local
329 ui::AccessibleViewState state; local
347 ui::AccessibleViewState state; local
369 ui::AccessibleViewState state; local
385 ui::AccessibleViewState state; local
395 ui::AccessibleViewState state; local
416 ui::AccessibleViewState state; local
431 ui::AccessibleViewState state; local
455 ui::AccessibleViewState state; local
478 ui::AccessibleViewState state; local
496 ui::AccessibleViewState state; local
    [all...]
  /frameworks/av/cmds/stagefright/
SimplePlayer.cpp 313 CodecState *state = local
317 state->mNumFramesWritten = 0;
318 state->mCodec = MediaCodec::CreateByType(
321 CHECK(state->mCodec != NULL);
323 err = state->mCodec->configure(
334 state->mCSD.push_back(buffer);
341 CodecState *state = &mStateByTrackIndex.editValueAt(i); local
343 status_t err = state->mCodec->start();
346 err = state->mCodec->getInputBuffers(&state->mBuffers[0])
402 CodecState *state = &mStateByTrackIndex.editValueAt(i); local
421 CodecState *state = &mStateByTrackIndex.editValueAt(i); local
476 CodecState *state = &mStateByTrackIndex.editValueFor(trackIndex); local
517 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/chromium_org/chrome/browser/content_settings/
content_settings_usages_state_unittest.cc 41 ContentSettingsUsagesState state(&profile, kTypeForTesting);
48 state.DidNavigate(load_committed_details);
56 state.OnPermissionSet(url_0, true);
65 state.OnPermissionSet(url_1, false);
68 state.state_map();
73 state.GetDetailedInfo(&formatted_host_per_state, &tab_state_flags);
96 state.OnPermissionSet(url_0, false);
100 state.GetDetailedInfo(&formatted_host_per_state, &tab_state_flags);
122 state.OnPermissionSet(url_0, true);
125 state.DidNavigate(load_committed_details)
    [all...]
  /external/chromium_org/chrome/browser/geolocation/
geolocation_settings_state_unittest.cc 34 GeolocationSettingsState state(&profile);
41 state.DidNavigate(load_committed_details);
49 state.OnGeolocationPermissionSet(url_0, true);
58 state.OnGeolocationPermissionSet(url_1, false);
61 state.state_map();
66 state.GetDetailedInfo(&formatted_host_per_state, &tab_state_flags);
89 state.OnGeolocationPermissionSet(url_0, false);
93 state.GetDetailedInfo(&formatted_host_per_state, &tab_state_flags);
115 state.OnGeolocationPermissionSet(url_0, true);
118 state.DidNavigate(load_committed_details)
    [all...]

Completed in 2130 milliseconds

<<21222324252627282930>>