Searched refs:Last (Results 1 - 25 of 90) sorted by relevance

1234

/external/clang/include/clang/Basic/
H A DAddressSpaces.h38 Last, enumerator in enum:clang::LangAS::ID
39 Count = Last-Offset
/external/clang/test/SemaTemplate/
H A Dexample-dynarray.cpp16 dynarray() { Start = Last = End = 0; }
20 Last = End = Start + other.size();
44 Last = End = NewStart + other.size();
48 unsigned size() const { return Last - Start; }
54 --Last;
55 Last->~T();
72 iterator end() { return Last; }
73 const_iterator end() const { return Last; }
91 T* Start, *Last, *End; member in class:dynarray
96 if (Last
[all...]
/external/mesa3d/docs/
H A DMESA_release_buffers.spec19 Last Modified Date: 8 June 2000
/external/llvm/lib/ExecutionEngine/Interpreter/
H A DExternalFunctions.cpp357 char Last = *FB++ = *FmtStr++; local
359 while (Last != 'c' && Last != 'd' && Last != 'i' && Last != 'u' &&
360 Last != 'o' && Last != 'x' && Last != 'X' && Last != 'e' &&
361 Last !
[all...]
/external/llvm/lib/CodeGen/
H A DInterferenceCache.cpp135 BI->First = BI->Last = SlotIndex();
198 if (!BI->Last.isValid() || StopI > BI->Last)
199 BI->Last = StopI;
215 if (!BI->Last.isValid() || StopI > BI->Last)
216 BI->Last = StopI;
222 SlotIndex Limit = BI->Last.isValid() ? BI->Last : Start;
228 BI->Last
[all...]
H A DInterferenceCache.h35 SlotIndex Last; member in struct:llvm::InterferenceCache::BlockInterference
219 return Current->Last;
H A DMachineRegisterInfo.cpp129 // Prev pointers are circular, so Head->Prev == Last.
140 // Insert MO between Last and Head in the circular Prev chain.
141 MachineOperand *Last = Head->Contents.Reg.Prev; local
142 assert(Last && "Inconsistent use list");
143 assert(MO->getReg() == Last->getReg() && "Different regs on the same list!");
145 MO->Contents.Reg.Prev = Last;
156 Last->Contents.Reg.Next = MO;
/external/clang/lib/AST/
H A DTypeLoc.cpp122 TypeLoc Last; local
126 if (!Last)
127 Last = Cur;
128 return Last.getLocalSourceRange().getEnd();
136 Last = Cur;
144 if (!Last)
145 Last = Cur;
/external/clang/utils/TableGen/
H A DClangASTNodesEmitter.cpp80 Record *First = 0, *Last = 0; local
84 First = Last = Base;
109 Last = Result.second;
112 Last = R;
123 assert (Last && "Got a first node but not a last node for a range!");
129 << Last->getName() << ")\n\n";
132 return std::make_pair(First, Last);
143 << macroName(Root.getName()) << "_RANGE(Base, First, Last)\n";
148 << macroName(Root.getName()) << "_RANGE(Base, First, Last) "
149 << macroName(Root.getName()) << "_RANGE(Base, First, Last)\
[all...]
/external/webkit/Tools/Scripts/
H A Dupdate-webkit-dependency62 # Last-Modified times.
74 print "Checking Last-Modified date of $zipFile...\n";
76 my $result = system "curl -s -I $libsURL | grep Last-Modified > \"$tmpAbsDir/$file.headers\"";
79 print STDERR "Couldn't check Last-Modified date of new $zipFile.\n";
83 print STDERR "Unable to check Last-Modified date and no version of $file to fall back to.\n";
147 $str =~ /^Last-Modified: (.*)$/ or return;
/external/webrtc/src/system_wrappers/interface/
H A Dmap_wrapper.h59 MapItem* Last() const;
H A Dlist_wrapper.h71 ListItem* Last() const;
/external/webrtc/src/system_wrappers/source/
H A Dlist_stl.h53 ListItem* Last() const;
H A Dmap_no_stl.h53 MapNoStlItem* Last() const;
H A Dlist_no_stl.h57 ListNoStlItem* Last() const;
H A Dlist_unittest.cc56 ListItem* Last() const { function in class:ListWrapperSimple
57 return list_.Last();
212 return Erase(list_.Last());
356 for (ListItem* item = ascending_list->Last(); item != NULL;
383 ascending_list->Last()));
409 ListItem* item = descending_list->Last();
455 ListItem* item = ascending_list->Last();
H A Dmap.cc84 MapItem* MapWrapper::Last() const function in class:webrtc::MapWrapper
H A Dmap_no_stl.cc122 MapNoStlItem* MapNoStl::Last() const function in class:webrtc::MapNoStl
/external/llvm/lib/Analysis/
H A DScalarEvolutionAliasAnalysis.cpp97 const SCEV *Last = A->getOperand(A->getNumOperands()-1); local
98 if (Last->getType()->isPointerTy())
99 return GetBaseValue(Last);
/external/webrtc/src/system_wrappers/test/list/
H A Dlist.cc107 // Test Last
108 ListItem* last_item = test_list.Last();
135 FailTest(test_list.Insert(test_list.Last(),insert_item_last) != 0);
160 FailTest(test_list.Last() != NULL);
/external/chromium/testing/gtest/samples/
H A Dsample3-inl.h110 QueueNode<E>* Last() { return last_; } function in class:Queue
111 const QueueNode<E>* Last() const { return last_; } function in class:Queue
/external/gtest/samples/
H A Dsample3-inl.h110 QueueNode<E>* Last() { return last_; } function in class:Queue
111 const QueueNode<E>* Last() const { return last_; } function in class:Queue
/external/protobuf/gtest/samples/
H A Dsample3-inl.h110 QueueNode<E> * Last() { return last_; } function in class:Queue
111 const QueueNode<E> * Last() const { return last_; } function in class:Queue
/external/clang/test/SemaCXX/
H A Denum-scoped.cpp180 Enum() : m_e(E::Last) {}
184 enum eCOLORS { Last }; enumerator in enum:E1::E2::Redeclare5::PR12106::eCOLORS
/external/zlib/src/watcom/
H A Dwatcom_l.mak3 # Last updated: 28-Dec-2005

Completed in 1636 milliseconds

1234