HomeSort by relevance Sort by last modified time
    Searched refs:m_state (Results 51 - 75 of 200) sorted by null

1 23 4 5 6 7 8

  /external/chromium_org/third_party/WebKit/Source/core/page/
EventSource.cpp 66 , m_state(CONNECTING)
110 ASSERT(m_state == CLOSED);
116 ASSERT(m_state == CONNECTING);
124 ASSERT(m_state == CONNECTING);
164 if (m_state != CLOSED)
170 m_state = CONNECTING;
192 return m_state;
197 if (m_state == CLOSED) {
210 m_state = CLOSED;
225 ASSERT(m_state == CONNECTING)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLTokenizer.h 185 State state() const { return m_state; }
186 void setState(State state) { m_state = state; }
191 && (m_state == HTMLTokenizer::DataState
192 || m_state == HTMLTokenizer::RCDATAState
193 || m_state == HTMLTokenizer::RAWTEXTState);
213 m_state = state;
221 m_state = state;
229 m_state = HTMLTokenizer::DataState;
262 State m_state; member in class:blink::HTMLTokenizer
  /external/chromium_org/third_party/WebKit/Source/platform/network/
SocketStreamHandle.cpp 110 m_handle->m_state = SocketStreamHandle::Open;
173 , m_state(Connecting)
192 return m_state;
197 if (m_state == Connecting || m_state == Closing)
208 if (m_state == Open)
226 if (m_state == Closed)
228 m_state = Closing;
237 m_state = Closed;
242 ASSERT(!client || (!m_client && m_state == Connecting))
    [all...]
  /device/generic/goldfish/opengl/system/GLESv1_enc/
GLEncoder.cpp 74 assert(ctx->m_state != NULL);
75 GLClientState* state = ctx->m_state;
112 assert(ctx->m_state != NULL);
113 GLClientState* state = ctx->m_state;
151 assert(ctx->m_state != NULL);
152 GLClientState* state = ctx->m_state;
190 assert(ctx->m_state != NULL);
191 GLClientState* state = ctx->m_state;
225 assert(ctx->m_state != NULL);
226 ctx->m_state->getClientStatePointer(param,params)
    [all...]
  /external/lldb/tools/debugserver/source/MacOSX/arm/
DNBArchImpl.cpp 146 return m_state.context.gpr.__pc;
157 m_state.context.gpr.__pc = value;
168 return m_state.context.gpr.__sp;
177 if (!force && m_state.GetError(set, Read) == KERN_SUCCESS)
182 kern_return_t kret = ::thread_get_state(m_thread->MachPortNumber(), ARM_THREAD_STATE, (thread_state_t)&m_state.context.gpr, &count);
183 uint32_t *r = &m_state.context.gpr.__r[0];
207 m_state.SetError(set, Read, kret);
216 if (!force && m_state.GetError(set, Read) == KERN_SUCCESS)
221 kern_return_t kret = ::thread_get_state(m_thread->MachPortNumber(), ARM_VFP_STATE, (thread_state_t)&m_state.context.vfp, &count);
224 uint32_t *r = &m_state.context.vfp.__r[0]
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/imports/
HTMLImport.h 112 const HTMLImportState& state() const { return m_state; }
140 HTMLImportState m_state; member in class:blink::HTMLImport
HTMLImport.cpp 76 m_state = HTMLImportState::blockedState();
96 i->m_state = HTMLImportState::invalidState();
101 // |m_state| of its children and precedents of ancestors.
105 ASSERT(!i->m_state.isValid());
106 i->m_state = HTMLImportStateResolver(i).resolve();
140 fprintf(stderr, "%p state=%d", this, m_state.peekValueForDebug());
HTMLImportLoader.cpp 49 , m_state(StateLoading)
144 if (m_state == state)
147 m_state = state;
149 if (m_state == StateParsed || m_state == StateError || m_state == StateWritten) {
154 // Since DocumentWriter::end() can let setState() reenter, we shouldn't refer to m_state here.
172 if (m_state == StateParsed)
  /external/chromium_org/third_party/WebKit/Source/modules/notifications/
Notification.cpp 68 , m_state(NotificationStateIdle)
83 ASSERT(m_state == NotificationStateIdle);
93 m_state = NotificationStateShowing;
98 switch (m_state) {
129 m_state = NotificationStateClosed;
174 ASSERT(m_state != NotificationStateClosed);
186 m_state = NotificationStateClosed;
198 return m_state == NotificationStateShowing || m_asyncRunner.isActive();
  /external/deqp/executor/
xeContainerFormatParser.cpp 43 , m_state (STATE_AT_LINE_START)
56 m_state = STATE_AT_LINE_START;
150 else if (m_state == STATE_CONTAINER_LINE)
159 if (m_elementLen > 0 && m_state == STATE_DATA)
170 if (m_state == STATE_CONTAINER_LINE)
175 m_state = STATE_AT_LINE_START;
180 else if (m_state == STATE_AT_LINE_START)
183 m_state = (curChar == '#') ? STATE_CONTAINER_LINE : STATE_DATA;
xeXMLParser.hpp 131 State m_state; //!< Tokenization state. member in class:xe::xml::Tokenizer
196 State m_state; member in class:xe::xml::Parser
224 if (m_state != STATE_ENTITY)
232 if (m_state != STATE_ENTITY)
240 if (m_state != STATE_ENTITY)
248 if (m_state != STATE_ENTITY)
xeXMLWriter.hpp 97 State m_state; member in class:xe::xml::Writer
104 if (m_state == STATE_ELEMENT)
108 m_state = STATE_DATA;
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptPromiseResolver.h 45 ASSERT(m_state == ResolvedOrRejected || !m_isPromiseCalled);
115 if (m_state != Pending || !executionContext() || executionContext()->activeDOMObjectsAreStopped())
118 m_state = newState;
133 ResolutionState m_state; member in class:blink::ScriptPromiseResolver
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderSelectionInfo.h 39 , m_state(RenderObject::SelectionNone)
46 , m_state(o->selectionState())
58 RenderObject::SelectionState state() const { return m_state; }
63 RenderObject::SelectionState m_state; member in class:blink::RenderSelectionInfoBase
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
RespondWithObserver.h 48 State m_state; member in class:blink::FINAL
  /external/deqp/modules/glshared/
glsShaderPerformanceMeasurer.hpp 85 bool isFinished (void) const { return m_state == STATE_FINISHED; }
86 Result getResult (void) const { DE_ASSERT(m_state == STATE_FINISHED); return m_result; }
97 int getFinalCallCount (void) const { DE_ASSERT(m_state == STATE_FINISHED); return m_calibrator.getCallCount(); }
117 State m_state; member in class:deqp::gls::ShaderPerformanceMeasurer
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
FontResource.h 58 virtual bool stillNeedsLoad() const OVERRIDE { return m_state != LoadInitiated; }
61 bool loadScheduled() const { return m_state != Unloaded; }
86 State m_state; member in class:blink::FINAL
FontResource.cpp 79 , m_state(Unloaded)
100 if (m_state == Unloaded)
101 m_state = LoadScheduled;
106 if (m_state == LoadScheduled)
107 m_state = Unloaded;
127 if (m_state != LoadInitiated) {
128 m_state = LoadInitiated;
  /device/generic/goldfish/opengl/system/GLESv2_enc/
GL2Encoder.cpp 47 m_state = NULL;
178 assert(ctx->m_state != NULL);
179 ctx->m_state->setPixelStore(param, value);
186 assert(ctx->m_state != NULL);
187 ctx->m_state->bindBuffer(target, id);
196 GLuint bufferId = ctx->m_state->getBuffer(target);
208 GLuint bufferId = ctx->m_state->getBuffer(target);
223 ctx->m_state->unBindBuffer(buffers[i]);
231 assert(ctx->m_state != NULL);
232 ctx->m_state->setState(indx, size, type, normalized, stride, ptr)
    [all...]