HomeSort by relevance Sort by last modified time
    Searched refs:End (Results 176 - 200 of 251) sorted by null

1 2 3 4 5 6 78 91011

  /external/freetype/src/smooth/
ftgrays.c 727 goto End;
734 goto End;
776 goto End;
843 End:
    [all...]
  /external/v8/src/
lithium-allocator.h 64 // the beginning and the end of the instruction. Lifetime positions for
99 // Returns the lifetime position for the end of the instruction which
206 // Representation of the non-empty interval [start,end[.
209 UseInterval(LifetimePosition start, LifetimePosition end)
210 : start_(start), end_(end), next_(NULL) {
211 ASSERT(start.Value() < end.Value());
215 LifetimePosition end() const { return end_; } function in class:v8::internal::UseInterval
340 LifetimePosition End() const {
342 return last_interval_->end();
359 void EnsureInterval(LifetimePosition start, LifetimePosition end);
    [all...]
hydrogen.h 66 HControlInstruction* end() const { return end_; } function in class:v8::internal::HBasicBlock
    [all...]
  /external/chromium/chrome/browser/resources/
network_menu.js 298 //////// End NetworkMenuItem specifi code
  /external/clang/include/clang/Basic/
SourceManager.h 266 /// indicate the start and end of the expansion. In object-like macros,
268 /// will be the identifier and the end will be the ')'. Finally, in
269 /// macro-argument instantitions, the end will be 'SourceLocation()', an
296 /// create - Return a ExpansionInfo for an expansion. Start and End specify
302 SourceLocation Start, SourceLocation End) {
306 X.ExpansionLocEnd = End.getRawEncoding();
330 // We store an intentionally invalid source location for the end of the
376 } // end SrcMgr namespace.
    [all...]
  /external/clang/lib/AST/
DeclPrinter.cpp 138 Decl** End = Begin + NumDecls;
151 for ( ; Begin != End; ++Begin) {
878 Out << "@end";
894 E = Protocols.end(); I != E; ++I)
913 Out << "@end";
930 Out << "@end";
937 Out << "@end";
944 Out << "@end";
ASTContext.cpp 66 PEnd = Params->end();
111 PEnd = Params->end();
262 OM = OverriddenMethods.begin(), OMEnd = OverriddenMethods.end();
270 I = ObjCLayouts.begin(), E = ObjCLayouts.end(); I != E; )
276 I = ASTRecordLayouts.begin(), E = ASTRecordLayouts.end(); I != E; ) {
283 AEnd = DeclAttrs.end();
511 if (Pos != DeclAttrs.end()) {
522 if (Pos == InstantiatedFromStaticDataMember.end())
545 if (Pos == ClassScopeSpecializationPattern.end())
562 if (Pos == InstantiatedFromUsingDecl.end())
    [all...]
StmtPrinter.cpp 126 DeclStmt::decl_iterator Begin = S->decl_begin(), End = S->decl_end();
128 for ( ; Begin != End; ++Begin)
693 for (StringRef::iterator I = StrData.begin(), E = StrData.end();
    [all...]
  /external/harfbuzz/src/
harfbuzz-dump.c 210 Coverage->cf.cf2.RangeRecord[i].End, i);
219 DUMP_FGLYPH (ClassRangeRecord, End);
harfbuzz-gsub.c     [all...]
  /external/llvm/lib/CodeGen/
AggressiveAntiDepBreaker.cpp 280 for (SUnit::const_pred_iterator P = SU->Preds.begin(), PE = SU->Preds.end();
299 for (SUnit::const_pred_iterator P = SU->Preds.begin(), PE = SU->Preds.end();
722 MachineBasicBlock::iterator End,
779 for (MachineBasicBlock::iterator I = End, E = Begin;
858 PE = PathSU->Preds.end(); P != PE; ++P) {
867 PE = PathSU->Preds.end(); P != PE; ++P) {
    [all...]
RegAllocGreedy.cpp 148 void setStage(Iterator Begin, Iterator End, LiveRangeStage NewStage) {
150 for (;Begin != End; ++Begin) {
282 } // end anonymous namespace
489 /// defined by enqueue() decides which registers ultimately end up being split
794 for (ArrayRef<unsigned>::iterator I = Blocks.begin(), E = Blocks.end();
    [all...]
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 105 for (CallGraphSCC::iterator I = SCC.begin(), E = SCC.end(); I != E; ++I) {
191 // function, we could end up infinitely peeling the function argument.
267 return Low != Set.end() && IsPrefix(*Low, Indices);
285 if (Low != Safe.end()) {
298 std::set<ArgPromotion::IndicesVector>::iterator End = Safe.end();
299 while (Low != End && IsPrefix(ToMark, *Low)) {
348 for (BasicBlock::iterator I = EntryBlock->begin(), E = EntryBlock->end();
433 if (ToPromote.find(Operands) == ToPromote.end()) {
579 E = ArgIndices.end(); SI != E; ++SI)
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/video/epoc/
SDL_epocvideo.cpp 430 lock.End(); // Unlock bitmap heap
600 lock.End(); // Unlock bitmap heap
  /external/webkit/Source/WebCore/css/
CSSSelector.cpp 81 case End:
308 DEFINE_STATIC_LOCAL(AtomicString, end, ("end"));
380 nameToPseudoType->set(end.impl(), CSSSelector::PseudoEnd);
422 return slot == nameToPseudoType->end() ? PseudoUnknown : slot->second;
646 case CSSSelector::End:
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 476 BasicBlock *End = createBasicBlock("fpclassify_end", this->CurFn);
477 Builder.SetInsertPoint(End);
488 Builder.CreateCondBr(IsZero, End, NotZero);
496 Builder.CreateCondBr(IsNan, End, NotNan);
507 Builder.CreateCondBr(IsInf, End, NotInf);
520 Builder.CreateBr(End);
524 Builder.SetInsertPoint(End);
    [all...]
  /external/clang/lib/Serialization/
ASTReader.cpp 131 L.erase(std::remove_if(L.begin(), L.end(), EmptyStringRef()), L.end());
132 R.erase(std::remove_if(R.begin(), R.end(), EmptyBlock()), R.end());
259 std::sort(CmdLineLines.begin(), CmdLineLines.end());
260 std::sort(PCHLines.begin(), PCHLines.end());
265 std::set_difference(PCHLines.begin(), PCHLines.end(),
266 CmdLineLines.begin(), CmdLineLines.end(),
289 "Couldn't find the end of the macro name");
297 = std::lower_bound(CmdLineLines.begin(), CmdLineLines.end(),
    [all...]
ASTReaderStmt.cpp 433 SourceLocation End = ReadSourceLocation(Record, Idx);
436 E->setComponent(I, Node(Start, Record[Idx++], End));
440 E->setComponent(I, Node(Start, ReadDeclAs<FieldDecl>(Record, Idx), End));
447 End));
    [all...]
  /external/clang/include/clang/Lex/
Preprocessor.h 243 /// \brief Macros that we want to warn because they are not used at the end
284 /// from the end of the cache.
    [all...]
  /external/icu4c/tools/gensprep/
filterRFC3454.pl 165 # break if "End Table" is found
166 if( $line =~ /End\sTable/){
195 $end = atoi($endStr);
196 #print $start." ".$end."\n";
197 while($start <= $end){
635 print << "END";
672 END
  /external/llvm/include/llvm/Analysis/
ScalarEvolution.h 414 /// getBECount - Subtract the end and start values and divide by the step,
418 const SCEV *End,
606 SmallVector<const SCEV *, 4> NewOp(Operands.begin(), Operands.end());
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp 230 for (Function::iterator BB = Fn.begin(), E = Fn.end(); BB != E; ++BB) {
319 if (LDI != LiveInMap.end()) {
360 I = MF->begin(), E = MF->end(); I != E; ++I) {
363 II = MBB->begin(), IE = MBB->end(); II != IE; ++II) {
383 I = FuncInfo->RegFixups.begin(), E = FuncInfo->RegFixups.end();
407 BasicBlock::const_iterator End,
412 for (BasicBlock::const_iterator I = Begin; I != End && !SDB->HasTailCall; ++I)
646 // nodes by starting at the end of the list (the root of the
725 for (I = LLVMBB->begin(), E = --LLVMBB->end(); I != E; ++I)
834 I = RPOT.begin(), E = RPOT.end(); I != E; ++I)
    [all...]
  /external/pcre/
pcre_internal.h 226 start/end of string field names are. */
335 start of a subpattern to its alternatives and its end. The use of 2 bytes per
590 live at the top end of the options word, but that got almost full, so now they
    [all...]
  /external/chromium/chrome/browser/resources/net_internals/
logviewpainter.js 52 beginEntry.end &&
53 beginEntry.end.index == beginEntry.index + 1 &&
54 (!beginEntry.orig.params || !beginEntry.end.orig.params) &&
56 beginEntry.end.orig.wasPassivelyCaptured;
72 // Avoid printing the END for a BEGIN that was immediately before, unless
99 if (entry.end) {
100 dt = entry.end.orig.time - entry.orig.time;
352 // Don't prefix with '+' if we are going to collapse the END event.
432 // End of anonymous namespace.
  /external/llvm/lib/Target/MBlaze/
MBlazeISelLowering.cpp 281 MBB->end());
386 MBB->end());
462 MBB->end());
808 // Add argument registers to the end of the list so that they are
    [all...]

Completed in 669 milliseconds

1 2 3 4 5 6 78 91011