Searched refs:m_state (Results 1 - 25 of 161) sorted by relevance

1234567

/macosx-10.9.5/WebCore-7537.78.1/loader/
H A DFrameLoaderStateMachine.cpp38 : m_state(CreatingInitialEmptyDocument)
44 return m_state == DisplayingInitialEmptyDocument;
49 return m_state >= DisplayingInitialEmptyDocumentPostCommit;
54 return m_state == CreatingInitialEmptyDocument;
59 return m_state == DisplayingInitialEmptyDocument || m_state == DisplayingInitialEmptyDocumentPostCommit;
64 return m_state == FirstLayoutDone;
69 ASSERT(State(m_state + 1) == state || (firstLayoutDone() && state == CommittedFirstRealLoad));
70 m_state = state;
H A DFrameLoaderStateMachine.h62 State m_state; member in class:WebCore::FrameLoaderStateMachine
/macosx-10.9.5/JavaScriptCore-7537.78.1/bytecode/
H A DPutByIdStatus.h57 : m_state(NoInformation)
66 : m_state(state)
72 ASSERT(m_state == NoInformation || m_state == TakesSlowPath);
81 : m_state(state)
87 ASSERT((m_state == NoInformation || m_state == TakesSlowPath) == !m_oldStructure);
88 ASSERT((m_state != SimpleTransition) == !m_newStructure);
89 ASSERT((m_state != SimpleTransition) == !m_structureChain);
90 ASSERT((m_state
112 State m_state; member in class:JSC::PutByIdStatus
[all...]
H A DGetByIdStatus.h49 : m_state(NoInformation)
55 : m_state(state)
64 : m_state(state)
77 State state() const { return m_state; }
79 bool isSet() const { return m_state != NoInformation; }
81 bool isSimple() const { return m_state == Simple; }
82 bool takesSlowPath() const { return m_state == TakesSlowPath || m_state == MakesCalls; }
83 bool makesCalls() const { return m_state == MakesCalls; }
96 State m_state; member in class:JSC::GetByIdStatus
[all...]
H A DResolveGlobalStatus.h49 : m_state(NoInformation)
58 : m_state(state)
67 State state() const { return m_state; }
69 bool isSet() const { return m_state != NoInformation; }
71 bool isSimple() const { return m_state == Simple; }
72 bool takesSlowPath() const { return m_state == TakesSlowPath; }
79 State m_state; member in class:JSC::ResolveGlobalStatus
/macosx-10.9.5/WebCore-7537.78.1/dom/
H A DDocumentParser.cpp34 : m_state(ParsingState)
51 m_state = ParsingState;
56 ASSERT(m_state == ParsingState);
57 m_state = StoppingState;
62 m_state = StoppedState;
67 m_state = DetachedState;
H A DDocumentParser.h70 bool isParsing() const { return m_state == ParsingState; }
71 bool isStopping() const { return m_state == StoppingState; }
72 bool isStopped() const { return m_state >= StoppedState; }
73 bool isDetached() const { return m_state == DetachedState; }
112 ParserState m_state; member in class:WebCore::DocumentParser
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/qt/
H A DQtGestureRecognizer.cpp35 , m_state(NoGesture)
41 m_state = NoGesture;
H A DQtGestureRecognizer.h36 bool isRecognized() const { return m_state == GestureRecognized; }
47 } m_state; member in class:WebKit::QtGestureRecognizer
H A DQtPanGestureRecognizer.cpp44 switch (m_state) {
46 m_state = GestureRecognitionStarted;
58 m_state = GestureRecognized;
75 if (m_state == NoGesture)
85 if (m_state == NoGesture)
H A DQtPinchGestureRecognizer.cpp52 switch (m_state) {
55 m_state = GestureRecognitionStarted;
61 m_state = GestureRecognized;
87 if (m_state == NoGesture)
97 if (m_state == NoGesture)
/macosx-10.9.5/WebCore-7537.78.1/platform/blackberry/
H A DPlatformTouchPointBlackBerry.cpp41 m_state = TouchReleased;
44 m_state = TouchMoved;
47 m_state = TouchPressed;
50 m_state = TouchStationary;
53 m_state = TouchStationary; // make sure m_state is initialized
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DPurgeableBufferMac.cpp46 , m_state(NonVolatile)
75 if (m_state != NonVolatile)
92 m_state = Purged;
96 m_state = Volatile;
100 if (m_state == NonVolatile)
102 if (m_state == Purged)
110 m_state = Purged;
114 m_state = state & VM_PURGABLE_EMPTY ? Purged : NonVolatile;
115 return m_state == NonVolatile;
120 if (m_state
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/network/
H A DSocketStreamHandleBase.cpp44 , m_state(Connecting)
50 return m_state;
55 if (m_state == Connecting || m_state == Closing)
68 if (m_state == Open)
86 if (m_state == Closed)
88 m_state = Closing;
99 m_state = Closed;
104 ASSERT(!client || (!m_client && m_state == Connecting));
110 if (m_state !
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/parser/
H A DCSSPreloadScanner.cpp38 : m_state(Initial)
49 m_state = Initial;
58 for (const Char* it = begin; it != end && m_state != DoneParsingImportRules; ++it)
86 switch (m_state) {
91 m_state = RuleStart;
93 m_state = MaybeComment;
95 m_state = DoneParsingImportRules;
99 m_state = Comment;
101 m_state = Initial;
105 m_state
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/texmap/
H A DTextureMapperLayer.cpp55 if (m_state.size.isEmpty() && m_state.masksToBounds)
66 m_state.visible = m_state.backfaceVisibility || !m_currentTransform.combined().isBackFaceVisible();
68 if (m_parent && m_parent->m_state.preserves3D)
69 m_centerZ = m_currentTransform.combined().mapPoint(FloatPoint3D(m_state.size.width() / 2, m_state.size.height() / 2, 0)).z();
71 if (m_state.maskLayer)
72 m_state.maskLayer->computeTransformsRecursive();
73 if (m_state
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/indexeddb/
H A DIDBTransactionBackendImpl.cpp54 , m_state(Unused)
71 ASSERT(m_state == Finished);
76 if (m_state == Finished)
87 if (m_state == Unused)
89 else if (m_state == Running && !m_taskTimer.isActive())
101 if (m_state == Finished)
104 bool wasRunning = m_state == Running;
111 m_state = Finished;
167 ASSERT(m_state == StartPending || m_state
[all...]
/macosx-10.9.5/JavaScriptCore-7537.78.1/dfg/
H A DDFGCFAPhase.cpp42 , m_state(graph)
88 m_state.beginBasicBlock(block);
98 m_state.dump(WTF::dataFile());
101 if (!m_state.execute(i)) {
110 m_state.dump(WTF::dataFile());
113 m_changed |= m_state.endBasicBlock(AbstractState::MergeToSuccessors);
132 AbstractState m_state; member in class:JSC::DFG::CFAPhase
H A DDFGConstantFoldingPhase.cpp46 , m_state(graph)
76 m_state.beginBasicBlock(block);
78 if (!m_state.isValid())
88 m_state.variables().operand(
99 AbstractValue& value = m_state.forNode(node->child1());
106 m_state.execute(indexInBlock); // Catch the fact that we may filter on cell.
115 m_state.execute(indexInBlock); // Catch the fact that we may filter on cell.
125 if (!node->arrayMode().alreadyChecked(m_graph, node, m_state.forNode(node->child1())))
133 if (m_state.forNode(node->child1()).value() != node->function())
150 Structure* structure = m_state
456 AbstractState m_state; member in class:JSC::DFG::ConstantFoldingPhase
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DGraphicsContext.cpp100 m_stack.append(m_state);
114 m_state = m_stack.last();
122 m_state.strokeThickness = thickness;
128 m_state.strokeStyle = style;
134 m_state.strokeColor = color;
135 m_state.strokeColorSpace = colorSpace;
136 m_state.strokeGradient.clear();
137 m_state.strokePattern.clear();
143 m_state.shadowOffset = offset;
144 m_state
[all...]
/macosx-10.9.5/WebCore-7537.78.1/xml/parser/
H A DMarkupTokenizerInlines.h65 m_state = prefix::stateName; \
73 m_state = prefix::stateName; \
86 m_state = prefix::stateName; \
/macosx-10.9.5/WebCore-7537.78.1/rendering/
H A DRenderSelectionInfo.h39 , m_state(RenderObject::SelectionNone)
46 , m_state(o->selectionState())
52 RenderObject::SelectionState state() const { return m_state; }
57 RenderObject::SelectionState m_state; member in class:WebCore::RenderSelectionInfoBase
/macosx-10.9.5/WebKit2-7537.78.2/Shared/
H A DWebPlatformTouchPoint.cpp41 , m_state(state)
51 , m_state(state)
63 encoder << m_state; local
75 if (!decoder.decode(result.m_state))
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/InspectorServer/
H A DWebSocketServer.cpp46 : m_state(Closed)
62 if (m_state == Listening)
69 m_state = Listening;
76 if (m_state == Closed)
/macosx-10.9.5/WebCore-7537.78.1/inspector/
H A DWorkerInspectorController.cpp97 , m_state(adoptPtr(new InspectorCompositeState(m_stateClient.get())))
102 OwnPtr<InspectorRuntimeAgent> runtimeAgent = WorkerRuntimeAgent::create(m_instrumentingAgents.get(), m_state.get(), m_injectedScriptManager.get(), workerContext);
106 OwnPtr<InspectorConsoleAgent> consoleAgent = WorkerConsoleAgent::create(m_instrumentingAgents.get(), m_state.get(), m_injectedScriptManager.get());
108 OwnPtr<InspectorDebuggerAgent> debuggerAgent = WorkerDebuggerAgent::create(m_instrumentingAgents.get(), m_state.get(), workerContext, m_injectedScriptManager.get());
113 m_agents.append(InspectorProfilerAgent::create(m_instrumentingAgents.get(), consoleAgent.get(), workerContext, m_state.get(), m_injectedScriptManager.get()));
114 m_agents.append(InspectorHeapProfilerAgent::create(m_instrumentingAgents.get(), m_state.get(), m_injectedScriptManager.get()));
116 m_agents.append(InspectorTimelineAgent::create(m_instrumentingAgents.get(), 0, 0, m_state.get(), InspectorTimelineAgent::WorkerInspector, 0));
141 m_state->unmute();
157 m_state->mute();
167 m_state
[all...]

Completed in 674 milliseconds

1234567