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

<<21222324252627282930>>

  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/mod_pywebsocket/
common.py 197 def _parse_extension_param(state, definition, allow_quoted_string):
198 param_name = http_header_util.consume_token(state)
203 http_header_util.consume_lwses(state)
205 if not http_header_util.consume_string(state, '='):
209 http_header_util.consume_lwses(state)
213 param_value = http_header_util.consume_token_or_quoted_string(state)
215 param_value = http_header_util.consume_token(state)
224 def _parse_extension(state, allow_quoted_string):
225 extension_token = http_header_util.consume_token(state)
232 http_header_util.consume_lwses(state)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/drive/
job_list.cc 66 std::string JobStateToString(JobState state) {
67 switch (state) {
76 return "(unknown job state)";
82 state(STATE_NONE),
91 JobStateToString(state).c_str(),
107 switch (job_info.state) {
  /external/chromium_org/chrome/browser/chromeos/net/
network_portal_detector_test_impl.cc 26 const CaptivePortalState& state) {
28 portal_state_map_[service_path] = state;
32 CaptivePortalState state; local
35 state = portal_state_map_[default_network_->path()];
38 OnPortalDetectionCompleted(default_network_.get(), state));
  /external/chromium_org/gpu/command_buffer/common/
command_buffer_shared.h 37 void Write(const T& state) {
40 states_[towrite][index] = state;
46 // Attempt to update the state, updating only if the generation counter is
48 void Read(T* state) {
54 if (states_[toread][index].generation - state->generation < 0x80000000U)
55 *state = states_[toread][index];
59 typedef SharedState<CommandBuffer::State> CommandBufferSharedState;
  /external/chromium_org/third_party/WebKit/Source/heap/
ThreadState.cpp 62 ThreadState* state = new ThreadState(startOfStack); local
63 attachedThreads().add(state);
68 ThreadState* state = current(); local
70 attachedThreads().remove(state);
71 delete state;
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/mod_pywebsocket/
common.py 198 def _parse_extension_param(state, definition, allow_quoted_string):
199 param_name = http_header_util.consume_token(state)
204 http_header_util.consume_lwses(state)
206 if not http_header_util.consume_string(state, '='):
210 http_header_util.consume_lwses(state)
214 param_value = http_header_util.consume_token_or_quoted_string(state)
216 param_value = http_header_util.consume_token(state)
225 def _parse_extension(state, allow_quoted_string):
226 extension_token = http_header_util.consume_token(state)
233 http_header_util.consume_lwses(state)
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_bld_blend_aos.c 245 * @param blend the blend state of the shader variant
269 const struct pipe_rt_blend_state * state = &blend->rt[rt]; local
286 if (!state->blend_enable) {
289 boolean rgb_alpha_same = state->rgb_src_factor == state->rgb_dst_factor && state->alpha_src_factor == state->alpha_dst_factor;
292 src_factor = lp_build_blend_factor(&bld, state->rgb_src_factor,
293 state->alpha_src_factor, alpha_swizzle);
294 dst_factor = lp_build_blend_factor(&bld, state->rgb_dst_factor
    [all...]
  /external/chromium_org/webkit/child/
webthemeengine_impl_mac.cc 19 static ThemeTrackEnableState stateToHIEnableState(WebThemeEngine::State state) {
20 switch (state) {
32 WebThemeEngine::State state,
51 trackInfo.enableState = stateToHIEnableState(state);
54 state == WebThemeEngine::StatePressed ? kThemeThumbPressed : 0;
  /external/clang/lib/StaticAnalyzer/Checkers/
ArrayBoundCheckerV2.cpp 59 static RegionRawOffsetV2 computeOffset(ProgramStateRef state,
97 ProgramStateRef state = checkerContext.getState(); local
98 ProgramStateRef originalState = state;
102 RegionRawOffsetV2::computeOffset(state, svalBuilder, location);
115 svalBuilder.evalBinOpNN(state, BO_LT, rawOffset.getByteOffset(), *NV,
124 state->assume(*lowerBoundToCheck);
134 state = state_withinLowerBound;
146 = svalBuilder.evalBinOpNN(state, BO_GE, rawOffset.getByteOffset(),
156 state->assume(*upperboundToCheck);
160 if (state->isTainted(rawOffset.getByteOffset())
    [all...]
ReturnPointerRangeChecker.cpp 36 ProgramStateRef state = C.getState(); local
42 SVal V = state->getSVal(RetE, C.getLocationContext());
58 = C.getStoreManager().getSizeInElements(state, ER->getSuperRegion(),
61 ProgramStateRef StInBound = state->assumeInBound(Idx, NumElements, true);
62 ProgramStateRef StOutBound = state->assumeInBound(Idx, NumElements, false);
  /external/guava/guava/src/com/google/common/util/concurrent/
AbstractIdleService.java 37 /* use AbstractService for state management */
40 executor(State.STARTING).execute(new Runnable() {
54 executor(State.STOPPING).execute(new Runnable() {
82 * @param state {@link Service.State#STARTING} or
83 * {@link Service.State#STOPPING}, used by the default implementation for
86 protected Executor executor(final State state) {
90 new Thread(command, getServiceName() + " " + state).start();
96 return getServiceName() + " [" + state() + "]"
    [all...]
  /external/jmonkeyengine/engine/src/test/jme3test/app/state/
TestAppStates.java 33 package jme3test.app.state;
63 RootNodeState state = new RootNodeState(); local
64 viewPort.attachScene(state.getRootNode());
65 stateManager.attach(state);
70 state.getRootNode().attachChild(model);
  /external/markdown/markdown/
blockparser.py 4 class State(list):
5 """ Track the current and nested state of the parser.
7 This utility class is used to track the state of the BlockParser and
9 a list. Each time a state is set, that state is appended to the end of the
10 list. Each time a state is reset, that state is removed from the end of
13 Therefore, each time a state is set for a nested block, that state must be
14 reset when we back out of that level of nesting or the state could b
    [all...]
  /external/markdown/
regression-tests.py 59 """ Tests of the State class for BlockParser. """
62 self.state = markdown.blockparser.State()
65 """ Test State when empty. """
66 self.assertEqual(self.state, [])
69 """ Test State.set(). """
70 self.state.set('a_state')
71 self.assertEqual(self.state, ['a_state'])
72 self.state.set('state2')
73 self.assertEqual(self.state, ['a_state', 'state2']
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_bld_blend_aos.c 245 * @param blend the blend state of the shader variant
269 const struct pipe_rt_blend_state * state = &blend->rt[rt]; local
286 if (!state->blend_enable) {
289 boolean rgb_alpha_same = state->rgb_src_factor == state->rgb_dst_factor && state->alpha_src_factor == state->alpha_dst_factor;
292 src_factor = lp_build_blend_factor(&bld, state->rgb_src_factor,
293 state->alpha_src_factor, alpha_swizzle);
294 dst_factor = lp_build_blend_factor(&bld, state->rgb_dst_factor
    [all...]
  /external/srtp/crypto/hash/
null_auth.c 71 (*a)->state = pointer + sizeof (auth_t);
86 /* zeroize entire state*/
100 null_auth_init(null_auth_ctx_t *state, const uint8_t *key, int key_len) {
108 null_auth_compute(null_auth_ctx_t *state, uint8_t *message,
115 null_auth_update(null_auth_ctx_t *state, uint8_t *message,
122 null_auth_start(null_auth_ctx_t *state) {
  /external/srtp/crypto/kernel/
key.c 59 key->state = key_state_normal;
73 if (key->state == key_state_expired)
100 if (key->state == key_state_normal) {
101 /* we just passed the soft limit, so change the state */
102 key->state = key_state_past_soft_limit;
110 key->state = key_state_expired;
  /frameworks/rs/driver/runtime/
rs_sampler.c 14 return prog->mHal.state.minFilter;
23 return prog->mHal.state.magFilter;
32 return prog->mHal.state.wrapS;
41 return prog->mHal.state.wrapT;
50 return prog->mHal.state.aniso;
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_domimplementationfeaturenull.java 73 boolean state;
78 state = domImpl.hasFeature("HTML", null);
79 assertTrue("supports_HTML_null", state);
81 state = domImpl.hasFeature("XML", null);
82 assertTrue("supports_XML_null", state);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
isSupported12.java 93 boolean state;
96 state = rootNode.isSupported("Core", "2.0");
97 assertTrue("Core2", state);
100 state = rootNode.isSupported(featureElement, "1.0");
104 state = rootNode.isSupported(featureElement, "2.0");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/unique.ptr/unique.ptr.runtime/unique.ptr.runtime.ctor/
move_convert03.fail.cpp 55 int state() const {return state_;} function in class:CDeleter
73 assert(s2.get_deleter().state() == d.state());
74 assert(s.get_deleter().state() == d.state());
move_convert06.fail.cpp 55 int state() const {return state_;} function in class:CDeleter
73 assert(s2.get_deleter().state() == d.state());
74 assert(s.get_deleter().state() == d.state());
move_convert09.fail.cpp 55 int state() const {return state_;} function in class:CDeleter
73 assert(s2.get_deleter().state() == d.state());
74 assert(s.get_deleter().state() == d.state());
move_convert12.fail.cpp 55 int state() const {return state_;} function in class:CDeleter
73 assert(s2.get_deleter().state() == d.state());
74 assert(s.get_deleter().state() == d.state());
move_convert15.fail.cpp 55 int state() const {return state_;} function in class:CDeleter
73 assert(s2.get_deleter().state() == d.state());
74 assert(s.get_deleter().state() == d.state());

Completed in 982 milliseconds

<<21222324252627282930>>