Searched refs:States (Results 1 - 7 of 7) sorted by relevance
/external/autotest/server/cros/dynamic_suite/ |
H A D | suite.py | 59 {job_id: {'state':RetryHandler.States, 'retry_max':int}} 90 States = enum.Enum('NOT_ATTEMPTED', 'ATTEMPTED', 'RETRIED', variable in class:RetryHandler 129 'state': self.States.NOT_ATTEMPTED, 167 self.States.NOT_ATTEMPTED and 185 if old_record['state'] != self.States.NOT_ATTEMPTED: 189 old_record['state'] = self.States.RETRIED 205 if current_state != self.States.NOT_ATTEMPTED: 209 (self.States.get_string(current_state), 210 self.States.get_string(self.States [all...] |
H A D | suite_unittest.py | 393 'state': RetryHandler.States.NOT_ATTEMPTED, 725 self._FAKE_JOB_ID: {'state': RetryHandler.States.NOT_ATTEMPTED, 731 self._FAKE_JOB_ID: {'state': RetryHandler.States.RETRIED, 733 fake_new_job_id: {'state': RetryHandler.States.NOT_ATTEMPTED, 759 self._FAKE_JOB_ID: {'state': RetryHandler.States.NOT_ATTEMPTED, 795 'state': RetryHandler.States.NOT_ATTEMPTED, 801 'state': RetryHandler.States.ATTEMPTED,
|
/external/llvm/lib/Transforms/Scalar/ |
H A D | RewriteStatepointsForGC.cpp | 759 MapVector<Value *, BDVState> States; local 766 States.insert(std::make_pair(def, BDVState())); 779 if (States.insert(std::make_pair(Base, BDVState())).second) 802 DEBUG(dbgs() << "States after initialization:\n"); 803 for (auto Pair : States) { 813 auto I = States.find(baseValue); 814 assert(I != States.end() && "lookup failed!"); 821 const size_t oldSize = States.size(); 828 for (auto Pair : States) { 858 BDVState oldState = States[BD [all...] |
/external/pdfium/third_party/lcms2-2.6/src/ |
H A D | cmssamp.c | 47 cmsFloat64Number States[4] = { 1.0, 1.0, 1.0, 1.0 }; local 55 States, NULL, 0, TYPE_Lab_DBL, TYPE_Lab_DBL, cmsFLAGS_NOCACHE|cmsFLAGS_NOOPTIMIZE);
|
/external/clang/lib/Sema/ |
H A D | AnalysisBasedWarnings.cpp | 198 // All blocks are in one of three states. States are ordered so that blocks 213 SmallVector<RecursiveState, 16> States(cfg->getNumBlockIDs(), FoundNoPath); 214 States[cfg->getEntry().getBlockID()] = FoundPathWithNoRecursiveCall; 225 RecursiveState CurState = States[ID]; 242 if (States[next_ID] < CurState) { 243 States[next_ID] = CurState; 251 return States[ExitID] == FoundPath;
|
H A D | SemaDeclAttr.cpp | 898 SmallVector<CallableWhenAttr::ConsumedState, 3> States; 920 States.push_back(CallableState); 924 CallableWhenAttr(Attr.getRange(), S.Context, States.data(), 925 States.size(), Attr.getAttributeSpellingListIndex()));
|
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/ |
H A D | jsilver.sablecc | 59 /* States of the lexer. */ 60 States
|
Completed in 430 milliseconds