HomeSort by relevance Sort by last modified time
    Searched refs:state (Results 601 - 625 of 8770) sorted by null

<<21222324252627282930>>

  /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...]
  /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 31 ContentSettingsUsagesState state(&profile, type);
38 state.DidNavigate(load_committed_details);
46 state.OnPermissionSet(url_0, true);
55 state.OnPermissionSet(url_1, false);
58 state.state_map();
63 state.GetDetailedInfo(&formatted_host_per_state, &tab_state_flags);
86 state.OnPermissionSet(url_0, false);
90 state.GetDetailedInfo(&formatted_host_per_state, &tab_state_flags);
112 state.OnPermissionSet(url_0, true);
115 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...]
  /external/chromium_org/third_party/mesa/src/src/glsl/
test_optpass.cpp 209 struct _mesa_glsl_parse_state *state local
214 _mesa_glsl_initialize_types(state);
215 _mesa_glsl_read_ir(state, shader->ir, input.c_str(), true);
219 state->error = glcpp_preprocess(state, &source, &state->info_log,
220 state->extensions, ctx->API) != 0;
222 if (!state->error) {
223 _mesa_glsl_lexer_ctor(state, source);
224 _mesa_glsl_parse(state);
    [all...]
  /external/mesa3d/src/glsl/
test_optpass.cpp 209 struct _mesa_glsl_parse_state *state local
214 _mesa_glsl_initialize_types(state);
215 _mesa_glsl_read_ir(state, shader->ir, input.c_str(), true);
219 state->error = glcpp_preprocess(state, &source, &state->info_log,
220 state->extensions, ctx->API) != 0;
222 if (!state->error) {
223 _mesa_glsl_lexer_ctor(state, source);
224 _mesa_glsl_parse(state);
    [all...]
  /external/chromium/chrome/browser/ui/views/
accessibility_event_router_views.cc 118 ui::AccessibleViewState state; local
119 view->GetAccessibleState(&state);
120 return UTF16ToUTF8(state.name);
239 ui::AccessibleViewState state; local
240 view->GetAccessibleState(&state);
241 ui::AccessibilityTypes::Role role = state.role;
254 ui::AccessibleViewState state; local
255 view->GetAccessibleState(&state);
256 std::string name = UTF16ToUTF8(state.name);
258 std::string value = UTF16ToUTF8(state.value)
265 ui::AccessibleViewState state; local
278 ui::AccessibleViewState state; local
289 ui::AccessibleViewState state; local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
enable.c 52 * Helper to enable/disable client-side state.
55 client_state(struct gl_context *ctx, GLenum cap, GLboolean state)
142 if (*var == state)
149 *var = state;
151 if (state)
159 ctx->Driver.Enable( ctx, cap, state );
166 state ? "Enable" : "Disable", _mesa_lookup_enum_by_nr(cap));
172 * \param cap state to enable/disable.
188 * \param cap state to enable/disable.
215 * state
    [all...]
  /external/mesa3d/src/mesa/main/
enable.c 52 * Helper to enable/disable client-side state.
55 client_state(struct gl_context *ctx, GLenum cap, GLboolean state)
142 if (*var == state)
149 *var = state;
151 if (state)
159 ctx->Driver.Enable( ctx, cap, state );
166 state ? "Enable" : "Disable", _mesa_lookup_enum_by_nr(cap));
172 * \param cap state to enable/disable.
188 * \param cap state to enable/disable.
215 * state
    [all...]
  /bionic/libc/bionic/
debug_stacktrace.cpp 84 stack_crawl_state_t* state = static_cast<stack_crawl_state_t*>(arg); local
89 if (ip != 0 && !state->have_skipped_self) {
90 state->have_skipped_self = true;
112 state->frames[state->frame_count++] = ip;
113 return (state->frame_count >= state->max_depth) ? _URC_END_OF_STACK : _URC_NO_REASON;
117 stack_crawl_state_t state(frames, max_depth);
118 _Unwind_Backtrace(trace_function, &state);
119 return state.frame_count
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
PKCS5S2ParametersGenerator.java 26 private byte[] state; field in class:PKCS5S2ParametersGenerator
41 state = new byte[hMac.getMacSize()];
62 hMac.doFinal(state, 0);
64 System.arraycopy(state, 0, out, outOff, state.length);
68 hMac.update(state, 0, state.length);
69 hMac.doFinal(state, 0);
71 for (int j = 0; j != state.length; j++)
73 out[outOff + j] ^= state[j]
    [all...]
  /external/chromium_org/base/debug/
stack_trace_android.cc 30 StackCrawlState* state = static_cast<StackCrawlState*>(arg); local
34 if (ip != 0 && !state->have_skipped_self) {
35 state->have_skipped_self = true;
39 state->frames[state->frame_count++] = ip;
40 if (state->frame_count >= state->max_depth)
63 StackCrawlState state(reinterpret_cast<uintptr_t*>(trace_), kMaxTraces);
64 _Unwind_Backtrace(&TraceStackFrame, &state);
65 count_ = state.frame_count
    [all...]
  /external/chromium_org/gpu/command_buffer/service/
gpu_state_tracer.cc 21 static scoped_refptr<Snapshot> Create(const ContextState* state);
30 explicit Snapshot(const ContextState* state);
43 Snapshot::Snapshot(const ContextState* state) : state_(state) {}
45 scoped_refptr<Snapshot> Snapshot::Create(const ContextState* state) {
46 return scoped_refptr<Snapshot>(new Snapshot(state));
100 scoped_ptr<GPUStateTracer> GPUStateTracer::Create(const ContextState* state) {
101 return scoped_ptr<GPUStateTracer>(new GPUStateTracer(state));
104 GPUStateTracer::GPUStateTracer(const ContextState* state) : state_(state) {
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/handshake/
_base.py 97 state = http_header_util.ParsingState(subprotocol)
98 token = http_header_util.consume_token(state)
99 rest = http_header_util.peek(state)
156 state = http_header_util.ParsingState(data)
161 token = http_header_util.consume_token(state)
165 http_header_util.consume_lwses(state)
167 if http_header_util.peek(state) is None:
170 if not http_header_util.consume_string(state, ','):
172 'Expected a comma but found %r' % http_header_util.peek(state))
174 http_header_util.consume_lwses(state)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/vega/
api_transform.c 37 struct matrix *mat = vg_state_matrix(&ctx->state.vg);
54 mat = vg_state_matrix(&ctx->state.vg);
57 if (ctx->state.vg.matrix_mode != VG_MATRIX_IMAGE_USER_TO_SURFACE) {
76 mat = vg_state_matrix(&ctx->state.vg);
93 dst = vg_state_matrix(&ctx->state.vg);
95 if (ctx->state.vg.matrix_mode != VG_MATRIX_IMAGE_USER_TO_SURFACE) {
106 struct matrix *dst = vg_state_matrix(&ctx->state.vg);
113 struct matrix *dst = vg_state_matrix(&ctx->state.vg);
120 struct matrix *dst = vg_state_matrix(&ctx->state.vg);
127 struct matrix *dst = vg_state_matrix(&ctx->state.vg)
    [all...]
  /external/chromium_org/ui/base/gtk/
event_synthesis_gtk.cc 12 bool press, guint gdk_key, guint state) {
25 event->key.state = state;
55 guint state = (control ? GDK_CONTROL_MASK : 0) | local
58 SynthesizeKeyEvent(window, true, GDK_Alt_L, state));
61 // TODO(estade): handle other state flags besides control, shift, alt?
63 guint state = (control ? GDK_CONTROL_MASK : 0) | local
68 events->push_back(SynthesizeKeyEvent(window, true, gdk_key, state));
69 events->push_back(SynthesizeKeyEvent(window, false, gdk_key, state));
72 guint state = (control ? GDK_CONTROL_MASK : 0) local
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
BoolAssignmentChecker.cpp 27 void emitReport(ProgramStateRef state, CheckerContext &C) const;
33 void BoolAssignmentChecker::emitReport(ProgramStateRef state,
35 if (ExplodedNode *N = C.addTransition(state)) {
79 ProgramStateRef state = C.getState();
86 svalBuilder.evalBinOp(state, BO_GE, *DV, zeroVal,
99 llvm::tie(stateGE, stateLT) = CM.assumeDual(state, *greaterThanEqualToZero);
116 assert(stateGE == state);
122 svalBuilder.evalBinOp(state, BO_LE, *DV, OneVal,
135 llvm::tie(stateLE, stateGT) = CM.assumeDual(state, *lessThanEqToOne);
152 assert(stateLE == state);
    [all...]
  /external/mesa3d/src/gallium/state_trackers/vega/
api_transform.c 37 struct matrix *mat = vg_state_matrix(&ctx->state.vg);
54 mat = vg_state_matrix(&ctx->state.vg);
57 if (ctx->state.vg.matrix_mode != VG_MATRIX_IMAGE_USER_TO_SURFACE) {
76 mat = vg_state_matrix(&ctx->state.vg);
93 dst = vg_state_matrix(&ctx->state.vg);
95 if (ctx->state.vg.matrix_mode != VG_MATRIX_IMAGE_USER_TO_SURFACE) {
106 struct matrix *dst = vg_state_matrix(&ctx->state.vg);
113 struct matrix *dst = vg_state_matrix(&ctx->state.vg);
120 struct matrix *dst = vg_state_matrix(&ctx->state.vg);
127 struct matrix *dst = vg_state_matrix(&ctx->state.vg)
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
cache.h 44 // This is a VectorFstBaseImpl container that holds a State similar to
50 // final weight even if the state is non-final to mark it as
65 typedef S State;
89 // Gets a state from its ID; state must exist.
97 // Gets a state from its ID; state must exist.
105 // Gets a state from its ID; return 0 if it doesn't exist.
115 // Gets a state from its ID; add it if necessary.
118 return cache_first_state_; // Return 1st cached state
165 S *state = ExtendState(s); local
171 S *state = ExtendState(s); local
177 S *state = ExtendState(s); local
199 S *state = ExtendState(s); local
208 const S *state = CheckState(s); local
219 const S *state = CheckState(s); local
229 const S *state = GetState(s); local
234 const S *state = GetState(s); local
239 const S *state = GetState(s); local
244 const S *state = GetState(s); local
250 const S *state = GetState(s); local
285 S* state = VectorFstBaseImpl<S>::GetState(s); local
    [all...]
  /external/jpeg/
jchuff.c 12 * back up to the start of the current MCU. To do this, we copy state
58 savable_state saved; /* Bit buffer & DC state at start of MCU */
60 /* These fields are NOT loaded into local working state. */
76 /* Working state while writing an MCU.
83 savable_state cur; /* Current bit buffer & DC state */
270 #define emit_byte(state,val,action) \
271 { *(state)->next_output_byte++ = (JOCTET) (val); \
272 if (--(state)->free_in_buffer == 0) \
273 if (! dump_buffer(state)) \
278 dump_buffer (working_state * state)
479 working_state state; local
536 working_state state; local
    [all...]
  /external/qemu/distrib/jpeg-6b/
jchuff.c 12 * back up to the start of the current MCU. To do this, we copy state
58 savable_state saved; /* Bit buffer & DC state at start of MCU */
60 /* These fields are NOT loaded into local working state. */
76 /* Working state while writing an MCU.
83 savable_state cur; /* Current bit buffer & DC state */
270 #define emit_byte(state,val,action) \
271 { *(state)->next_output_byte++ = (JOCTET) (val); \
272 if (--(state)->free_in_buffer == 0) \
273 if (! dump_buffer(state)) \
278 dump_buffer (working_state * state)
479 working_state state; local
536 working_state state; local
    [all...]
  /external/qemu/elff/
dwarf_cu.cc 477 /* Create new state machine. */
478 DwarfStateMachine state(stmtl_header_.default_is_stmt != 0);
497 state.end_sequence_ = true;
498 state.reset(stmtl_header_.default_is_stmt != 0);
503 Elf_Xword prev_address = state.address_;
505 state.address_ =
508 state.address_ =
512 address >= prev_address && address < state.address_) {
513 return set_source_info(&state, info);
514 } else if (address == state.address_) {
    [all...]

Completed in 736 milliseconds

<<21222324252627282930>>