Searched defs:Begin (Results 1 - 25 of 130) sorted by relevance

123456

/external/clang/test/CodeGenCXX/
H A DPR24289.cpp6 const T *Begin; member in struct:std::initializer_list
10 : Begin(B), Size(S) {}
/external/llvm/unittests/Support/
H A DIteratorTest.cpp29 test_iterator Begin, End; local
30 Begin = V.begin();
33 test_iterator I = Begin;
37 EXPECT_EQ(I, Begin + i);
38 EXPECT_EQ(I, std::next(Begin, i));
39 test_iterator J = Begin;
42 EXPECT_EQ(*V[i], Begin[i]);
47 EXPECT_GE(I, Begin);
48 EXPECT_LE(Begin, I);
50 EXPECT_EQ(i, I - Begin);
70 test_iterator Begin, End; local
[all...]
/external/llvm/lib/CodeGen/
H A DMachineLoopInfo.cpp52 MachineFunction::iterator Begin = TopMBB->getParent()->begin(); local
53 if (TopMBB != Begin) {
57 if (TopMBB == Begin) break;
H A DSlotIndexes.cpp147 MachineBasicBlock::iterator Begin,
153 while (Begin != MBB->begin() && !hasIndex(Begin))
154 --Begin;
158 bool includeStart = (Begin == MBB->begin());
163 startIdx = getInstructionIndex(Begin);
179 while (ListI != ListB || MBBI != Begin || (includeStart && !pastStart)) {
186 bool MBBIAtBegin = MBBI == Begin && (!includeStart || pastStart);
190 if (MBBI != Begin)
195 if (MBBI != Begin)
146 repairIndexesInRange(MachineBasicBlock *MBB, MachineBasicBlock::iterator Begin, MachineBasicBlock::iterator End) argument
[all...]
/external/sfntly/cpp/src/sfntly/data/
H A Dgrowable_memory_byte_array.cc78 byte_t* GrowableMemoryByteArray::Begin() { function in class:sfntly::GrowableMemoryByteArray
H A Dmemory_byte_array.cc88 byte_t* MemoryByteArray::Begin() { function in class:sfntly::MemoryByteArray
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreePatternLexer.cs39 public const int Begin = 1; field in class:Antlr.Runtime.Tree.TreePatternLexer
96 return Begin;
/external/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugLoc.h25 uint64_t Begin; member in struct:llvm::DWARFDebugLoc::Entry
/external/llvm/include/llvm/MC/
H A DMCSectionCOFF.h47 MCSymbol *Begin)
48 : MCSection(SV_COFF, K, Begin), SectionName(Section),
45 MCSectionCOFF(StringRef Section, unsigned Characteristics, MCSymbol *COMDATSymbol, int Selection, SectionKind K, MCSymbol *Begin) argument
H A DMCWinEH.h34 const MCSymbol *Begin; member in struct:llvm::WinEH::FrameInfo
49 : Begin(nullptr), End(nullptr), ExceptionHandler(nullptr),
54 : Begin(BeginFuncEHLabel), End(nullptr), ExceptionHandler(nullptr),
60 : Begin(BeginFuncEHLabel), End(nullptr), ExceptionHandler(nullptr),
H A DMCSectionELF.h57 MCSymbol *Begin, const MCSectionELF *Associated)
58 : MCSection(SV_ELF, K, Begin), SectionName(Section), Type(type),
55 MCSectionELF(StringRef Section, unsigned type, unsigned flags, SectionKind K, unsigned entrySize, const MCSymbolELF *group, unsigned UniqueID, MCSymbol *Begin, const MCSectionELF *Associated) argument
/external/v8/src/compiler/
H A Dpipeline-statistics.cc13 void PipelineStatistics::CommonStats::Begin( function in class:v8::internal::compiler::PipelineStatistics::CommonStats
59 total_stats_.Begin(this);
75 phase_kind_stats_.Begin(this);
90 phase_stats_.Begin(this);
/external/clang/unittests/AST/
H A DCommentLexer.cpp65 SourceLocation Begin = SourceMgr.getLocForStartOfFile(File); local
67 Lexer L(Allocator, Diags, Traits, Begin, Source, Source + strlen(Source));
/external/libvpx/libvpx/test/
H A Divf_video_source.h54 virtual void Begin() { function in class:libvpx_test::IVFVideoSource
H A Dwebm_video_source.h48 virtual void Begin() { function in class:libvpx_test::WebMVideoSource
H A Dy4m_video_source.h61 virtual void Begin() { function in class:libvpx_test::Y4mVideoSource
H A Dyuv_video_source.h52 virtual void Begin() { function in class:libvpx_test::YUVVideoSource
/external/llvm/lib/IR/
H A DUser.cpp57 Use *Begin = static_cast<Use*>(::operator new(size)); local
58 Use *End = Begin + N;
60 setOperandList(Use::initTags(Begin, End));
/external/llvm/lib/MC/
H A DMCSection.cpp22 MCSection::MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin) argument
23 : Begin(Begin), BundleGroupBeforeFirstInst(false), HasInstructions(false),
H A DStringTableBuilder.cpp33 static void multikey_qsort(StringPair **Begin, StringPair **End, int Pos) { argument
35 if (End - Begin <= 1)
38 // Partition items. Items in [Begin, P) are greater than the pivot,
40 int Pivot = charTailAt(*Begin, Pos);
41 StringPair **P = Begin;
43 for (StringPair **R = Begin + 1; R < Q;) {
53 multikey_qsort(Begin, P, Pos);
57 Begin = P;
H A DMCSectionMachO.cpp74 MCSymbol *Begin)
75 : MCSection(SV_MachO, K, Begin), TypeAndAttributes(TAA),
72 MCSectionMachO(StringRef Segment, StringRef Section, unsigned TAA, unsigned reserved2, SectionKind K, MCSymbol *Begin) argument
/external/autotest/client/cros/cellular/pseudomodem/
H A Dclient.py36 def Begin(self): member in class:PseudoModemClient
282 client.Begin()
/external/clang/lib/Sema/
H A DSemaFixItUtils.cpp60 const SourceLocation Begin = FullExpr->getSourceRange().getBegin(); local
99 S, Begin, VK_LValue);
110 CharSourceRange::getTokenRange(Begin, Begin)));
113 Hints.push_back(FixItHint::CreateInsertion(Begin, "*("));
116 Hints.push_back(FixItHint::CreateInsertion(Begin, "*"));
137 S, Begin, VK_RValue);
144 CharSourceRange::getTokenRange(Begin, Begin)));
147 Hints.push_back(FixItHint::CreateInsertion(Begin, "
[all...]
/external/libchrome/base/trace_event/
H A Dtrace_event_synthetic_delay.cc77 void TraceEventSyntheticDelay::Begin() { function in class:base::trace_event::TraceEventSyntheticDelay
96 // See note in Begin().
110 // See note in Begin().
/external/llvm/include/llvm/ADT/
H A DStringExtras.h169 inline std::string join_impl(IteratorT Begin, IteratorT End, argument
172 if (Begin == End)
175 S += (*Begin);
176 while (++Begin != End) {
178 S += (*Begin);
184 inline std::string join_impl(IteratorT Begin, IteratorT End, argument
187 if (Begin == End)
190 size_t Len = (std::distance(Begin, End) - 1) * Separator.size();
191 for (IteratorT I = Begin; I != End; ++I)
192 Len += (*Begin)
205 join(IteratorT Begin, IteratorT End, StringRef Separator) argument
[all...]

Completed in 5684 milliseconds

123456