Searched defs:State (Results 76 - 100 of 247) sorted by relevance

12345678910

/external/clang/lib/StaticAnalyzer/Checkers/
H A DUnixAPIChecker.cpp66 ProgramStateRef State,
77 ProgramStateRef State,
80 ExplodedNode *N = C.generateSink(State);
76 ReportOpenBug(CheckerContext &C, ProgramStateRef State, const char *Msg, SourceRange SR) const argument
H A DVLASizeChecker.cpp37 ProgramStateRef State,
46 ProgramStateRef State,
49 ExplodedNode *N = C.generateSink(State);
44 reportBug(VLASize_Kind Kind, const Expr *SizeE, ProgramStateRef State, CheckerContext &C) const argument
/external/clang/lib/StaticAnalyzer/Core/
H A DExplodedGraph.cpp302 ProgramStateRef State,
305 // Profile 'State' to determine if we already have an existing node.
309 NodeTy::Profile(profile, L, State, IsSink);
322 new (V) NodeTy(L, State, IsSink);
398 ExplodedNode *NewN = G->getNode(N->getLocation(), N->State, N->isSink(),
301 getNode(const ProgramPoint &L, ProgramStateRef State, bool IsSink, bool* IsNew) argument
H A DSimpleConstraintManager.cpp98 SimpleConstraintManager::assumeAuxForSymbol(ProgramStateRef State, argument
105 return State;
109 return assumeSymNE(State, Sym, zero, zero);
111 return assumeSymEQ(State, Sym, zero, zero);
/external/clang/unittests/Lex/
H A DPPCallbacksTest.cpp89 unsigned State; member in struct:__anon2813::PragmaOpenCLExtensionCallbacks::__anon2814
92 PragmaOpenCLExtensionCallbacks() : Name("Not called."), State(99) {};
97 unsigned State) override {
101 this->State = State;
107 unsigned State; member in class:__anon2813::PragmaOpenCLExtensionCallbacks
234 Callbacks->State
335 ASSERT_EQ(ExpectedState, Parameters.State);
347 ASSERT_EQ(ExpectedState, Parameters.State);
/external/deqp/execserver/
H A DxsWin32TestProcess.hpp159 enum State enum in class:xs::win32::Process
168 State m_state;
/external/deqp/modules/glshared/
H A DglsCalibration.hpp138 enum State enum in class:deqp::gls::TheilSenCalibrator
154 State getState (void) const;
H A DglsShaderPerformanceMeasurer.hpp100 enum State enum in class:deqp::gls::ShaderPerformanceMeasurer
117 State m_state;
/external/icu/icu4c/source/common/unicode/
H A Dbytestrie.h100 class State : public UMemory { class in class:BytesTrie
103 * Constructs an empty State.
106 State() { bytes=NULL; } function in class:BytesTrie::State
117 * @param state The State object to hold the trie's state.
122 const BytesTrie &saveState(State &state) const {
133 * @param state The State object which holds a saved trie state.
139 BytesTrie &resetToState(const State &state) {
H A Ducharstrie.h100 class State : public UMemory { class in class:UCharsTrie
103 * Constructs an empty State.
106 State() { uchars=NULL; } function in class:UCharsTrie::State
117 * @param state The State object to hold the trie's state.
122 const UCharsTrie &saveState(State &state) const {
133 * @param state The State object which holds a saved trie state.
139 UCharsTrie &resetToState(const State &state) {
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DSimplePatternFormatter.java61 State state = State.INIT;
67 state = State.APOSTROPHE;
69 state = State.PLACEHOLDER;
84 state = State.INIT;
91 state = State.INIT;
96 state = State.INIT;
307 private static enum State { enum in class:SimplePatternFormatter
/external/jetty/src/java/org/eclipse/jetty/websocket/
H A DWebSocketParserD08.java40 public enum State { enum in class:WebSocketParserD08
46 State(int needs) method in class:WebSocketParserD08.State
61 private State _state;
88 _state=State.START;
143 while (available<(_state==State.SKIP?1:_bytesNeeded))
152 if (_fragmentFrames && _state==State.DATA)
195 if (available<(_state==State.SKIP?1:_bytesNeeded))
201 while (_state!=State.DATA && available>=(_state==State.SKIP?1:_bytesNeeded))
207 _state=_opcode==WebSocketConnectionD08.OP_CLOSE?State
[all...]
H A DWebSocketParserRFC6455.java40 public enum State { enum in class:WebSocketParserRFC6455
46 State(int needs) method in class:WebSocketParserRFC6455.State
61 private State _state;
88 _state=State.START;
143 while (available<(_state==State.SKIP?1:_bytesNeeded))
152 if (_fragmentFrames && _state==State.DATA)
195 if (available<(_state==State.SKIP?1:_bytesNeeded))
201 while (_state!=State.DATA && available>=(_state==State.SKIP?1:_bytesNeeded))
207 _state=_opcode==WebSocketConnectionRFC6455.OP_CLOSE?State
[all...]
/external/libnfc-nxp/src/
H A DphFriNfc_NdefReg.h48 * NDEF Registration And Listening - States of the Finite State machine
239 uint8_t State; /**< \internal The state of the library. */ member in struct:phFriNfc_NdefReg
433 * return value tells that it has finished. No State reset is performed during operation.
443 * \li NFCSTATUS_INVALID_DEVICE_REQUEST State other than the specified in the File.
/external/libphonenumber/libphonenumber/src/com/google/i18n/phonenumbers/
H A DPhoneNumberMatcher.java185 private enum State { enum in class:PhoneNumberMatcher
204 private State state = State.NOT_READY;
205 /** The last successful match, null unless in {@link State#READY}. */
207 /** The next index to start searching at. Undefined in {@link State#DONE}. */
694 if (state == State.NOT_READY) {
697 state = State.DONE;
700 state = State.READY;
703 return state == State.READY;
716 state = State
[all...]
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugLine.h190 // State
192 struct State : public Row struct in class:DWARFDebugLine
194 typedef void (*Callback)(dw_offset_t offset, const State& state, void* userData);
203 State (Prologue::shared_ptr& prologue_sp,
223 DISALLOW_COPY_AND_ASSIGN (State);
230 static bool ParseStatementTable(const lldb_private::DataExtractor& debug_line_data, lldb::offset_t* offset_ptr, State::Callback callback, void* userData);
234 static void Parse(const lldb_private::DataExtractor& debug_line_data, DWARFDebugLine::State::Callback callback, void* userData);
/external/lldb/tools/debugserver/source/MacOSX/arm/
H A DDNBArchImpl.h137 struct State struct in class:DNBArchMachARM
145 State() function in struct:DNBArchMachARM::State
238 State m_state;
/external/lldb/tools/debugserver/source/MacOSX/ppc/
H A DDNBArchImpl.h82 struct State struct in class:DNBArchMachPPC
93 State() function in struct:DNBArchMachPPC::State
175 State m_state;
/external/llvm/include/llvm/Analysis/
H A DTargetLibraryInfo.h70 void setState(LibFunc::Func F, AvailabilityState State) { argument
72 AvailableArray[F/4] |= State << 2*(F&3);
256 auto State = Impl->getState(F); local
257 if (State == TargetLibraryInfoImpl::Unavailable)
259 if (State == TargetLibraryInfoImpl::StandardName)
261 assert(State == TargetLibraryInfoImpl::CustomName);
/external/llvm/include/llvm/CodeGen/
H A DWinEHFuncInfo.h46 void setEHState(int State) { EHState = State; } argument
/external/llvm/include/llvm/ExecutionEngine/Orc/
H A DObjectLinkingLayer.h44 State(Raw) {}
57 bool NeedsFinalization() const { return (State == Raw); }
62 assert((State != Finalized) &&
73 enum { Raw, Finalizing, Finalized } State; member in class:llvm::orc::ObjectLinkingLayerBase::LinkedObjectSet
125 State = Finalizing;
130 State = Finalized;
/external/llvm/utils/TableGen/
H A DDFAPacketizerEmitter.cpp61 // State represents the usage of machine resources if the packet contains
78 // A State instance also contains a collection of transitions from that state:
82 class State { class in namespace:__anon11363
86 // can be mutated even in const State objects.
90 typedef std::map<unsigned, const State *> TransitionMap;
93 State();
95 bool operator<(const State &s) const {
116 void addTransition(unsigned InsnClass, const State *To) const;
134 typedef std::set<State> StateSet;
137 State *currentStat
155 State::State() : function in class:State
[all...]
/external/lzma/CS/7zip/Compress/LZMA/
H A DLzmaBase.cs15 public struct State struct in class:SevenZip.Compression.LZMA.Base
/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...]
/external/protobuf/src/google/protobuf/stubs/
H A Donce_unittest.cc136 enum State { enum in class:google::protobuf::__anon13551::OnceInitTest
141 State CurrentState() {
157 State state_;

Completed in 611 milliseconds

12345678910