HomeSort by relevance Sort by last modified time
    Searched refs:find_next (Results 1 - 25 of 27) sorted by null

1 2

  /external/chromium/chrome/browser/ui/find_bar/
find_tab_helper.cc 59 bool find_next = (find_text_ == search_string || search_string.empty()) && local
62 if (!find_next)
78 find_next);
  /external/llvm/unittests/ADT/
BitVectorTest.cpp 67 for (unsigned i = Vec.find_first(); i != -1u; i = Vec.find_next(i)) {
97 for (unsigned i = Vec.find_first(); i != -1u; i = Vec.find_next(i)) {
SmallBitVectorTest.cpp 64 for (unsigned i = Vec.find_first(); i != -1u; i = Vec.find_next(i)) {
94 for (unsigned i = Vec.find_first(); i != -1u; i = Vec.find_next(i)) {
  /external/llvm/include/llvm/ADT/
SmallBitVector.h 220 /// find_next - Returns the index of the next set bit following the
222 int find_next(unsigned Prev) const { function in class:llvm::SmallBitVector
235 return getPointer()->find_next(Prev);
SparseBitVector.h 150 /// find_next - Returns the index of the next set bit starting from the
152 int find_next(unsigned Curr) const {
371 int NextSetBitNumber = Iter->find_next(BitNumber % ElementSize) ;
BitVector.h 157 /// find_next - Returns the index of the next set bit following the
159 int find_next(unsigned Prev) const { function in class:llvm::BitVector
  /external/llvm/lib/CodeGen/
SpillPlacement.cpp 284 for (int n = ActiveNodes->find_first(); n>=0; n = ActiveNodes->find_next(n)) {
362 for (int n = ActiveNodes->find_first(); n>=0; n = ActiveNodes->find_next(n))
MachineRegisterInfo.cpp 247 i = UsedPhysRegs.find_next(i))
RegisterScavenging.cpp 75 for (int I = PR.find_first(); I>0; I = PR.find_next(I))
VirtRegMap.h 506 Reg = UnusedRegs.find_next(Reg);
StackSlotColoring.cpp 338 Color = UsedColors.find_next(Color);
348 NextColor = AllColors.find_next(NextColor);
438 NextColor = AllColors.find_next(NextColor);
RegAllocGreedy.cpp 208 i = LiveBundles.find_next(i))
866 i = Cand.LiveBundles.find_next(i))
    [all...]
AggressiveAntiDepBreaker.cpp 138 r = CriticalPathSet.find_next(r))
584 DEBUG(for (int r = BV.find_first(); r != -1; r = BV.find_next(r))
    [all...]
MachineVerifier.cpp 372 Reg = regsReserved.find_next(Reg)) {
534 for (int I = PR.find_first(); I>0; I = PR.find_next(I)) {
    [all...]
LiveIntervalAnalysis.cpp     [all...]
TwoAddressInstructionPass.cpp     [all...]
  /external/chromium/chrome/browser/automation/
automation_provider.h 206 bool find_next,
automation_provider.cc 474 params.find_next,
484 bool find_next,
505 find_next);
    [all...]
testing_automation_provider.cc 3588 bool find_next; local
    [all...]
  /frameworks/base/core/java/android/webkit/
FindActionModeCallback.java 227 case com.android.internal.R.id.find_next:
  /external/chromium/chrome/common/
automation_messages.h 39 bool find_next; member in struct:AutomationMsg_Find_Params
automation_messages.cc 181 WriteParam(m, p.find_next);
193 ReadParam(m, iter, &p->find_next);
  /external/chromium/chrome/browser/ui/
browser.h     [all...]
browser.cc     [all...]
  /external/llvm/utils/TableGen/
CodeGenRegisters.cpp 492 for (int s = SC.find_first(); s >= 0; s = SC.find_next(s)) {

Completed in 7872 milliseconds

1 2