/external/llvm/utils/unittest/googletest/include/gtest/internal/ |
gtest-param-util.h | 79 // BaseGenerator()->End(). 86 // Current() on an iterator equal to BaseGenerator()->End(). 150 virtual ParamIteratorInterface<T>* End() const = 0; 172 iterator end() const { return iterator(impl_->End()); } function in class:testing::internal::ParamGenerator 185 RangeGenerator(T begin, T end, IncrementT step) 186 : begin_(begin), end_(end), 187 step_(step), end_index_(CalculateEndIndex(begin, end, step)) {} 193 virtual ParamIteratorInterface<T>* End() const { 243 const T& end, [all...] |
/external/mesa3d/src/gallium/state_trackers/d3d1x/gd3d11/ |
d3d11_objects.h | 676 virtual void STDMETHODCALLTYPE End() 678 this->device->End(this);
|
/external/mesa3d/src/gtest/include/gtest/internal/ |
gtest-param-util.h | 79 // BaseGenerator()->End(). 86 // Current() on an iterator equal to BaseGenerator()->End(). 150 virtual ParamIteratorInterface<T>* End() const = 0; 172 iterator end() const { return iterator(impl_->End()); } function in class:testing::internal::ParamGenerator 185 RangeGenerator(T begin, T end, IncrementT step) 186 : begin_(begin), end_(end), 187 step_(step), end_index_(CalculateEndIndex(begin, end, step)) {} 193 virtual ParamIteratorInterface<T>* End() const { 243 const T& end, [all...] |
/external/mesa3d/src/mesa/program/ |
prog_optimize.c | 354 printf("Optimize: End dead code removal.\n"); 371 END 379 * Return READ, WRITE, FLOW or END to indicate the next usage or an indicator 406 return END; 428 return END; 590 printf("Optimize: End remove extra move use.\n"); 630 if (use == WRITE || use == END) 800 if (next_use == WRITE || next_use == END) { 831 printf("Optimize: End remove extra moves. %u instructions removed\n", rem); 843 GLuint Start, End; /** Start/end instruction numbers * 954 GLuint end = ic; local [all...] |
/external/protobuf/gtest/include/gtest/internal/ |
gtest-param-util.h | 78 // BaseGenerator()->End(). 85 // Current() on an iterator equal to BaseGenerator()->End(). 149 virtual ParamIteratorInterface<T>* End() const = 0; 171 iterator end() const { return iterator(impl_->End()); } function in class:testing::internal::ParamGenerator 184 RangeGenerator(T begin, T end, IncrementT step) 185 : begin_(begin), end_(end), 186 step_(step), end_index_(CalculateEndIndex(begin, end, step)) {} 192 virtual ParamIteratorInterface<T>* End() const { 242 const T& end, [all...] |
/external/v8/src/ |
d8.h | 136 void End(int offset) { end_offset_ = offset; }
|
lithium-allocator.h | 36 // the beginning and the end of the instruction. Lifetime positions for 71 // Returns the lifetime position for the end of the instruction which 120 // Representation of the non-empty interval [start,end[. 123 UseInterval(LifetimePosition start, LifetimePosition end) 124 : start_(start), end_(end), next_(NULL) { 125 DCHECK(start.Value() < end.Value()); 129 LifetimePosition end() const { return end_; } function in class:v8::internal::UseInterval 261 LifetimePosition End() const { 263 return last_interval_->end(); 281 LifetimePosition end, [all...] |
/ndk/sources/third_party/googletest/googletest/include/gtest/internal/ |
gtest-param-util.h | 79 // BaseGenerator()->End(). 86 // Current() on an iterator equal to BaseGenerator()->End(). 150 virtual ParamIteratorInterface<T>* End() const = 0; 172 iterator end() const { return iterator(impl_->End()); } function in class:testing::internal::ParamGenerator 185 RangeGenerator(T begin, T end, IncrementT step) 186 : begin_(begin), end_(end), 187 step_(step), end_index_(CalculateEndIndex(begin, end, step)) {} 193 virtual ParamIteratorInterface<T>* End() const { 243 const T& end, [all...] |
/external/clang/include/clang/AST/ |
StmtOpenMP.h | 100 ArrayRef<OMPClause *>::const_iterator End; 103 while (Current != End && !Pred(*Current)) 109 filtered_clause_iterator() : Current(), End() {} 111 : Current(Arr.begin()), End(Arr.end()), Pred(Pred) { 128 bool operator!() { return Current == End; } 129 operator bool() { return Current != End; } 130 bool empty() const { return Current == End; } 148 friend linear_filter end(const linear_filter &range) { function in struct:clang::OMPExecutableDirective::linear_filter 149 return linear_filter(ArrayRef<OMPClause *>(range.End, range.End)) [all...] |
/external/clang/include/clang/StaticAnalyzer/Core/BugReporter/ |
PathDiagnostic.h | 209 /// Create a location for the end of the statement. 235 /// Create a location for the end of the compound statement. 245 /// Constructs a location for the end of the enclosing declaration body. 246 /// Defaults to the end of brace. 254 /// Create a location corresponding to the next valid ExplodedNode as end 310 PathDiagnosticLocation Start, End; 313 const PathDiagnosticLocation &end) 314 : Start(start), End(end) {} 317 const PathDiagnosticLocation &getEnd() const { return End; } 668 iterator end() { return LPairs.end(); } function in class:clang::ento::PathDiagnosticControlFlowPiece 677 const_iterator end() const { return LPairs.end(); } function in class:clang::ento::PathDiagnosticControlFlowPiece [all...] |
/external/clang/lib/AST/ |
ExprCXX.cpp | 278 SourceLocation End = DestroyedType.getLocation(); 280 End = TInfo->getTypeLoc().getLocalSourceRange().getEnd(); 281 return End; 294 UnresolvedSetIterator End) 303 Begin, End); 326 UnresolvedSetIterator End, 342 Results(nullptr), NumResults(End - Begin), 345 NumResults = End - Begin; 348 for (UnresolvedSetImpl::const_iterator I = Begin; I != End; ++I) { 393 UnresolvedSetIterator End) { [all...] |
/external/clang/lib/Basic/ |
VirtualFileSystem.cpp | 104 } // end anonymous namespace 157 } // end anonymous namespace 266 assert(CurrentFS != Overlays.overlays_end() && "incrementing past end"); 281 "incrementing past end"); 315 } // end anonymous namespace 372 iterator contents_end() { return Contents.end(); } 404 DirectoryEntry::iterator Current, End; 408 DirectoryEntry::iterator End, std::error_code &EC); 492 /// \brief Looks up the path <tt>[Start, End)</tt> in \p From, possibly 495 sys::path::const_iterator End, Entry *From) [all...] |
/external/clang/lib/Driver/ |
Driver.cpp | 118 InputArgList *Args = getOpts().ParseArgs(ArgStrings.begin(), ArgStrings.end(), 446 for (InputList::iterator it = Inputs.begin(), ie = Inputs.end(); it != ie;) { 462 ie = Inputs.end(); 619 FailingCommands.begin(), ie = FailingCommands.end(); it != ie; ++it) { 746 ie = TC.getProgramPaths().end(); it != ie; ++it) { 757 ie = TC.getFilePaths().end(); it != ie; ++it) { 789 for (MultilibSet::const_iterator I = Multilibs.begin(), E = Multilibs.end(); 798 for (MultilibSet::const_iterator I = Multilibs.begin(), E = Multilibs.end(); 837 for (Action::iterator it = A->begin(), ie = A->end(); it != ie;) { 857 ie = C.getActions().end(); it != ie; ++it [all...] |
/external/clang/lib/Format/ |
Format.cpp | 569 // Look for a suitable configuration starting from the end, so we can 611 std::sort(ForEachMacros.begin(), ForEachMacros.end()); 671 FourthTokenIsLess = (Tokens.end() - 4)[0]->is(tok::less); 673 auto First = Tokens.end() - 3; 686 Tokens.erase(Tokens.end() - 2); 695 Tokens.end() - Kinds.size(); 803 // template string, not the end. [all...] |
/external/compiler-rt/lib/asan/ |
asan_allocator.cc | 429 // Deal with the end of the region if size is not aligned to granularity. 660 uptr AsanChunkView::End() { return Beg() + UsedSize(); } 796 void GetAllocatorGlobalRange(uptr *begin, uptr *end) { 798 *end = *begin + sizeof(__asan::get_allocator());
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
toy.cpp | 100 // Comment until end of line. 109 // Check for end of file. Don't eat the EOF. 194 ExprAST *Start, *End, *Step, *Body; 197 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, 199 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} 239 } // end anonymous namespace 389 ExprAST *End = ParseExpression(); 390 if (End == 0) 410 return new ForExprAST(IdName, Start, End, Step, Body) [all...] |
/external/llvm/examples/Kaleidoscope/Chapter7/ |
toy.cpp | 105 // Comment until end of line. 114 // Check for end of file. Don't eat the EOF. 200 ExprAST *Start, *End, *Step, *Body; 203 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, 205 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} 259 } // end anonymous namespace 409 ExprAST *End = ParseExpression(); 410 if (End == 0) 430 return new ForExprAST(IdName, Start, End, Step, Body) [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
toy-jit.cpp | 104 // Comment until end of line. 112 // Check for end of file. Don't eat the EOF. 192 ExprAST *Start, *End, *Step, *Body; 194 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, 196 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} 384 ExprAST *End = ParseExpression(); 385 if (End == 0) return 0; 402 return new ForExprAST(IdName, Start, End, Step, Body); 431 // End of var list, exit loop [all...] |
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
toy-jit.cpp | 89 // Comment until end of line. 97 // Check for end of file. Don't eat the EOF. 177 ExprAST *Start, *End, *Step, *Body; 179 ForExprAST(const std::string &varname, ExprAST *start, ExprAST *end, 181 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} 369 ExprAST *End = ParseExpression(); 370 if (End == 0) return 0; 387 return new ForExprAST(IdName, Start, End, Step, Body); 416 // End of var list, exit loop [all...] |
/external/llvm/include/llvm/ADT/ |
DenseMap.h | 66 return empty() ? end() : iterator(getBuckets(), getBucketsEnd(), *this); 68 inline iterator end() { function in class:llvm::DenseMapBase 72 return empty() ? end() 75 inline const_iterator end() const { function in class:llvm::DenseMapBase 128 return end(); 134 return end(); 147 return end(); 154 return end(); 1010 pointer Ptr, End; 1012 DenseMapIterator() : Ptr(nullptr), End(nullptr) { [all...] |
/external/llvm/include/llvm/MC/ |
MCDwarf.h | 338 Values(V.begin(), V.end()) { 468 : Begin(nullptr), End(nullptr), Personality(nullptr), Lsda(nullptr), 473 MCSymbol *End; 495 } // end namespace llvm
|
/external/llvm/lib/CodeGen/ |
LiveDebugVariables.cpp | 99 } // end anonymous namespace 176 UserValue *End = L2; 177 while (End->next) 178 End->leader = L1, End = End->next; 179 End->leader = L1; 180 End->next = L1->next; 226 /// End points where VNI is no longer live are added to Kills. 231 /// @param Kills Append end points of VNI's live range to Kills [all...] |
TwoAddressInstructionPass.cpp | 166 } // end anonymous namespace 222 assert(LI.end() != LI.begin() && 227 if (I != LI.end() && I->start < MBBEndIdx) 231 KillMI = LIS->getInstructionFromIndex(I->end); 367 if (DI == DistanceMap.end()) 420 assert(I != LI.end() && "Reg must be live-in to use."); 421 return !I->end.isBlock() && SlotIndex::isSameInstr(I->end, useIdx); 525 if (SI == RegMap.end()) 748 if (DI != DistanceMap.end()) [all...] |
/external/llvm/lib/MC/ |
MCDwarf.cpp | 93 // This helper routine returns an expression of End - Start + IntVal . 97 const MCSymbol &End, 101 MCSymbolRefExpr::Create(&End, Variant, MCOS.getContext()); 130 ie = LineEntries.end(); 181 // Emit a DW_LNE_end_sequence for the end of the section. 182 // Use the section end label to compute the address delta and use INT64_MAX 271 // Create a symbol for the end of the section (to be set when we get there). 282 // Create a symbol for the end of the prologue (to be set when we get there). 286 // section to the end of the prologue. Not including the 4 bytes for the 325 // This is the end of the prologue, so set the value of the symbol at th [all...] |
/external/llvm/lib/Object/ |
COFFObjectFile.cpp | 133 auto End = reinterpret_cast<uintptr_t>(StringTable); 137 Ref.p = std::min(reinterpret_cast<uintptr_t>(Symb), End); 141 Ref.p = std::min(reinterpret_cast<uintptr_t>(Symb), End); [all...] |