/external/clang/test/Analysis/ |
cxx-for-range-cfg.cpp | 11 T *End;
|
/external/bison/djgpp/ |
djunpack.bat | 3 Rem WARNING WARNING WARNING: This file needs to have DOS CRLF end-of-line
40 GoTo End
70 GoTo End
75 GoTo End
79 GoTo End
83 GoTo End
87 :End
|
/external/llvm/lib/Target/SystemZ/ |
SystemZTargetTransformInfo.cpp | 151 unsigned Start, End; 152 if (TII->isRxSBGMask(Imm.getZExtValue(), BitSize, Start, End))
|
/external/llvm/utils/count/ |
count.c | 15 char Buffer[4096], *End; 22 Count = strtol(argv[1], &End, 10); 23 if (*End != '\0' && End != argv[1]) {
|
/ndk/sources/host-tools/make-3.81/ |
configure.bat | 47 goto End
56 goto End
61 :End
|
/external/llvm/lib/Support/ |
StringExtras.cpp | 43 StringRef::size_type End = Source.find_first_of(Delimiters, Start); 45 return std::make_pair(Source.slice(Start, End), Source.substr(End));
|
/external/llvm/unittests/Support/ |
IteratorTest.cpp | 29 test_iterator Begin, End; 31 End = test_iterator(V.end()); 44 EXPECT_NE(I, End); 45 EXPECT_GT(End, I); 46 EXPECT_LT(I, End); 57 EXPECT_EQ(End, I); 70 test_iterator Begin, End; 72 End = test_iterator(V.end()); [all...] |
/art/compiler/dex/ |
pass.h | 73 * @brief End of the pass: called after the WalkBasicBlocks function. 75 virtual void End(PassDataHolder* data) const { 85 // Passes that do all their work in Start() or End() should not allow useless node iteration.
|
bb_optimizations.h | 137 void End(PassDataHolder* data) const { 192 void End(PassDataHolder* data) const { 223 void End(PassDataHolder* data) const { 258 void End(PassDataHolder* data) const OVERRIDE { 292 void End(PassDataHolder* data) const OVERRIDE { 413 void End(PassDataHolder* data) const {
|
post_opt_passes.h | 139 void End(PassDataHolder* data) const { 291 void End(PassDataHolder* data) const { 308 void End(PassDataHolder* data) const {
|
/art/runtime/gc/collector/ |
immune_region.h | 55 void SetEnd(mirror::Object* end) { 56 end_ = end; 63 mirror::Object* End() {
|
/external/clang/test/CodeGenCXX/ |
alloca-align.cpp | 4 int Start, End;
|
/external/llvm/include/llvm/DebugInfo/DWARF/ |
DWARFDebugLoc.h | 27 uint64_t End;
|
/external/llvm/include/llvm/MC/ |
MCSection.h | 39 mutable MCSymbol *End; 43 : Begin(Begin), End(nullptr), Variant(V), Kind(K) {} 70 } // end namespace llvm
|
/external/llvm/include/llvm/Support/ |
SMLoc.h | 49 SMLoc Start, End; 52 SMRange(SMLoc St, SMLoc En) : Start(St), End(En) { 53 assert(Start.isValid() == End.isValid() && 54 "Start and end should either both be valid or both be invalid!"); 60 } // end namespace llvm
|
/external/llvm/lib/CodeGen/ |
MachineLoopInfo.cpp | 66 MachineFunction::iterator End = BotMBB->getParent()->end(); 67 if (BotMBB != std::prev(End)) {
|
/external/llvm/lib/DebugInfo/DWARF/ |
DWARFDebugAbbrev.cpp | 73 PrevAbbrOffsetPos = AbbrDeclSets.end(); 103 const auto End = AbbrDeclSets.end(); 104 if (PrevAbbrOffsetPos != End && PrevAbbrOffsetPos->first == CUAbbrOffset) { 109 if (Pos != End) {
|
/external/llvm/lib/IR/ |
Use.cpp | 42 const Use *End = getImpliedUser(); 43 const UserRef *ref = reinterpret_cast<const UserRef *>(End); 45 : reinterpret_cast<User *>(const_cast<Use *>(End)); 127 } // End llvm namespace
|
User.cpp | 47 Use *End = Begin + N; 48 (void) new(End) Use::UserRef(const_cast<User*>(this), 1); 49 return Use::initTags(Begin, End); 59 Use *End = Start + Us; 60 User *Obj = reinterpret_cast<User*>(End); 63 Use::initTags(Start, End); 87 } // End llvm namespace
|
/external/llvm/lib/Target/Mips/ |
MipsCCState.cpp | 32 const char *const *End = LibCalls + array_lengthof(LibCalls); 38 for (const char *const *I = LibCalls; I < End - 1; ++I) 42 return std::binary_search(LibCalls, End, CallSym, Comp);
|
/external/mesa3d/src/gallium/drivers/r300/compiler/ |
radeon_variable.h | 40 int End;
|
/external/v8/test/cctest/compiler/ |
simplified-graph-builder.cc | 40 void SimplifiedGraphBuilder::End() { 41 Node* end = graph()->NewNode(common()->End(), return_); local 42 graph()->SetEnd(end);
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/ |
TreePatternLexer.cs | 40 public const int End = 2; 101 return End;
|
/external/clang/lib/Sema/ |
SemaFixItUtils.cpp | 61 const SourceLocation End = S.PP.getLocForEndOfToken(FullExpr->getSourceRange() 114 Hints.push_back(FixItHint::CreateInsertion(End, ")")); 148 Hints.push_back(FixItHint::CreateInsertion(End, ")"));
|
/external/llvm/include/llvm/ProfileData/ |
SampleProfReader.h | 128 : SampleProfileReader(std::move(B), C), Data(nullptr), End(nullptr) {} 156 /// \brief Return true if we've reached the end of file. 157 bool at_eof() const { return Data >= End; } 162 /// \brief Points to the end of the buffer. 163 const uint8_t *End; 166 } // End namespace sampleprof 168 } // End namespace llvm
|