HomeSort by relevance Sort by last modified time
    Searched refs:First (Results 26 - 50 of 152) sorted by null

12 3 4 5 6 7

  /external/webrtc/src/system_wrappers/test/map/
map.cc 41 MapItem* map_item = map.First();
80 // Test First
81 MapItem* first_item = test_map.First();
  /external/clang/lib/Lex/
PreprocessingRecord.cpp 60 return std::make_pair(iterator(this, Local.first),
67 if (Loaded.first == Loaded.second)
68 return std::make_pair(iterator(this, Local.first),
74 if (Local.first == Local.second)
75 return std::make_pair(iterator(this, int(Loaded.first)-TotalLoaded),
79 return std::make_pair(iterator(this, int(Loaded.first)-TotalLoaded),
135 First = PreprocessedEntities.begin();
141 // whether we get the first macro expansion or its containing macro.
144 I = First;
148 First = I
    [all...]
  /external/valgrind/main/exp-ptrcheck/tests/
arith.stderr.exp 16 First arg derived from address 0x........ of 40-byte block alloc'd
41 First arg not a pointer
62 First arg not a pointer
mm.stderr.exp 17 First byte is not within a known block
58 First byte is not within a known block
suppgen.stderr.exp 44 First byte (0x........) is 3 bytes within a 6-byte block alloc'd
  /external/webrtc/src/system_wrappers/source/
list_no_stl.cc 63 while (Erase(First()) == 0)
121 ListItem* ListWrapper::First() const
list_stl.cc 56 while (Erase(First()) == 0)
119 ListItem* ListWrapper::First() const
  /frameworks/base/media/libdrm/mobile1/
Android.mk 4 # First project
  /external/webkit/LayoutTests/fast/events/touch/script-tests/
basic-multi-touch-events.js 94 debug("First touchpoint moved");
98 debug("First touchpoint is released");
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
metafunctions.cpp 98 template<int First, int ...Rest>
99 struct sum<First, Rest...> {
100 static const int value = First + sum<Rest...>::value;
  /external/llvm/include/llvm/ADT/
ilist.h 117 ilist_iterator<NodeTy> /*first*/,
307 /// of the first node in the list always points to the last node in the list,
317 // back to the first node in the list (to preserve assertions about going off
470 // [first, last) into position.
472 void transfer(iterator position, iplist &L2, iterator first, iterator last) {
473 assert(first != last && "Should be checked by callers");
476 // Note: we have to be careful about the case when we move the first node
483 // Remove [first, last) from its old position.
484 NodeTy *First = &*first, *Prev = this->getPrev(First)
    [all...]
  /external/v8/test/mjsunit/
string-indexof-1.js 63 assertEquals(2, twoByteString.indexOf("\u03a3"), "First Sigma");
94 assertEquals(510, long.indexOf("AJABACA"), "Long AJABACA, First J");
98 assertEquals(511, long.indexOf(pattern), "Long JABACABA..., First J");
  /external/opencv/otherlibs/highgui/
loadsave.cpp 78 // return the first folder from the path
81 const char* First( int& len ) const;
84 // see also note to First() method
154 const char* CvFilePath::First( int& len ) const
191 const char* folder = First( folder_len );
  /external/clang/test/SemaTemplate/
issue150.cpp 55 template<typename First, typename Z,
  /external/llvm/lib/CodeGen/
PeepholeOptimizer.cpp 417 bool First = true;
438 MII = First ? I->begin() : llvm::next(PMII);
446 MII = First ? I->begin() : llvm::next(PMII);
459 First = false;
  /external/llvm/lib/Support/
Triple.cpp 420 for (size_t First = 0, Last = 0; Last != StringRef::npos; First = Last + 1) {
421 Last = Str.find('-', First);
422 Components.push_back(Str.slice(First, Last));
425 // If the first component corresponds to a known architecture, preferentially
554 return StringRef(Data).split('-').first; // Isolate first component
558 StringRef Tmp = StringRef(Data).split('-').second; // Strip first component
559 return Tmp.split('-').first; // Isolate second component
563 StringRef Tmp = StringRef(Data).split('-').second; // Strip first componen
    [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/lib/gcc/i686-unknown-linux-gnu/4.2.1/include/xorg/
xf86Privstr.h 203 DisplayModePtr First;
  /external/chromium/sdch/open-vcdiff/packages/rpm/
rpm.spec 34 - First draft
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 251 First(F), Last(L), SValue(SV), HeaderBB(H), Emitted(E) {}
252 APInt First;
275 First(F), Range(R), SValue(SV), Reg(Rg), RegVT(RgVT), Emitted(E),
277 APInt First;
422 void UpdateSplitBlock(MachineBasicBlock *First, MachineBasicBlock *Last);
  /external/clang/include/clang/AST/
DeclTemplate.h 99 /// The first template parameter list in a declaration will have depth 0,
301 /// first instantiated.
323 /// \brief Retrieve the first point of instantiation of this function
332 /// \brief Set the (first) point of instantiation of this function template
361 // The point at which this member was first instantiated.
389 /// \brief Retrieve the first point of instantiation of this member.
396 /// \brief Set the first point of instantiation.
608 /// \brief Retrieve the first declaration of this template, or itself
609 /// if this the first one.
614 /// \brief Retrieve the first declaration of this template, or itsel
    [all...]
  /external/clang/tools/driver/
cc1as_main.cpp 164 bool First = true;
166 ie = Args->filtered_end(); it != ie; ++it, First=false) {
168 if (First)
  /external/clang/lib/AST/
NestedNameSpecifier.cpp 349 NestedNameSpecifierLoc First = *this;
350 while (NestedNameSpecifierLoc Prefix = First.getPrefix())
351 First = Prefix;
353 return SourceRange(First.getLocalSourceRange().getBegin(),
  /external/clang/lib/Sema/
SemaStmt.cpp 44 // Same thing in for stmt first clause (when expr) and third clause.
422 return LHS.first < RHS;
426 return LHS.first < RHS.first;
430 return LHS < RHS.first;
439 if (lhs.first < rhs.first)
442 if (lhs.first == rhs.first &&
454 return lhs.first < rhs.first
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
CStringChecker.cpp 160 const Expr *First,
164 const Stmt *First,
336 // Check that the first buffer is non-null.
355 // Check that the first buffer is sufficiently long.
393 const Expr *First,
396 // buffer, see if the end of the first is greater than the start of the second
406 SVal firstVal = state->getSVal(First);
424 emitOverlapBug(C, stateTrue, First, Second);
432 // Which value comes first?
443 // If we don't know which one comes first, we can't perform this test
    [all...]
  /cts/tests/core/
ctscore.mk 15 # First we build an apk without the core-tests resource

Completed in 987 milliseconds

12 3 4 5 6 7