Searched defs:State (Results 101 - 125 of 247) sorted by relevance

12345678910

/external/skia/experimental/Networking/
H A DSkSockets.h29 enum State { enum in class:SkSocket
/external/v8/src/heap/
H A Dincremental-marking.h19 enum State { STOPPED, SWEEPING, MARKING, COMPLETE }; enum in class:v8::internal::IncrementalMarking
29 State state() {
200 State state_;
/external/v8/src/
H A Dlookup.h32 enum State { enum in class:v8::internal::BASE_EMBEDDED
75 State state() const { return state_; }
147 inline State LookupInHolder(Map* map, JSReceiver* holder);
183 State state_;
H A Dglobal-handles.cc29 // State transition diagram:
31 enum State { enum in class:v8::internal::GlobalHandles::Node
119 // State and flag accessors.
121 State state() const {
124 void set_state(State state) {
279 // in_new_space_list) and a State.
280 class NodeState: public BitField<State, 0, 4> {};
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
H A DXYPlotZoomPan.java14 private enum State enum in class:XYPlotZoomPan
21 private State mode = State.NONE;
233 mode = State.ONE_FINGER_DRAG;
240 mode = State.TWO_FINGERS_DRAG;
245 mode = State.NONE;
248 if(mode == State.ONE_FINGER_DRAG) {
250 } else if(mode == State.TWO_FINGERS_DRAG) {
/external/clang/include/clang/AST/
H A DCommentLexer.h279 LexerState State; member in class:clang::comments::Lexer
281 /// If State is LS_VerbatimBlock, contains the name of verbatim end
/external/clang/lib/Format/
H A DContinuationIndenter.cpp73 LineState State; local
74 State.FirstIndent = FirstIndent;
75 State.Column = FirstIndent;
76 State.Line = Line;
77 State.NextToken = Line->First;
78 State.Stack.push_back(ParenState(FirstIndent, Line->Level, FirstIndent,
81 State.LineContainsContinuedForLoopSection = false;
82 State.StartOfStringLiteral = 0;
83 State.StartOfLineLevel = 0;
84 State
92 canBreak(const LineState &State) argument
135 mustBreak(const LineState &State) argument
241 addTokenToState(LineState &State, bool Newline, bool DryRun, unsigned ExtraSpaces) argument
276 addTokenOnCurrentLine(LineState &State, bool DryRun, unsigned ExtraSpaces) argument
381 addTokenOnNewLine(LineState &State, bool DryRun) argument
509 getNewLineColumn(const LineState &State) argument
608 moveStateToNextToken(LineState &State, bool DryRun, bool Newline) argument
713 moveStatePastFakeLParens(LineState &State, bool Newline) argument
791 moveStatePastFakeRParens(LineState &State) argument
803 moveStatePastScopeOpener(LineState &State, bool Newline) argument
862 moveStatePastScopeCloser(LineState &State) argument
883 moveStateToNewBlock(LineState &State) argument
898 addMultilineToken(const FormatToken &Current, LineState &State) argument
914 breakProtrudingToken(const FormatToken &Current, LineState &State, bool DryRun) argument
1078 nextIsMultilineString(const LineState &State) argument
[all...]
H A DUnwrappedLineFormatter.cpp308 /// \brief Formats the line starting at \p State, simply keeping all of the
311 LineState State = local
313 while (State.NextToken) {
315 Indenter->mustBreak(State) ||
316 (Indenter->canBreak(State) && State.NextToken->NewlinesBefore > 0);
317 Indenter->addTokenToState(State, Newline, /*DryRun=*/false);
423 LineState State = Indenter->getInitialState(Indent, &TheLine, DryRun); local
424 while (State.NextToken) {
425 formatChildren(State, /*Newlin
477 LineState State = Indenter->getInitialState(FirstIndent, &Line, DryRun); local
617 printLineState(const LineState &State) argument
627 reconstructPath(LineState &State, StateNode *Current) argument
672 formatChildren(LineState &State, bool NewLine, bool DryRun, unsigned &Penalty) argument
[all...]
/external/clang/lib/Serialization/
H A DModuleManager.cpp251 void ModuleManager::returnVisitState(VisitState *State) { argument
252 assert(State->NextState == nullptr && "Visited state is in list?");
253 State->NextState = FirstVisitState;
254 FirstVisitState = State;
346 VisitState *State = allocateVisitState(); local
347 unsigned VisitNumber = State->NextVisitNumber++;
357 State->VisitNumber[M->Index] = VisitNumber;
364 if (State->VisitNumber[CurrentModule->Index] == VisitNumber)
368 assert(State->VisitNumber[CurrentModule->Index] == VisitNumber - 1);
369 State
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DGenericTaintChecker.cpp159 ProgramStateRef State,
161 return (State->isTainted(E, C.getLocationContext()) || isStdin(E, C) ||
163 State->isTainted(getPointedToSymbol(C, E))));
294 ProgramStateRef State = nullptr; local
307 State = Rule.process(CE, C);
308 if (!State)
310 C.addTransition(State);
320 State = (this->*evalFunction)(CE, C);
321 if (!State)
323 C.addTransition(State);
158 isTaintedOrPointsToTainted(const Expr *E, ProgramStateRef State, CheckerContext &C) argument
329 ProgramStateRef State = C.getState(); local
395 ProgramStateRef State = nullptr; local
428 ProgramStateRef State = C.getState(); local
447 ProgramStateRef State = C.getState(); local
518 ProgramStateRef State = C.getState(); local
536 ProgramStateRef State = C.getState(); local
552 ProgramStateRef State = C.getState(); local
574 ProgramStateRef State = C.getState(); local
637 ProgramStateRef State = C.getState(); local
[all...]
/external/clang/lib/StaticAnalyzer/Core/
H A DCoreEngine.cpp316 nodeBuilder.generateNode(Pred->State, Pred);
384 Pred->State, Pred);
456 Pred->State, Pred);
510 ProgramStateRef State,
514 ExplodedNode *Node = G.getNode(Loc, State, false, &IsNew);
626 ProgramStateRef State,
631 ExplodedNode *N = C.Eng.G.getNode(Loc, State, MarkAsSink, &IsNew);
655 ExplodedNode *BranchNodeBuilder::generateNode(ProgramStateRef State, argument
664 ExplodedNode *Succ = generateNodeImpl(Loc, State, NodePred);
509 generateNode(const ProgramPoint &Loc, ProgramStateRef State, ExplodedNode *Pred) argument
625 generateNodeImpl(const ProgramPoint &Loc, ProgramStateRef State, ExplodedNode *FromN, bool MarkAsSink) argument
H A DExprEngineCXX.cpp76 ProgramStateRef State = (*I)->getState(); local
78 State = State->BindExpr(CallExpr, LCtx, ThisVal);
80 State = bindReturnValue(Call, LCtx, State);
81 Bldr.generateNode(PS, State, *I);
92 static SVal makeZeroElementRegion(ProgramStateRef State, SVal LValue, argument
94 SValBuilder &SVB = State->getStateManager().getSValBuilder();
99 LValue = State->getLValue(Ty, SVB.makeZeroArrayIndex(), LValue);
110 ProgramStateRef State local
181 ProgramStateRef State = Pred->getState(); local
251 ProgramStateRef State = (*I)->getState(); local
306 ProgramStateRef State = Pred->getState(); local
347 ProgramStateRef State = Pred->getState(); local
404 ProgramStateRef State = Pred->getState(); local
[all...]
H A DRangeConstraintManager.cpp317 ConditionTruthVal checkNull(ProgramStateRef State, SymbolRef Sym) override;
342 ConditionTruthVal RangeConstraintManager::checkNull(ProgramStateRef State, argument
344 const RangeSet *Ranges = State->get<ConstraintRange>(Sym);
H A DSValBuilder.cpp304 SVal SValBuilder::makeSymExprValNN(ProgramStateRef State, argument
308 if (!State->isTainted(RHS) && !State->isTainted(LHS))
/external/deqp/executor/
H A DxeXMLParser.hpp110 enum State enum in class:xe::xml::Tokenizer
131 State m_state; //!< Tokenization state.
174 enum State enum in class:xe::xml::Parser
196 State m_state;
/external/lldb/tools/debugserver/source/MacOSX/i386/
H A DDNBArchImplI386.h121 struct State struct in class:DNBArchImplI386
129 State() function in struct:DNBArchImplI386::State
237 State m_state;
/external/lldb/tools/debugserver/source/MacOSX/x86_64/
H A DDNBArchImplX86_64.h120 struct State struct in class:DNBArchImplX86_64
128 State() function in struct:DNBArchImplX86_64::State
244 State m_state;
/external/llvm/lib/CodeGen/
H A DShadowStackGCLowering.cpp93 // State.
94 int State; member in class:__anon10501::EscapeEnumerator
100 : F(F), CleanupBBName(N), State(0), Builder(F.getContext()) {}
103 switch (State) {
110 State = 1;
127 State = 2;
/external/openfst/src/include/fst/
H A Dconst-fst.h112 struct State { struct in class:fst::ConstFstImpl
118 State() : final(Weight::Zero()), niepsilons(0), noepsilons(0) {} function in struct:fst::ConstFstImpl::State
133 State *states_; // States represenation
178 states_ = reinterpret_cast<State*>(states_region_->mutable_data());
226 size_t b = impl->nstates_ * sizeof(typename ConstFstImpl<A, U>::State);
233 impl->states_ = reinterpret_cast<State*>(
383 typename ConstFstImpl<A, U>::State state;
H A Dfactor-weight.h407 typedef CacheState<A> State; typedef in class:fst::FactorWeightFst
H A Drelabel.h210 typedef CacheState<A> State; typedef in class:fst::RelabelFstImpl
395 typedef CacheState<A> State; typedef in class:fst::RelabelFst
H A Dstate-map.h336 typedef CacheState<B> State; typedef in class:fst::StateMapFst
H A Dsynchronize.h362 typedef CacheState<A> State; typedef in class:fst::SynchronizeFst
/external/skia/include/views/
H A DSkWidget.h77 enum State { enum in class:SkButtonWidget
82 State getButtonState() const { return fState; }
83 void setButtonState(State);
93 State fState;
232 enum State { enum in class:SkCheckBoxView
237 State getState() const { return fState; }
238 void setState(State);
245 State fState;
/external/v8/src/ic/
H A Dic-state.h187 enum State { enum in class:v8::internal::CompareICState
199 static Type* StateToType(Zone* zone, State state,
202 static State NewInputState(State old_state, Handle<Object> value);
204 static const char* GetStateName(CompareICState::State state);
206 static State TargetState(State old_state, State old_left, State old_right,

Completed in 485 milliseconds

12345678910