HomeSort by relevance Sort by last modified time
    Searched defs:End (Results 76 - 100 of 272) sorted by null

1 2 34 5 6 7 8 91011

  /art/runtime/gc/accounting/
atomic_stack.h 147 T* End() const {
165 std::sort(Begin(), End());
175 return std::binary_search(Begin(), End(), value);
179 return std::find(Begin(), End(), value) != End();
  /art/runtime/gc/allocator/
rosalloc.h 69 void* End(RosAlloc* rosalloc) EXCLUSIVE_LOCKS_REQUIRED(rosalloc->lock_) {
71 byte* end = fpr_base + ByteSize(rosalloc); variable
72 return end;
189 void* End() {
235 // Set the alloc_bit_map_ bits for slots that are past the end of the run.
244 void InspectAllSlots(void (*handler)(void* start, void* end, size_t used_bytes, void* callback_arg), void* arg);
394 kPageReleaseModeEnd, // Release empty pages at the end of the space.
397 // at the end of the space.
417 // the end of the memory region that's currently managed by this allocator.
421 // the end of the memory region that's ever managed by this allocator
    [all...]
  /external/bison/djgpp/
config.bat 4 Rem WARNING WARNING WARNING: This file needs to have DOS CRLF end-of-line
490 goto End
494 goto End
498 goto End
502 goto End
506 goto End
510 goto End
514 goto End
518 goto End
522 goto End
    [all...]
  /external/chromium_org/components/autofill/core/browser/
autofill_country.cc     [all...]
  /external/chromium_org/gpu/command_buffer/service/
gpu_tracer.cc 126 void GPUTrace::End() {
165 // TODO(dsinclair): It's possible for the timer to wrap during the start/end.
166 // We need to detect if the end is less then the start and correct for the
230 // End Trace for all active markers
235 markers_[n][i].trace_->End();
272 bool GPUTracer::End(GpuTracerSource source) {
283 trace->End();
  /external/chromium_org/mojo/system/
dispatcher.cc 482 void DispatcherTransport::End() {
  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTCue.h 130 End,
  /external/chromium_org/third_party/WebKit/Source/platform/animation/
TimingFunction.h 176 End
188 DEFINE_STATIC_REF(StepsTimingFunction, end, create(1, End));
194 case End:
195 return end;
198 return end;
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
R600KernelParameters.cpp 58 int End() { return OffsetInDW + SizeInDW; }
122 for (std::vector<Param>::iterator i = Params.begin(); i != Params.end(); i++) {
136 return Params.back().End();
223 for (std::vector<Param>::iterator I = Params.begin(); I != Params.end(); ++I) {
238 for (std::vector<Param>::iterator I = Params.begin(); I != Params.end(); ++I) {
312 assert(Fun->front().begin() != Fun->front().end());
458 } // End anonymous namespace
  /external/chromium_org/tools/telemetry/telemetry/page/actions/
action_runner.py 40 End() method in the returned object must be called once to mark
41 the end of the timeline.
587 def End(self):
  /external/clang/include/clang/AST/
ASTVector.h 35 T *Begin, *End;
38 void setEnd(T *P) { this->End = P; }
48 ASTVector() : Begin(nullptr), End(nullptr), Capacity(nullptr, false) {}
50 ASTVector(ASTVector &&O) : Begin(O.Begin), End(O.End), Capacity(O.Capacity) {
51 O.Begin = O.End = nullptr;
57 : Begin(nullptr), End(nullptr), Capacity(nullptr, false) {
65 swap(End, O.End);
73 destroy_range(Begin, End);
94 iterator end() { return End; } function in class:clang::ASTVector
95 const_iterator end() const { return End; } function in class:clang::ASTVector
    [all...]
StmtOpenMP.h 96 ArrayRef<OMPClause *>::const_iterator End;
99 while (Current != End && !Pred(*Current))
105 filtered_clause_iterator() : Current(), End() {}
107 : Current(Arr.begin()), End(Arr.end()), Pred(Pred) {
124 bool operator!() { return Current == End; }
125 operator bool() { return Current != End; }
164 Stmt **ChildStorage = reinterpret_cast<Stmt **>(getClauses().end());
185 /// \brief Build directive with the given start and end location.
243 /// \brief Build directive with the given start and end location
    [all...]
  /external/clang/include/clang/ASTMatchers/Dynamic/
Diagnostics.h 39 SourceLocation End;
  /external/clang/include/clang/Analysis/Support/
BumpVector.h 54 T *Begin, *End, *Capacity;
58 : Begin(nullptr), End(nullptr), Capacity(nullptr) {
65 destroy_range(Begin, End);
86 iterator end() { return End; } function in class:clang::BumpVector
87 const_iterator end() const { return End; } function in class:clang::BumpVector
90 reverse_iterator rbegin() { return reverse_iterator(end()); }
91 const_reverse_iterator rbegin() const{ return const_reverse_iterator(end()); }
95 bool empty() const { return Begin == End; }
    [all...]
  /external/clang/include/clang/Sema/
Designator.h 56 Expr *Start, *End;
100 return ArrayRangeInfo.End;
147 Expr *End,
153 D.ArrayRangeInfo.End = End;
186 /// AddDesignator - Add a designator to the end of this list.
208 } // end namespace clang
  /external/clang/lib/ARCMigrate/
TransAutoreleasePool.cpp 88 I = PoolVars.begin(), E = PoolVars.end(); I != E; ++I) {
97 scpE = info.Scopes.end(); scpI != scpE; ++scpI) {
100 clearRefsIn(*scope.End, info.Refs);
101 clearRefsIn(scope.Releases.begin(), scope.Releases.end(), info.Refs);
121 scpE = info.Scopes.end(); scpI != scpE; ++scpI) {
124 clearUnavailableDiags(*scope.End);
128 Pass.TA.removeStmt(*scope.End);
129 Stmt::child_iterator retI = scope.End;
143 Pass.TA.replaceStmt(*scope.End, "}");
152 scpE = info.Scopes.end(); scpI != scpE; ++scpI)
    [all...]
  /external/clang/lib/Frontend/
DiagnosticRenderer.cpp 97 I = FixItHints.begin(), E = FixItHints.end(); I != E; ++I) {
140 Ranges.end());
149 E = FixItHints.end();
318 // chain for the beginning and end of each range. If the caret location
331 E = Ranges.end();
333 SourceLocation Begin = I->getBegin(), End = I->getEnd();
337 FileID EndFileID = SM->getFileID(End);
339 // Find the common parent for the beginning and end of the range.
349 // Then, crawl the expansion chain for the end of the range.
351 while (End.isMacroID() && !BeginLocsMap.count(EndFileID))
    [all...]
InitPreprocessor.cpp 48 StringRef::size_type End = MacroBody.find_first_of("\n\r");
49 if (End != StringRef::npos)
52 MacroBody = MacroBody.substr(0, End);
53 // We handle macro bodies which end in a backslash by appending an extra
    [all...]
  /external/clang/lib/Lex/
HeaderMap.cpp 55 } // end namespace clang.
62 const char *S = Str.begin(), *End = Str.end();
64 for (; S != End; S++)
171 // that the "string" can not overrun the end of the file, because the buffer
237 DestPath.append(Prefix.begin(), Prefix.end());
238 DestPath.append(Suffix.begin(), Suffix.end());
LiteralSupport.cpp 53 SourceLocation End =
56 return CharSourceRange::getCharRange(Begin, End);
88 // We know that this character can't be off the end of the buffer, because
89 // that would have been \", which would not have been the end of string.
226 for (StringRef::iterator I = Input.begin(), E = Input.end(); I != E; ++I) {
508 : PP(PP), ThisTokBegin(TokSpelling.begin()), ThisTokEnd(TokSpelling.end()) {
510 // This routine assumes that the range begin/end matches the regex for integer
512 // the byte at "*end" is both valid and not part of the regex. Because of
976 std::remove_copy_if(Str.begin(), Str.end(), std::back_inserter(Buffer),
    [all...]
PreprocessingRecord.cpp 46 /// \brief Returns a pair of [Begin, End) iterators of preprocessed entities
126 /// \brief Returns a pair of [Begin, End) iterators of preprocessed entities
166 unsigned End = findEndLocalPreprocessedEntity(Range.getEnd());
167 return std::make_pair(Begin, End);
214 // The end locations of entities may be unordered (when a macro expansion
240 PreprocessedEntities.end(),
285 for (pp_iter RI = PreprocessedEntities.end(),
300 PreprocessedEntities.end(),
363 if (Pos == MacroDefinitions.end())
  /external/clang/lib/Tooling/
CompilationDatabase.cpp 44 Ie = CompilationDatabasePluginRegistry::end();
143 for (driver::ActionList::const_iterator I = A->begin(), E = A->end();
179 for (const std::string *I = Arr.begin(), *E = Arr.end(); I != E; ++I)
236 // prevents compilation, e.g. -E or something like -version, we may still end
242 Args.erase(std::remove_if(Args.begin(), Args.end(),
244 Args.end());
253 for (driver::JobList::const_iterator I = Jobs.begin(), E = Jobs.end(); I != E;
273 std::vector<const char *>::iterator End = std::remove_if(
274 Args.begin(), Args.end(), MatchesAny(CompileAnalyzer.Inputs));
277 End = std::remove_if(Args.begin(), End, MatchesAny(DiagClient.UnusedInputs))
    [all...]
Refactoring.cpp 130 std::pair<FileID, unsigned> End = Sources.getDecomposedLoc(SpellingEnd);
131 if (Start.first != End.first) return -1;
133 End.second += Lexer::MeasureTokenLength(SpellingEnd, Sources,
135 return End.second - Start.second;
148 E = Replaces.end();
165 E = Replaces.end();
191 for (Replacements::const_iterator I = Replaces.begin(), E = Replaces.end();
207 for (Replacements::iterator I = Replaces.begin(), E = Replaces.end(); I != E;
224 E = Replaces.end();
241 std::sort(Replaces.begin(), Replaces.end());
    [all...]
  /external/clang/tools/driver/
driver.cpp 79 /// '+': Add FOO as a new argument at the end of the command line.
90 /// at the end of the command line.
110 OS << "### Adding argument " << Str << " at end\n";
137 OS << "### Invalid X edit, end of command line!\n";
154 OS << "### Adding argument " << Edit << " at end\n";
179 const char *End = ::strchr(S, ' ');
180 if (!End)
181 End = S + strlen(S);
182 if (End != S)
183 ApplyOneQAOverride(*OS, Args, std::string(S, End), SavedStrings)
    [all...]
  /external/clang/tools/libclang/
CXLoadedDiagnostic.cpp 363 reportInvalidFile("Cannot read end of block");
387 reportInvalidFile(Twine("Premature end of diagnostics file within ").str() +
521 CXLoadedDiagnostic::Location *Start, *End;
523 End = TopDiags.Alloc.Allocate<CXLoadedDiagnostic::Location>();
527 if (readLocation(TopDiags, Record, RecStartIdx, *End))
531 CXSourceLocation endLoc = makeLocation(End);
664 } // end extern 'C'.

Completed in 474 milliseconds

1 2 34 5 6 7 8 91011