HomeSort by relevance Sort by last modified time
    Searched defs:it (Results 101 - 125 of 3394) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/libcxx/test/std/containers/sequences/deque/deque.modifiers/
push_back_rvalue.pass.cpp 55 typename C::const_iterator it = c.begin(); local
56 for (int i = 0; i < size; ++i, ++it)
57 assert(*it == MoveOnly(i));
  /external/libcxx/test/std/containers/sequences/forwardlist/
incomplete.pass.cpp 24 std::forward_list<A>::iterator it; member in struct:A
32 FList::iterator it; member in struct:B
42 a.it = a.d.begin();
49 b.it = b.d.begin();
  /external/libcxx/test/std/containers/sequences/list/
incomplete_type.pass.cpp 19 std::list<A>::iterator it; member in struct:A
  /external/libcxx/test/std/experimental/filesystem/class.path/path.itr/
iterator.pass.cpp 33 template <class It>
34 std::reverse_iterator<It> mkRev(It it) {
35 return std::reverse_iterator<It>(it);
40 using It = path::iterator;
41 using Traits = std::iterator_traits<It>;
47 It it; local
    [all...]
  /external/libcxx/test/std/numerics/complex.number/cmplx.over/
UDT_is_rejected.fail.cpp 27 UDT<int> it; variable
36 std::real(it); // expected-error {{no matching function}}
43 std::imag(it); // expected-error {{no matching function}}
50 std::arg(it); // expected-error {{no matching function}}
57 std::norm(it); // expected-error {{no matching function}}
64 std::conj(it); // expected-error {{no matching function}}
71 std::proj(it); // expected-error {{no matching function}}
  /external/libmojo/mojo/edk/system/
mapping_table.cc 38 AddressToMappingMap::iterator it = address_to_mapping_map_.find(address); local
39 if (it == address_to_mapping_map_.end())
41 PlatformSharedBufferMapping* mapping_to_delete = it->second;
42 address_to_mapping_map_.erase(it);
watcher_set.cc 31 auto it = watchers_.find(context); local
32 if (it != watchers_.end())
47 auto it = watchers_.find(context); local
48 if (it == watchers_.end())
51 RequestContext::current()->AddWatchCancelFinalizer(it->second);
52 watchers_.erase(it);
  /external/llvm/test/MC/ARM/
deprecated-v8.s 29 it ge label
31 @ CHECK-THUMBV8: warning: deprecated instruction in IT block
36 @ CHECK-ARMV8: warning: applying IT instruction to more than one subsequent instruction is deprecated
37 @ CHECK-THUMBV8: warning: applying IT instruction to more than one subsequent instruction is deprecated
39 it ge label
41 @ CHECK-THUMBV8: warning: deprecated instruction in IT block
43 it ge label
45 @ CHECK-THUMBV8: warning: deprecated instruction in IT block
47 it ge label
49 @ CHECK-THUMBV8: warning: deprecated instruction in IT bloc
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/fork/
13-1.c 5 * This program is free software; you can redistribute it and/or modify it
9 * This program is distributed in the hope that it would be useful, but
64 struct itimerval it; local
69 it.it_interval.tv_sec = 15;
70 it.it_interval.tv_usec = 0;
71 it.it_value.tv_sec = 10;
72 it.it_value.tv_usec = 0;
74 ret = setitimer(ITIMER_REAL, &it, NULL);
81 ret = setitimer(ITIMER_VIRTUAL, &it, NULL)
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/
11-1.c 12 /* Do some work in the main thread so that it's clock value is non zero.
56 struct itimerval it = {.it_value = {.tv_sec = 0, .tv_usec = 100000}}; local
69 /* Let's do some work in the main thread so that it's cputime > 0 */
75 if (setitimer(ITIMER_VIRTUAL, &it, NULL)) {
  /external/mesa3d/src/gallium/state_trackers/clover/core/
format.cpp 137 auto it = formats.find(format); local
139 if (it == formats.end())
142 return it->second;
  /external/parameter-framework/upstream/parameter/
MappingData.cpp 50 // it means that no value has been provided
76 KeyToValueMapConstIterator it = _keyToValueMap.find(strkey); local
78 if (it != _keyToValueMap.end()) {
80 pStrValue = &it->second;
  /external/pdfium/core/fxcrt/
fx_bidi_unittest.cpp 133 auto it = bidi.begin(); local
134 ASSERT_FALSE(it == bidi.end());
135 EXPECT_EQ(0, it->start);
136 EXPECT_EQ(1, it->count);
137 EXPECT_EQ(CFX_BidiChar::NEUTRAL, it->direction);
138 ++it;
139 EXPECT_TRUE(it == bidi.end());
146 auto it = bidi.begin(); local
147 ASSERT_FALSE(it == bidi.end());
148 EXPECT_EQ(0, it->start)
162 auto it = bidi.begin(); local
183 auto it = bidi.begin(); local
207 auto it = bidi.begin(); local
228 auto it = bidi.begin(); local
251 auto it = bidi.begin(); local
291 auto it = bidi.begin(); local
332 auto it = bidi.begin(); local
    [all...]
  /external/pdfium/core/fxcrt/xml/
cfx_xmlattributenode.cpp 23 auto it = attrs_.find(name); local
24 return it != attrs_.end() ? it->second : WideString();
  /external/pdfium/fpdfsdk/pwl/
cpwl_timer.cpp 55 auto it = GetPWLTimeMap().find(idEvent); local
56 if (it == GetPWLTimeMap().end())
59 CPWL_Timer* pTimer = it->second;
  /external/pdfium/fxjs/
global_timer.cpp 42 auto it = GetGlobalTimerMap()->find(nTimerID); local
43 if (it == GetGlobalTimerMap()->end())
46 GlobalTimer* pTimer = it->second;
54 // Timer proc may have destroyed timer, find it again.
55 it = GetGlobalTimerMap()->find(nTimerID);
56 if (it == GetGlobalTimerMap()->end())
59 pTimer = it->second;
67 auto it = GetGlobalTimerMap()->find(nTimerID); local
68 if (it == GetGlobalTimerMap()->end())
71 GlobalTimer* pTimer = it->second
    [all...]
  /external/pdfium/xfa/fxfa/
cxfa_texttabstopscontext.cpp 21 auto it = std::lower_bound(m_tabstops.begin(), m_tabstops.end(), tabstop); local
22 m_tabstops.insert(it, tabstop);
  /external/pdfium/xfa/fxfa/parser/
cxfa_arraynodelist.cpp 37 auto it = std::find(m_array.begin(), m_array.end(), pBeforeNode); local
38 if (it != m_array.end())
39 m_array.insert(it, pNewNode);
45 auto it = std::find(m_array.begin(), m_array.end(), pNode); local
46 if (it != m_array.end())
47 m_array.erase(it);
  /external/perfetto/src/traced/probes/filesystem/
lru_inode_cache.cc 35 auto it = map_.find(k); local
36 return Insert(it, std::move(k), std::move(v));
  /external/swiftshader/third_party/LLVM/unittests/ADT/
DenseMapTest.cpp 77 DenseMap<uint32_t, uint32_t>::iterator it = uintMap.begin(); local
78 EXPECT_EQ(0u, it->first);
79 EXPECT_EQ(1u, it->second);
80 ++it;
81 EXPECT_TRUE(it == uintMap.end());
156 for (DenseMap<uint32_t, uint32_t>::iterator it = uintMap.begin();
157 it != uintMap.end(); ++it) {
158 visited[it->first] = true;
170 DenseMap<uint32_t, uint32_t>::iterator it = uintMap.begin() local
    [all...]
  /external/tensorflow/tensorflow/compiler/xla/service/
compiler.cc 66 auto it = compilers->find(platform->id()); local
67 if (it != compilers->end()) {
68 return it->second.get();
76 auto it = factories->find(platform->id()); local
77 if (it == factories->end()) {
85 compilers->insert(std::make_pair(platform->id(), it->second()));
hlo_evaluator.h 165 auto it = evaluated_.find(hlo); local
166 CHECK(it != evaluated_.end())
168 return *(it->second);
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
external_constant_pool.cc 46 auto it = entries_.find(name); local
47 return it == entries_.end() ? nullptr : it->second.get();
  /external/tensorflow/tensorflow/contrib/lite/kernels/
register.cc 121 auto it = builtins_.find(op); local
122 return it != builtins_.end() ? it->second : nullptr;
126 auto it = custom_ops_.find(op); local
127 return it != custom_ops_.end() ? it->second : nullptr;
  /external/tensorflow/tensorflow/contrib/lite/toco/graph_transformations/
identify_l2_pool.cc 31 auto it = model->operators.begin(); local
32 for (; it != model->operators.end(); ++it) {
33 if (it->get() == op) {
37 return it;

Completed in 599 milliseconds

1 2 3 45 6 7 8 91011>>