HomeSort by relevance Sort by last modified time
    Searched defs:It (Results 1 - 25 of 68) sorted by null

1 2 3

  /external/chromium_org/v8/test/mjsunit/compiler/
load-elimination-osr.js 32 function It(x, y) { }
35 var o = new It();
51 var o = new It();
  /external/libcxx/test/iterators/iterator.primitives/iterator.traits/
const_pointer.pass.cpp 29 typedef std::iterator_traits<const A*> It;
30 static_assert((std::is_same<It::difference_type, std::ptrdiff_t>::value), "");
31 static_assert((std::is_same<It::value_type, A>::value), "");
32 static_assert((std::is_same<It::pointer, const A*>::value), "");
33 static_assert((std::is_same<It::reference, const A&>::value), "");
34 static_assert((std::is_same<It::iterator_category, std::random_access_iterator_tag>::value), "");
empty.pass.cpp 25 typedef std::iterator_traits<not_an_iterator> It;
pointer.pass.cpp 29 typedef std::iterator_traits<A*> It;
30 static_assert((std::is_same<It::difference_type, std::ptrdiff_t>::value), "");
31 static_assert((std::is_same<It::value_type, A>::value), "");
32 static_assert((std::is_same<It::pointer, A*>::value), "");
33 static_assert((std::is_same<It::reference, A&>::value), "");
34 static_assert((std::is_same<It::iterator_category, std::random_access_iterator_tag>::value), "");
iterator.pass.cpp 38 typedef std::iterator_traits<test_iterator> It;
39 static_assert((std::is_same<It::difference_type, int>::value), "");
40 static_assert((std::is_same<It::value_type, A>::value), "");
41 static_assert((std::is_same<It::pointer, A*>::value), "");
42 static_assert((std::is_same<It::iterator_category, std::forward_iterator_tag>::value), "");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/iterator.primitives/iterator.traits/
const_pointer.pass.cpp 29 typedef std::iterator_traits<const A*> It;
30 static_assert((std::is_same<It::difference_type, std::ptrdiff_t>::value), "");
31 static_assert((std::is_same<It::value_type, A>::value), "");
32 static_assert((std::is_same<It::pointer, const A*>::value), "");
33 static_assert((std::is_same<It::reference, const A&>::value), "");
34 static_assert((std::is_same<It::iterator_category, std::random_access_iterator_tag>::value), "");
empty.pass.cpp 25 typedef std::iterator_traits<not_an_iterator> It;
pointer.pass.cpp 29 typedef std::iterator_traits<A*> It;
30 static_assert((std::is_same<It::difference_type, std::ptrdiff_t>::value), "");
31 static_assert((std::is_same<It::value_type, A>::value), "");
32 static_assert((std::is_same<It::pointer, A*>::value), "");
33 static_assert((std::is_same<It::reference, A&>::value), "");
34 static_assert((std::is_same<It::iterator_category, std::random_access_iterator_tag>::value), "");
iterator.pass.cpp 38 typedef std::iterator_traits<test_iterator> It;
39 static_assert((std::is_same<It::difference_type, int>::value), "");
40 static_assert((std::is_same<It::value_type, A>::value), "");
41 static_assert((std::is_same<It::pointer, A*>::value), "");
42 static_assert((std::is_same<It::iterator_category, std::forward_iterator_tag>::value), "");
  /external/libcxx/test/iterators/iterator.primitives/iterator.basic/
iterator.pass.cpp 32 typedef std::iterator<std::forward_iterator_tag, T> It;
33 static_assert((std::is_same<typename It::value_type, T>::value), "");
34 static_assert((std::is_same<typename It::difference_type, std::ptrdiff_t>::value), "");
35 static_assert((std::is_same<typename It::pointer, T*>::value), "");
36 static_assert((std::is_same<typename It::reference, T&>::value), "");
37 static_assert((std::is_same<typename It::iterator_category, std::forward_iterator_tag>::value), "");
44 typedef std::iterator<std::bidirectional_iterator_tag, T, short> It;
45 static_assert((std::is_same<typename It::value_type, T>::value), "");
46 static_assert((std::is_same<typename It::difference_type, short>::value), "");
47 static_assert((std::is_same<typename It::pointer, T*>::value), "")
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/iterators/iterator.primitives/iterator.basic/
iterator.pass.cpp 32 typedef std::iterator<std::forward_iterator_tag, T> It;
33 static_assert((std::is_same<typename It::value_type, T>::value), "");
34 static_assert((std::is_same<typename It::difference_type, std::ptrdiff_t>::value), "");
35 static_assert((std::is_same<typename It::pointer, T*>::value), "");
36 static_assert((std::is_same<typename It::reference, T&>::value), "");
37 static_assert((std::is_same<typename It::iterator_category, std::forward_iterator_tag>::value), "");
44 typedef std::iterator<std::bidirectional_iterator_tag, T, short> It;
45 static_assert((std::is_same<typename It::value_type, T>::value), "");
46 static_assert((std::is_same<typename It::difference_type, short>::value), "");
47 static_assert((std::is_same<typename It::pointer, T*>::value), "")
    [all...]
  /external/stlport/test/compiler/StTerm-order/
stterm-test.cc 19 It ctor done <-- 0
23 It dtor done <-- 0
32 It ctor done <-- 0
38 It dtor done <-- 0
66 class It
69 It();
70 ~It();
89 static It it; local
104 It::It(
    [all...]
  /external/clang/test/SemaTemplate/
overload-uneval.cpp 28 class It
34 inline bool operator!=(const It &o) const { return i !=
40 Wibble<void*>::It a, b;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/
replace_storage.hpp 71 ForwardIteratorT It=::boost::algorithm::detail::move_from_storage( Storage, InsertIt, SegmentBegin );
74 // a) Storage is empty, It==SegmentBegin
75 // b) Storage is empty, It!=SegmentBegin
80 if( It==SegmentBegin )
88 return std::copy( SegmentBegin, SegmentEnd, It );
94 while( It!=SegmentEnd )
97 Storage.push_back( *It );
98 // Get the top from the storage and put it here
99 *It=Storage.front();
103 ++It;
    [all...]
finder.hpp 349 input_iterator_type It=Begin;
352 Index<N && It!=End; ++Index,++It ) {};
354 return result_type( Begin, It );
400 input_iterator_type It=Begin;
406 // Advance It, It2 to the end
407 for(; It2!=End; ++It,++It2 ) {};
409 return result_type( It, It2 );
423 input_iterator_type It=End;
426 Index<N && It!=Begin; ++Index,--It ) {}
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineWorklist.h 37 /// Add - Add the specified instruction to the worklist if it isn't already
38 /// in it.
66 // Remove - remove I from the worklist if it exists.
68 DenseMap<Instruction*, unsigned>::iterator It = WorklistMap.find(I);
69 if (It == WorklistMap.end()) return; // Not in worklist.
72 Worklist[It->second] = nullptr;
74 WorklistMap.erase(It);
94 /// the map if it is large.
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/
__init__.py 33 from base import Port # It's possible we don't need to export this virtual baseclass outside the module.
  /external/clang/include/clang/AST/
DeclLookups.h 27 StoredDeclsMap::iterator It, End;
36 all_lookups_iterator(StoredDeclsMap::iterator It,
38 : It(It), End(End) {}
40 DeclarationName getLookupName() const { return It->first; }
42 reference operator*() const { return It->second.getLookupResult(); }
43 pointer operator->() const { return It->second.getLookupResult(); }
48 // should not expect to get them (or worse, rely on it).
50 ++It;
51 } while (It != End &
    [all...]
  /external/clang/tools/arcmt-test/
arcmt-test.cpp 30 //llvm::cl::desc("Test the result of transformations by parsing it in ARC mode"));
59 // This function isn't referenced outside its translation unit, but it
264 std::map<StringRef, StringRef>::iterator It;
265 It = resultMap.find(sys::path::filename(inputOrigFname));
266 if (It == resultMap.end()) {
273 sys::fs::exists(It->second, exists);
275 errs() << "error: '" << It->second << "' does not exist\n";
284 if (!filesCompareEqual(It->second, inputResultFname)) {
285 errs() << "error: '" << It->second << "' is different than "
290 resultMap.erase(It);
    [all...]
  /external/llvm/include/llvm/CodeGen/
FunctionLoweringInfo.h 115 /// TODO: This isn't per-function state, it's per-basic-block state. But
116 /// there's no other convenient place for it to live right now.
167 /// the register's LiveOutInfo is for a smaller bit width, it is extended to
175 // Only install this information if it tells us something.
194 DenseMap<const Value*, unsigned>::const_iterator It = ValueMap.find(PN);
195 if (It == ValueMap.end())
198 unsigned Reg = It->second;
  /external/llvm/lib/MC/MCAnalysis/
MCObjectSymbolizer.cpp 78 // all stubs and creating the calls to outside functions. Is it worth it
215 It = std::lower_bound(SortedSections.begin(), EndIt,
217 if (It == EndIt)
219 uint64_t SAddr; It->getAddress(SAddr);
220 uint64_t SSize; It->getSize(SSize);
223 return &*It;
246 SortedSectionList::iterator It =
249 if (It != SortedSections.end()) {
250 uint64_t FoundSAddr; It->getAddress(FoundSAddr)
    [all...]
  /external/llvm/unittests/ADT/
StringMapTest.cpp 54 StringMap<uint32_t>::iterator it = testMap.begin(); local
55 EXPECT_STREQ(testKey, it->first().data());
56 EXPECT_EQ(testValue, it->second);
57 ++it;
58 EXPECT_TRUE(it == testMap.end());
140 // it fills up through a balanced pattern of inserts and erases. This can
141 // lead to inf-loops in some cases (PR13148) so we test it explicitly here.
173 for (StringMap<uint32_t>::iterator it = testMap.begin();
174 it != testMap.end(); ++it) {
    [all...]
  /art/runtime/mirror/
art_method.cc 185 typedef MappingTable::PcToDexIterator It;
186 for (It cur = table.PcToDexBegin(), end = table.PcToDexEnd(); cur != end; ++cur) {
215 typedef MappingTable::DexToPcIterator It;
216 for (It cur = table.DexToPcBegin(), end = table.DexToPcEnd(); cur != end; ++cur) {
247 for (CatchHandlerIterator it(*code_item, dex_pc); it.HasNext(); it.Next()) {
248 uint16_t iter_type_idx = it.GetHandlerTypeIndex();
251 found_dex_pc = it.GetHandlerAddress();
267 found_dex_pc = it.GetHandlerAddress()
    [all...]
  /external/llvm/include/llvm/ADT/
DepthFirstIterator.h 22 // it to be more efficient, and allows external clients to use the set for
28 // it to be more efficient, and allows external clients to use the set for
106 ChildItTy &It = Top.second;
109 It = GT::child_begin(Node);
113 while (It != GT::child_end(Node)) {
114 NodeType *Next = *It++;
117 // No, do it now.
  /external/llvm/include/llvm/IR/
CFG.h 34 USE_iterator It;
38 while (!It.atEnd() && !isa<TerminatorInst>(*It))
39 ++It;
47 explicit inline PredIterator(Ptr *bb) : It(bb->user_begin()) {
50 inline PredIterator(Ptr *bb, bool) : It(bb->user_end()) {}
52 inline bool operator==(const Self& x) const { return It == x.It; }
56 assert(!It.atEnd() && "pred_iterator out of range!");
57 return cast<TerminatorInst>(*It)->getParent()
124 Self it; member in class:llvm::SuccIterator::SuccessorProxy
    [all...]

Completed in 4845 milliseconds

1 2 3