Home
last modified time | relevance | path

Searched refs:CurrentState (Results 1 – 25 of 38) sorted by relevance

12

/external/swiftshader/third_party/llvm-10.0/llvm/lib/XRay/
DBlockPrinter.cpp15 CurrentState = State::Preamble; in visit()
21 if (CurrentState == State::Start) in visit()
25 CurrentState = State::Preamble; in visit()
30 CurrentState = State::Preamble; in visit()
35 CurrentState = State::Preamble; in visit()
41 if (CurrentState == State::Preamble) in visit()
43 if (CurrentState == State::Function) in visit()
45 CurrentState = State::Metadata; in visit()
52 if (CurrentState == State::Function) in visit()
54 CurrentState = State::Metadata; in visit()
[all …]
/external/llvm-project/llvm/lib/XRay/
DBlockPrinter.cpp15 CurrentState = State::Preamble; in visit()
21 if (CurrentState == State::Start) in visit()
25 CurrentState = State::Preamble; in visit()
30 CurrentState = State::Preamble; in visit()
35 CurrentState = State::Preamble; in visit()
41 if (CurrentState == State::Preamble) in visit()
43 if (CurrentState == State::Function) in visit()
45 CurrentState = State::Metadata; in visit()
52 if (CurrentState == State::Function) in visit()
54 CurrentState = State::Metadata; in visit()
[all …]
/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/internal/
DCurrentStateTest.java21 import io.opencensus.implcore.internal.CurrentState.State;
36 assertThat(new CurrentState(State.ENABLED).get()).isEqualTo(State.ENABLED); in defaultState()
41 CurrentState currentState = new CurrentState(State.ENABLED); in setState()
51 CurrentState currentState = new CurrentState(State.ENABLED); in preventSettingStateAfterReadingState()
/external/llvm-project/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
DMPITypes.h31 Request(State S) : CurrentState{S} {} in Request()
34 Id.AddInteger(CurrentState); in Profile()
38 return CurrentState == ToCompare.CurrentState;
41 const State CurrentState; variable
DMPIBugReporter.cpp102 if (!PrevReq || (Req->CurrentState != PrevReq->CurrentState)) { in VisitNode()
/external/clang/lib/StaticAnalyzer/Checkers/MPI-Checker/
DMPITypes.h32 Request(State S) : CurrentState{S} {} in Request()
35 Id.AddInteger(CurrentState); in Profile()
39 return CurrentState == ToCompare.CurrentState;
42 const State CurrentState; variable
DMPIBugReporter.cpp100 if ((Req && !PrevReq) || (Req->CurrentState != PrevReq->CurrentState)) { in VisitNode()
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/tags/propagation/
DTagContextBinarySerializerImpl.java19 import io.opencensus.implcore.internal.CurrentState;
20 import io.opencensus.implcore.internal.CurrentState.State;
30 private final CurrentState state;
32 TagContextBinarySerializerImpl(CurrentState state) { in TagContextBinarySerializerImpl()
DTagPropagationComponentImpl.java19 import io.opencensus.implcore.internal.CurrentState;
27 public TagPropagationComponentImpl(CurrentState state) { in TagPropagationComponentImpl()
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/tags/
DTagsComponentImplBase.java21 import io.opencensus.implcore.internal.CurrentState;
22 import io.opencensus.implcore.internal.CurrentState.State;
34 private final CurrentState currentState = new CurrentState(DEFAULT_STATE);
DTaggerImpl.java20 import io.opencensus.implcore.internal.CurrentState;
21 import io.opencensus.implcore.internal.CurrentState.State;
36 private final CurrentState state;
38 TaggerImpl(CurrentState state) { in TaggerImpl()
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/stats/
DStatsComponentImplBase.java21 import io.opencensus.implcore.internal.CurrentState;
22 import io.opencensus.implcore.internal.CurrentState.State;
34 private final CurrentState currentState = new CurrentState(DEFAULT_STATE);
DStatsManager.java22 import io.opencensus.implcore.internal.CurrentState;
23 import io.opencensus.implcore.internal.CurrentState.State;
41 private final CurrentState state;
44 StatsManager(EventQueue queue, Clock clock, CurrentState state) { in StatsManager()
/external/llvm/lib/CodeGen/
DDFAPacketizer.cpp62 InstrItins(I), CurrentState(0), DFAStateInputTable(SIT), in DFAPacketizer()
122 UnsignPair StateTrans = UnsignPair(CurrentState, InsnInput); in canReserveResources()
123 ReadTable(CurrentState); in canReserveResources()
133 UnsignPair StateTrans = UnsignPair(CurrentState, InsnInput); in reserveResources()
134 ReadTable(CurrentState); in reserveResources()
136 CurrentState = CachedTable[StateTrans]; in reserveResources()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/AsmParser/
DWebAssemblyAsmParser.cpp182 } CurrentState = FileStart; member in __anon3fc1b0670111::WebAssemblyAsmParser
495 CurrentState = EndFunction; in ParseInstruction()
613 CurrentState = Label; in onLabelParsed()
635 if (CurrentState != DataSection) { in CheckDataSection()
641 CurrentState = DataSection; in CheckDataSection()
696 if (CurrentState == Label && WasmSym == LastLabel) { in ParseDirective()
700 CurrentState = FunctionStart; in ParseDirective()
768 if (CurrentState != FunctionStart) in ParseDirective()
775 CurrentState = FunctionLocals; in ParseDirective()
808 if (CurrentState == FunctionStart) { in ensureLocals()
[all …]
/external/llvm-project/llvm/lib/Target/WebAssembly/AsmParser/
DWebAssemblyAsmParser.cpp185 } CurrentState = FileStart; member in __anonf4bcd6730111::WebAssemblyAsmParser
529 CurrentState = EndFunction; in ParseInstruction()
658 CurrentState = Label; in onLabelParsed()
680 if (CurrentState != DataSection) { in CheckDataSection()
686 CurrentState = DataSection; in CheckDataSection()
777 if (CurrentState == Label && WasmSym == LastLabel) { in ParseDirective()
781 CurrentState = FunctionStart; in ParseDirective()
849 if (CurrentState != FunctionStart) in ParseDirective()
856 CurrentState = FunctionLocals; in ParseDirective()
889 if (CurrentState == FunctionStart) { in ensureLocals()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/XRay/
DBlockPrinter.h36 State CurrentState = State::Start; variable
55 void reset() { CurrentState = State::Start; } in reset()
/external/llvm-project/llvm/include/llvm/XRay/
DBlockPrinter.h36 State CurrentState = State::Start; variable
55 void reset() { CurrentState = State::Start; } in reset()
/external/opencensus-java/impl_core/src/test/java/io/opencensus/implcore/tags/
DScopedTagContextsTest.java23 import io.opencensus.implcore.internal.CurrentState;
24 import io.opencensus.implcore.internal.CurrentState.State;
46 private final Tagger tagger = new TaggerImpl(new CurrentState(State.ENABLED));
DTagContextImplTest.java26 import io.opencensus.implcore.internal.CurrentState;
27 import io.opencensus.implcore.internal.CurrentState.State;
50 private final Tagger tagger = new TaggerImpl(new CurrentState(State.ENABLED));
/external/opencensus-java/impl_core/src/main/java/io/opencensus/implcore/internal/
DCurrentState.java26 public final class CurrentState { class
66 public CurrentState(State defaultState) { in CurrentState() method in CurrentState
/external/llvm/lib/CodeGen/AsmPrinter/
DWinException.cpp1133 int CurrentState = NullState; in emitCLRExceptionTable() local
1139 getTryAncestor(FuncInfo, CurrentState, StateChange.NewState); in emitCLRExceptionTable()
1140 while (CurrentState != StillPendingState) { in emitCLRExceptionTable()
1141 assert(CurrentState != NullState && in emitCLRExceptionTable()
1145 CurrentState, FuncletState}); in emitCLRExceptionTable()
1147 CurrentState = FuncInfo.ClrEHUnwindMap[CurrentState].TryParentState; in emitCLRExceptionTable()
1150 if (HandlerStack.back().second == CurrentState) in emitCLRExceptionTable()
1154 if (StateChange.NewState != CurrentState) { in emitCLRExceptionTable()
1159 EnteredState != CurrentState; in emitCLRExceptionTable()
1168 HandlerStack.emplace_back(CurrentStartLabel, CurrentState); in emitCLRExceptionTable()
[all …]
/external/llvm-project/llvm/lib/CodeGen/AsmPrinter/
DWinException.cpp1185 int CurrentState = NullState; in emitCLRExceptionTable() local
1191 getTryAncestor(FuncInfo, CurrentState, StateChange.NewState); in emitCLRExceptionTable()
1192 while (CurrentState != StillPendingState) { in emitCLRExceptionTable()
1193 assert(CurrentState != NullState && in emitCLRExceptionTable()
1197 CurrentState, FuncletState}); in emitCLRExceptionTable()
1199 CurrentState = FuncInfo.ClrEHUnwindMap[CurrentState].TryParentState; in emitCLRExceptionTable()
1202 if (HandlerStack.back().second == CurrentState) in emitCLRExceptionTable()
1206 if (StateChange.NewState != CurrentState) { in emitCLRExceptionTable()
1211 EnteredState != CurrentState; in emitCLRExceptionTable()
1220 HandlerStack.emplace_back(CurrentStartLabel, CurrentState); in emitCLRExceptionTable()
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DWinException.cpp1176 int CurrentState = NullState; in emitCLRExceptionTable() local
1182 getTryAncestor(FuncInfo, CurrentState, StateChange.NewState); in emitCLRExceptionTable()
1183 while (CurrentState != StillPendingState) { in emitCLRExceptionTable()
1184 assert(CurrentState != NullState && in emitCLRExceptionTable()
1188 CurrentState, FuncletState}); in emitCLRExceptionTable()
1190 CurrentState = FuncInfo.ClrEHUnwindMap[CurrentState].TryParentState; in emitCLRExceptionTable()
1193 if (HandlerStack.back().second == CurrentState) in emitCLRExceptionTable()
1197 if (StateChange.NewState != CurrentState) { in emitCLRExceptionTable()
1202 EnteredState != CurrentState; in emitCLRExceptionTable()
1211 HandlerStack.emplace_back(CurrentStartLabel, CurrentState); in emitCLRExceptionTable()
[all …]
/external/llvm/include/llvm/CodeGen/
DDFAPacketizer.h77 int CurrentState; variable
93 CurrentState = 0; in clearResources()

12