Searched refs:End (Results 1 - 25 of 335) sorted by relevance

1234567891011>>

/macosx-10.10.1/ruby-106/ruby/ext/ripper/lib/ripper/
H A Dsexp.rb63 module_eval(<<-End, __FILE__, __LINE__ + 1)
67 End
69 module_eval(<<-End, __FILE__, __LINE__ + 1)
74 End
76 module_eval(<<-End, __FILE__, __LINE__ + 1)
80 End
85 module_eval(<<-End, __FILE__, __LINE__ + 1)
89 End
97 module_eval(<<-End, __FILE__, __LINE__ + 1)
102 End
[all...]
H A Dcore.rb37 module_eval(<<-End, __FILE__, __LINE__ + 1)
41 End
63 module_eval(<<-End, __FILE__, __LINE__ + 1)
67 End
/macosx-10.10.1/llvmCore-3425.0.34/lib/MC/
H A DMCModule.cpp16 uint64_t Begin, uint64_t End) {
17 assert(Begin < End && "Creating MCAtom with endpoints reversed?");
21 assert((!I.valid() || I.start() < End) && "Offset range already occupied!");
24 MCAtom *NewAtom = new MCAtom(Type, this, Begin, End);
26 OffsetMap.insert(Begin, End, NewAtom);
43 Atom->End = NewEnd;
15 createAtom(MCAtom::AtomType Type, uint64_t Begin, uint64_t End) argument
H A DMCAtom.cpp19 assert(Address < End+Size &&
21 if (Address > End)
22 Parent->remap(this, Begin, End+Size);
29 Parent->remap(this, Begin, End+1);
35 assert((SplitPt > Begin && SplitPt <= End) &&
42 uint64_t RightEnd = End;
77 assert((TruncPt >= Begin && TruncPt < End) &&
/macosx-10.10.1/llvmCore-3425.0.34/utils/count/
H A Dcount.c15 char Buffer[4096], *End; local
22 Count = strtol(argv[1], &End, 10);
23 if (*End != '\0' && End != argv[1]) {
/macosx-10.10.1/Security-57031.1.35/SecurityTests/clxutils/certcrl/testSubjects/X509tests/
H A DmakeCertScr8 foreach i (End*.crt)
/macosx-10.10.1/llvmCore-3425.0.34/lib/VMCore/
H A DUser.cpp49 Use *End = Begin + N; local
50 (void) new(End) Use::UserRef(const_cast<User*>(this), 1);
51 return Use::initTags(Begin, End);
61 Use *End = Start + Us; local
62 User *Obj = reinterpret_cast<User*>(End);
65 Use::initTags(Start, End);
81 } // End llvm namespace
H A DUse.cpp138 const Use *End = getImpliedUser(); local
139 const UserRef *ref = reinterpret_cast<const UserRef*>(End);
142 : (User*)End;
145 } // End llvm namespace
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Support/
H A DSMLoc.h47 SMLoc Start, End; member in class:llvm::SMRange
50 SMRange(SMLoc St, SMLoc En) : Start(St), End(En) {
51 assert(Start.isValid() == End.isValid() &&
/macosx-10.10.1/llvmCore-3425.0.34/lib/CodeGen/
H A DAllocationOrder.h27 const unsigned *End; member in class:llvm::AllocationOrder
55 while (Pos != End) {
H A DCodePlacementOpt.cpp55 MachineFunction::iterator End);
125 /// Splice - Move the sequence of instructions [Begin,End) to just before
133 MachineFunction::iterator End) {
134 assert(Begin != MF.begin() && End != MF.begin() && InsertPt != MF.begin() &&
137 MachineFunction::iterator OldEndPrior = prior(End);
139 MF.splice(InsertPt, Begin, End);
185 MachineFunction::iterator End = llvm::next(Begin); local
194 if (Prior->isSuccessor(End))
202 if (!Prior->isSuccessor(End))
218 Splice(MF, TopMBB, Begin, End);
130 Splice(MachineFunction &MF, MachineFunction::iterator InsertPt, MachineFunction::iterator Begin, MachineFunction::iterator End) argument
306 MachineFunction::iterator End = llvm::next(MachineFunction::iterator(BB)); local
[all...]
H A DAllocationOrder.cpp28 : Begin(0), End(0), Pos(0), RCI(RegClassInfo), OwnedBegin(false) {
58 End = P;
68 End = O.end();
H A DMachineLoopInfo.cpp65 MachineFunction::iterator End = BotMBB->getParent()->end(); local
66 if (BotMBB != prior(End)) {
/macosx-10.10.1/ruby-106/ruby/test/
H A Dtest_prettyprint.rb35 expected = <<'End'.chomp
41 End
47 expected = <<'End'.chomp
52 End
58 expected = <<'End'.chomp
62 End
68 expected = <<'End'.chomp
71 End
77 expected = <<'End'.chomp
79 End
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/ADT/
H A DSetVector.h53 SetVector(It Start, It End) { argument
54 insert(Start, End);
110 void insert(It Start, It End) {
111 for (; Start != End; ++Start)
176 SmallSetVector(It Start, It End) {
177 this->insert(Start, End);
181 } // End llvm namespace
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/MC/
H A DMCAtom.h39 uint64_t Begin, End; member in class:llvm::MCAtom
46 : Type(T), Parent(P), Begin(B), End(E) { }
H A DMCModule.h52 MCAtom *createAtom(MCAtom::AtomType Type, uint64_t Begin, uint64_t End);
/macosx-10.10.1/llvmCore-3425.0.34/lib/Archive/
H A DArchiveReader.cpp25 static inline unsigned readInteger(const char*&At, const char*End) {
30 if (At == End)
42 const char* End = At + size; local
43 while (At < End) {
44 unsigned offset = readInteger(At, End);
45 if (At == End) {
50 unsigned length = readInteger(At, End);
51 if (At == End) {
56 if (At + length > End) {
73 Archive::parseMemberHeader(const char*& At, const char* End, st argument
256 const char *End = mapfile->getBufferEnd(); local
370 const char *End = mapfile->getBufferEnd(); local
520 const char* End = mapfile->getBufferEnd(); local
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/AsmParser/
H A DLLLexer.h85 uint64_t atoull(const char *Buffer, const char *End);
86 uint64_t HexIntToVal(const char *Buffer, const char *End);
87 void HexToIntPair(const char *Buffer, const char *End, uint64_t Pair[2]);
88 void FP80HexToIntPair(const char *Buff, const char *End, uint64_t Pair[2]);
/macosx-10.10.1/vim-55/runtime/indent/
H A Dxf86conf.vim12 setlocal indentkeys=!^F,o,O,=End
32 if getline(v:lnum) =~? '^\s*End\(Sub\)\=Section\>'
/macosx-10.10.1/llvmCore-3425.0.34/lib/Support/
H A DStringExtras.cpp44 StringRef::size_type End = Source.find_first_of(Delimiters, Start); local
46 return std::make_pair(Source.slice(Start, End), Source.substr(End));
H A DFormattedStream.cpp27 for (const char *End = Ptr + Size; Ptr != End; ++Ptr) {
/macosx-10.10.1/vim-55/src/
H A DMake_ivc.mak21 # End Special Build Tool
330 # End Source File
334 # End Source File
338 # End Source File
342 # End Source File
346 # End Source File
350 # End Source File
354 # End Source File
358 # End Source File
362 # End Sourc
[all...]
/macosx-10.10.1/vim-55/src/VisVim/
H A DVisVim.mak129 # End Source File
133 # End Source File
146 # End Custom Build
156 # End Custom Build
160 # End Source File
167 # End Source File
175 # End Source File
182 # End Source File
189 # End Source File
196 # End Sourc
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/quicktimetcl/quicktimetcl/ExampleCode/
H A DFullScreen.tcl38 proc End {token w mtime} { procedure
50 $m callback $timeArr(-movieduration) End

Completed in 167 milliseconds

1234567891011>>