Searched refs:State (Results 51 - 75 of 468) sorted by relevance

1234567891011>>

/external/skia/src/gpu/
H A DGrCommandBuilder.h18 typedef GrTargetCommands::State State; typedef in class:GrCommandBuilder
31 virtual Cmd* recordDrawBatch(State*, GrBatch*) = 0;
37 virtual Cmd* recordDrawPath(State*,
41 virtual Cmd* recordDrawPaths(State*,
/external/nanohttpd/websocket/src/main/java/fi/iki/elonen/
H A DWebSocket.java15 public static enum State { enum in class:WebSocket
27 protected State state = State.UNCONNECTED;
36 state = State.CONNECTING;
38 state = State.OPEN;
65 while (state == State.OPEN) {
106 if (state == State.CLOSING) {
111 State oldState = state;
112 state = State.CLOSING;
113 if (oldState == State
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DBasicObjCFoundationChecks.cpp140 ProgramStateRef State = C.getState(); local
141 if (State->isNull(C.getSVal(E)).isConstrainedTrue()) {
156 ProgramStateRef State = C.getState(); local
157 if (!State->isNull(msg.getArgSVal(Arg)).isConstrainedTrue())
853 ProgramStateRef checkPointerEscape(ProgramStateRef State,
886 ProgramStateRef State,
888 if (!State)
894 return State;
897 std::tie(StNonNil, StNil) = State->assume(*KnownCollection);
911 ProgramStateRef State,
885 checkCollectionNonNil(CheckerContext &C, ProgramStateRef State, const ObjCForCollectionStmt *FCS) argument
910 checkElementNonNil(CheckerContext &C, ProgramStateRef State, const ObjCForCollectionStmt *FCS) argument
944 assumeCollectionNonEmpty(CheckerContext &C, ProgramStateRef State, SymbolRef CollectionS, bool Assumption) argument
975 assumeCollectionNonEmpty(CheckerContext &C, ProgramStateRef State, const ObjCForCollectionStmt *FCS, bool Assumption) argument
1012 ProgramStateRef State = C.getState(); local
1076 ProgramStateRef State = C.getState(); local
1130 checkPointerEscape(ProgramStateRef State, const InvalidatedSymbols &Escaped, const CallEvent *Call, PointerEscapeKind Kind) const argument
1159 ProgramStateRef State = C.getState(); local
1214 assumeExprIsNonNull(const Expr *NonNullExpr, ProgramStateRef State, CheckerContext &C) const argument
1226 ProgramStateRef State = C.getState(); local
[all...]
H A DObjCContainersChecker.cpp63 ProgramStateRef State = C.getState(); local
64 SVal SizeV = State->getSVal(Size, C.getLocationContext());
70 SVal ArrayRef = State->getSVal(Array, C.getLocationContext());
76 State->set<ArraySizeMap>(ArraySym, SizeV.castAs<DefinedSVal>()));
111 ProgramStateRef State = C.getState(); local
119 const DefinedSVal *Size = State->get<ArraySizeMap>(ArraySym);
126 SVal IdxVal = State->getSVal(IdxExpr, C.getLocationContext());
133 ProgramStateRef StInBound = State->assumeInBound(Idx, *Size, true, T);
134 ProgramStateRef StOutBound = State->assumeInBound(Idx, *Size, false, T);
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
H A Dbandwidth_estimator.c790 RateModel* State,
805 if (State->InitCounter > 0)
807 if (State->InitCounter-- <= INIT_BURST_LEN)
826 if (State->BurstCounter)
828 if (State->StillBuffered < (1.0 - 1.0/BURST_LEN) * DelayBuildUp)
839 State->StillBuffered) / (double)FrameSamples) * BottleNeck;
845 State->BurstCounter--;
861 if (State->PrevExceed) {
863 State->ExceedAgo -= /*BURST_INTERVAL*/ burstInterval / (BURST_LEN - 1);
864 if (State
789 WebRtcIsac_GetMinBytes( RateModel* State, int StreamSize, const int FrameSamples, const double BottleNeck, const double DelayBuildUp, enum ISACBandwidth bandwidth ) argument
910 WebRtcIsac_UpdateRateModel( RateModel *State, int StreamSize, const int FrameSamples, const double BottleNeck) argument
931 WebRtcIsac_InitRateModel( RateModel *State) argument
[all...]
H A Dintialize.c155 void WebRtcIsac_InitPitchAnalysis(PitchAnalysisStruct *State) argument
160 State->dec_buffer[k] = 0.0;
162 State->decimator_state[k] = 0.0;
164 State->hp_state[k] = 0.0;
166 State->whitened_buf[k] = 0.0;
168 State->inbuf[k] = 0.0;
170 WebRtcIsac_InitPitchFilter(&(State->PFstr_wght));
172 WebRtcIsac_InitPitchFilter(&(State->PFstr));
174 WebRtcIsac_InitWeightingFilter(&(State->Wghtstr));
H A Dpitch_estimator.h27 PitchAnalysisStruct *State,
34 PitchAnalysisStruct *State,
/external/zxing/qr_scanner/src/com/google/zxing/client/android/
H A DCaptureActivityHandler.java42 private State state;
45 private enum State { enum in class:CaptureActivityHandler
58 state = State.SUCCESS;
72 if (state == State.PREVIEW) {
80 state = State.SUCCESS;
87 state = State.PREVIEW;
103 state = State.DONE;
120 if (state == State.SUCCESS) {
121 state = State.PREVIEW;
/external/clang/lib/Format/
H A DFormatToken.cpp59 unsigned CommaSeparatedList::formatAfterToken(LineState &State, argument
62 if (State.NextToken == nullptr || !State.NextToken->Previous ||
63 !State.NextToken->Previous->Previous)
67 const FormatToken *LBrace = State.NextToken->Previous->Previous;
76 Style.ColumnLimit - State.Column + State.NextToken->Previous->ColumnWidth;
90 while (State.NextToken != LBrace->MatchingParen) {
95 if (Item < Commas.size() && State.NextToken->Previous == Commas[Item]) {
96 if (!State
114 formatFromToken(LineState &State, ContinuationIndenter *Indenter, bool DryRun) argument
[all...]
H A DUnwrappedLineFormatter.h50 /// \brief An edge in the solution space from \c Previous->State to \c State,
53 StateNode(const LineState &State, bool NewLine, StateNode *Previous) argument
54 : State(State), NewLine(NewLine), Previous(Previous) {}
55 LineState State; member in struct:clang::format::UnwrappedLineFormatter::StateNode
68 /// \c State has the given \c OrderedPenalty.
125 void reconstructPath(LineState &State, StateNode *Current);
134 /// \brief If the \p State's next token is an r_brace closing a nested block,
138 /// \p Penalty as well as \p State
[all...]
/external/llvm/lib/CodeGen/
H A DAggressiveAntiDepBreaker.cpp119 State(nullptr) {
138 delete State;
142 assert(!State);
143 State = new AggressiveAntiDepState(TRI->getNumRegs(), BB);
146 std::vector<unsigned> &KillIndices = State->GetKillIndices();
147 std::vector<unsigned> &DefIndices = State->GetDefIndices();
156 State->UnionGroups(Reg, 0);
172 State->UnionGroups(AliasReg, 0);
180 delete State;
181 State
[all...]
/external/deqp/execserver/
H A DxsTestDriver.hpp49 enum State enum in class:xs::TestDriver
67 State m_state;
/external/deqp/framework/common/
H A DtcuTestSessionExecutor.hpp79 enum State enum in class:tcu::TestSessionExecutor
94 State m_state;
/external/deqp/framework/platform/android/
H A DtcuAndroidWindow.hpp45 enum State enum in class:tcu::Android::Window
78 State m_state;
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/
H A DHtmlStripFunction.java37 private enum State { enum in class:HtmlStripFunction
100 State state = State.DEFAULT;
110 state = State.IN_AMP;
113 state = State.IN_TAG;
125 state = State.DEFAULT;
132 state = State.DEFAULT;
149 state = State.DEFAULT;
/external/markdown/markdown/
H A Dblockparser.py4 class State(list): class in inherits:list
46 self.state = State()
/external/skia/src/core/
H A DSkDeviceLooper.h67 enum State { enum in class:SkDeviceLooper
82 State fState;
/external/skia/src/gpu/gl/
H A DSkNullGLContext.cpp138 typedef SkNullGLContext::ContextState State; typedef
152 State* state = State::Get();
165 State* state = State::Get();
198 return ++State::Get()->fCurrProgramID;
202 return ++State::Get()->fCurrShaderID;
210 State* state = State::Get();
223 State* stat
[all...]
/external/webrtc/src/modules/audio_coding/codecs/isac/fix/source/
H A Dpitch_estimator.h25 PitchAnalysisStruct *State,
30 PitchAnalysisStruct *State,
/external/webrtc/src/system_wrappers/source/
H A Devent_posix.h22 enum State enum in namespace:webrtc
62 State _state;
/external/clang/test/SemaCXX/
H A Dconstexpr-turing.cpp14 using State = Action[2];
35 constexpr unsigned run(const State *tm, const Tape &tape, unsigned state) {
43 constexpr State bb3[] = {
51 constexpr State bb4[] = {
/external/llvm/lib/Target/X86/
H A DX86CallingConv.h27 CCState &State) {
23 CC_X86_32_VectorCallIndirect(unsigned &ValNo, MVT &ValVT, MVT &LocVT, CCValAssign::LocInfo &LocInfo, ISD::ArgFlagsTy &ArgFlags, CCState &State) argument
/external/skia/tools/
H A DiOSShell.h25 virtual bool onDispatchClick(int x, int y, Click::State, void* owner,
/external/llvm/lib/Object/
H A DRecordStreamer.h18 enum State { NeverSeen, Global, Defined, DefinedGlobal, Used }; enum in class:llvm::RecordStreamer
21 StringMap<State> Symbols;
28 typedef StringMap<State>::const_iterator const_iterator;
/external/owasp/sanitizer/src/main/org/owasp/html/
H A DHtmlLexer.java49 private State state = State.OUTSIDE_TAG;
69 private static enum State { enum in class:HtmlLexer
91 state = State.IN_TAG;
94 if (state == State.SAW_EQ && HtmlTokenType.TAGEND == token.type) {
98 state = State.IN_TAG;
103 state = State.OUTSIDE_TAG;
126 state = State.SAW_NAME;
132 state = State.SAW_EQ;
141 state = State
338 private static enum State { enum in class:HtmlInputSplitter
[all...]

Completed in 719 milliseconds

1234567891011>>