Searched refs:Start (Results 1 - 25 of 1024) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DIRuleReturnScope.cs43 object Start property in interface:Antlr.Runtime.IRuleReturnScope
H A DIRuleReturnScope`1.cs44 new TLabel Start property in interface:Antlr.Runtime.IRuleReturnScope
H A DParserRuleReturnScope.cs64 public TToken Start property in class:Antlr.Runtime.ParserRuleReturnScope
90 object IRuleReturnScope.Start
94 return Start;
/external/valgrind/helgrind/tests/
H A Dpth_spinlock.stderr.exp0 Start of test.
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DRuleReturnScope.cs42 TLabel Start { property in interface:Antlr.Runtime.IRuleReturnScope
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DTreeRuleReturnScope`1.cs47 public TTree Start property in class:Antlr.Runtime.Tree.TreeRuleReturnScope
60 object IRuleReturnScope.Start
64 return Start;
/external/llvm/lib/CodeGen/
H A DSafeStackLayout.cpp27 OS << " " << i << ": [" << Regions[i].Start << ", " << Regions[i].End
52 unsigned Start = AdjustStackOffset(LastRegionEnd, Obj.Size, Obj.Alignment); local
53 unsigned End = Start + Obj.Size;
54 Regions.emplace_back(Start, End, Obj.Range);
62 unsigned Start = AdjustStackOffset(0, Obj.Size, Obj.Alignment); local
63 unsigned End = Start + Obj.Size;
64 DEBUG(dbgs() << " First candidate: " << Start << " .. " << End << "\n");
66 DEBUG(dbgs() << " Examining region: " << R.Start << " .. " << R.End
68 assert(End >= R.Start);
69 if (Start >
92 << Start << "\\n"); local
[all...]
H A DSafeStackLayout.h23 unsigned Start; member in struct:llvm::safestack::StackLayout::StackRegion
26 StackRegion(unsigned Start, unsigned End, argument
28 : Start(Start), End(End), Range(Range) {}
30 /// The list of current stack regions, sorted by StackRegion::Start.
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/
H A DTemplateSyntaxTree.java19 import com.google.clearsilver.jsilver.syntax.node.Start;
28 private final Start root;
30 TemplateSyntaxTree(Start root) {
34 public Start getRoot() {
/external/swiftshader/third_party/LLVM/runtime/libprofile/
H A DProfiling.h33 void write_profiling_data(enum ProfilingType PT, unsigned *Start,
/external/clang/lib/Analysis/
H A DFormatStringParsing.h33 const char *Start, const char *&Beg,
38 const char *Start, const char *&Beg, const char *E,
42 FormatSpecifier &CS, const char *Start,
58 const char *Start; member in class:clang::analyze_format_string::SpecifierResult
62 : Start(nullptr), Stop(stop) {}
65 : FS(fs), Start(start), Stop(false) {}
67 const char *getStart() const { return Start; }
69 bool hasValue() const { return Start != nullptr; }
/external/valgrind/drd/tests/
H A Dpth_spinlock.stderr.exp2 Start of test.
H A Dunit_bitmap.stderr.exp0 Start of DRD BM unit test.
/external/compiler-rt/lib/esan/
H A Desan_shadow.h93 uptr Start; member in struct:__esan::ApplicationRegion
140 static inline bool getAppRegion(u32 i, uptr *Start, uptr *End) { argument
143 *Start = AppRegions[i].Start;
151 if (Mem >= AppRegions[i].Start && Mem < AppRegions[i].End)
162 static inline bool getShadowRegion(u32 i, uptr *Start, uptr *End) { argument
176 *Start = appToShadow(AppRegions[AppIdx].Start);
183 *Start = Min(*Start, appToShado
[all...]
H A Desan_linux.cpp42 static bool liesWithinSingleAppRegion(uptr Start, SIZE_T Size) { argument
45 if (Start >= AppStart && Start + Size - 1 <= AppEnd) {
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DTreeRuleReturnScope.cs45 public TTree Start { property in class:Antlr.Runtime.Tree.TreeRuleReturnScope
/external/llvm/include/llvm/Support/
H A DSMLoc.h50 SMLoc Start, End; member in class:llvm::SMRange
53 SMRange(SMLoc St, SMLoc En) : Start(St), End(En) {
54 assert(Start.isValid() == End.isValid() &&
55 "Start and end should either both be valid or both be invalid!");
58 bool isValid() const { return Start.isValid(); }
/external/pdfium/xfa/fwl/
H A Difwl_adaptertimermgr.h14 virtual void Start(CFWL_Timer* pTimer,
/external/regex-re2/util/
H A Dthread.h14 void Start();
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DSMLoc.h51 SMLoc Start, End; member in class:llvm::SMRange
55 SMRange(SMLoc St, SMLoc En) : Start(St), End(En) {
56 assert(Start.isValid() == End.isValid() &&
57 "Start and end should either both be valid or both be invalid!");
60 bool isValid() const { return Start.isValid(); }
/external/llvm/lib/IR/
H A DUse.cpp57 Use *Use::initTags(Use *const Start, Use *Stop) { argument
60 if (Start == Stop--)
61 return Start;
71 while (Start != Stop) {
84 return Start;
87 void Use::zap(Use *Start, const Use *Stop, bool del) { argument
88 while (Start != Stop)
91 ::operator delete(Start);
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DUse.cpp88 Use *Use::initTags(Use * const Start, Use *Stop) { argument
91 if (Start == Stop--)
92 return Start;
105 while (Start != Stop) {
118 return Start;
125 void Use::zap(Use *Start, const Use *Stop, bool del) { argument
126 while (Start != Stop)
129 ::operator delete(Start);
H A DUser.cpp58 Use *Start = static_cast<Use*>(Storage); local
59 Use *End = Start + Us;
61 Obj->OperandList = Start;
63 Use::initTags(Start, End);
72 User *Start = static_cast<User*>(Usr); local
73 Use *Storage = static_cast<Use*>(Usr) - Start->NumOperands;
/external/webrtc/webrtc/base/
H A Dplatform_thread_unittest.cc27 thread.Start();
42 thread.Start();
/external/swiftshader/third_party/LLVM/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)
112 if (set_.insert(*Start))
113 vector_.push_back(*Start);
170 SmallSetVector(It Start, It End) {
171 this->insert(Start, End);

Completed in 3865 milliseconds

1234567891011>>