HomeSort by relevance Sort by last modified time
    Searched refs:it (Results 276 - 300 of 10401) sorted by null

<<11121314151617181920>>

  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64CA53ErratumStub.cpp 57 for (const_fixup_iterator it = pBegin, ie = pEnd; it != ie; ++it) {
58 addFixup(**it);
103 fixup_iterator it = fixup_begin(); local
106 Relocation::Create((*it)->type(),
107 *(FragmentRef::Create(*this, (*it)->offset())),
108 (*it)->addend());
118 ++it;
119 reloc = Relocation::Create((*it)->type()
    [all...]
  /prebuilts/tools/common/m2/repository/it/unimi/dsi/fastutil/7.2.0/
fastutil-7.2.0.jar 
  /external/webp/src/enc/
filter_enc.c 85 static void DoFilter(const VP8EncIterator* const it, int level) {
86 const VP8Encoder* const enc = it->enc_;
90 uint8_t* const y_dst = it->yuv_out2_ + Y_OFF_ENC;
91 uint8_t* const u_dst = it->yuv_out2_ + U_OFF_ENC;
92 uint8_t* const v_dst = it->yuv_out2_ + V_OFF_ENC;
95 memcpy(y_dst, it->yuv_out_, YUV_SIZE_ENC * sizeof(uint8_t));
140 void VP8InitFilter(VP8EncIterator* const it) {
142 if (it->lf_stats_ != NULL) {
146 (*it->lf_stats_)[s][i] = 0;
152 (void)it;
    [all...]
  /external/protobuf/ruby/ext/google/protobuf_c/
map.c 151 upb_strtable_iter it; local
152 for (upb_strtable_begin(&it, &self->table);
153 !upb_strtable_done(&it);
154 upb_strtable_next(&it)) {
155 upb_value v = upb_strtable_iter_value(&it);
208 * not value_typeclass is present (and it is unambiguously separate from
275 upb_strtable_iter it; local
276 for (upb_strtable_begin(&it, &self->table);
277 !upb_strtable_done(&it);
278 upb_strtable_next(&it)) {
305 upb_strtable_iter it; local
329 upb_strtable_iter it; local
503 upb_strtable_iter it; local
531 upb_strtable_iter it; local
569 upb_strtable_iter it; local
633 upb_strtable_iter it; local
669 upb_strtable_iter it; local
724 upb_strtable_iter it; local
    [all...]
  /art/tools/veridex/
precise_hidden_api_finder.cc 45 ClassDataItemIterator it(dex_file, class_data);
46 it.SkipAllFields();
47 for (; it.HasNextMethod(); it.Next()) {
48 const DexFile::CodeItem* code_item = it.GetMethodCodeItem();
52 action(resolver.get(), it);
71 RunInternal(resolvers, [this] (VeridexResolver* resolver, const ClassDataItemIterator& it) {
72 FlowAnalysisCollector collector(resolver, it);
74 AddUsesAt(collector.GetUses(), MethodReference(&resolver->GetDexFile(), it.GetMemberIndex()));
87 [this, current_uses] (VeridexResolver* resolver, const ClassDataItemIterator& it) {
    [all...]
  /external/v8/src/heap/
array-buffer-tracker.cc 19 for (TrackingData::iterator it = array_buffers_.begin();
20 it != array_buffers_.end();) {
21 JSArrayBuffer* buffer = reinterpret_cast<JSArrayBuffer*>(it->first);
23 const size_t len = it->second;
27 it = array_buffers_.erase(it);
29 ++it;
42 for (TrackingData::iterator it = array_buffers_.begin();
43 it != array_buffers_.end();) {
44 const CallbackResult result = callback(it->first, &new_buffer)
    [all...]
  /system/tools/hidl/c2hal/
Type.cpp 75 auto it = kSignedToUnsignedMap.find(signedType); local
77 if (it == kCToHidlMap.end()) {
81 return (*it).second;
108 auto it = kCToHidlMap.find(cType); local
110 if (it == kCToHidlMap.end()) {
114 return (*it).second;
124 for (auto it = mQualifiers->begin(); it != mQualifiers->end(); ++it) {
125 if (it != mQualifiers->begin())
    [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/pdfium/core/fxge/
cfx_fontcache.cpp 32 auto it = map.find(face); local
33 if (it != map.end()) {
34 CountedFaceCache* counted_face_cache = it->second.get();
60 auto it = map.find(face); local
61 if (it == map.end())
64 CountedFaceCache* counted_face_cache = it->second.get();
68 map.erase(it);
  /external/v8/src/crankshaft/
hydrogen-infer-representation.cc 43 for (HUseIterator it(phi->uses()); !it.Done(); it.Advance()) {
44 HValue* use = it.value();
65 for (BitVector::Iterator it(connected_phis[i]);
66 !it.Done();
67 it.Advance()) {
68 int index = it.Current();
78 for (BitVector::Iterator it(connected_phis[i]);
79 !it.Done()
    [all...]
  /frameworks/support/core/ktx/src/main/java/androidx/core/database/
Cursor.kt 191 getColumnIndexOrThrow(columnName).let { if (isNull(it)) null else getBlob(it) }
204 getColumnIndexOrThrow(columnName).let { if (isNull(it)) null else getDouble(it) }
217 getColumnIndexOrThrow(columnName).let { if (isNull(it)) null else getFloat(it) }
230 getColumnIndexOrThrow(columnName).let { if (isNull(it)) null else getInt(it) }
243 getColumnIndexOrThrow(columnName).let { if (isNull(it)) null else getLong(it) }
    [all...]
  /libnativehelper/
AsynchronousCloseMonitor.cpp 65 for (AsynchronousCloseMonitor* it = blockedThreadList; it != NULL; it = it->mNext) {
66 if (it->mFd == fd) {
67 it->mSignaled = true;
68 pthread_kill(it->mThread, BLOCKED_THREAD_SIGNAL);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/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/googletest/googletest/src/
gtest-typed-test.cc 79 for (RegisteredTestIter it = registered_tests_.begin();
80 it != registered_tests_.end();
81 ++it) {
82 if (name == it->first) {
96 for (RegisteredTestIter it = registered_tests_.begin();
97 it != registered_tests_.end();
98 ++it) {
99 if (tests.count(it->first) == 0) {
100 errors << "You forgot to list test " << it->first << ".\n";
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-typed-test.cc 79 for (RegisteredTestIter it = registered_tests_.begin();
80 it != registered_tests_.end();
81 ++it) {
82 if (name == it->first) {
96 for (RegisteredTestIter it = registered_tests_.begin();
97 it != registered_tests_.end();
98 ++it) {
99 if (tests.count(it->first) == 0) {
100 errors << "You forgot to list test " << it->first << ".\n";
  /external/pdfium/core/fxge/apple/
fx_mac_imp.cpp 89 auto it = m_FontList.find(new_face); local
90 if (it != m_FontList.end())
91 return it->second.get();
94 auto it = m_FontList.find(face); local
95 if (it != m_FontList.end())
96 return it->second.get();
117 it = m_FontList.find(face);
118 return it != m_FontList.end() ? it->second.get() : nullptr;
  /external/v8/testing/gtest/src/
gtest-typed-test.cc 79 for (RegisteredTestIter it = registered_tests_.begin();
80 it != registered_tests_.end();
81 ++it) {
82 if (name == it->first) {
96 for (RegisteredTestIter it = registered_tests_.begin();
97 it != registered_tests_.end();
98 ++it) {
99 if (tests.count(it->first) == 0) {
100 errors << "You forgot to list test " << it->first << ".\n";
  /frameworks/compile/mclinker/lib/Script/
InputSectDesc.cpp 50 for (StringList::const_iterator it = m_Spec.excludeFiles().begin(),
52 it != ie;
53 ++it) {
54 mcld::outs() << (*it)->name() << " ";
60 for (StringList::const_iterator it = m_Spec.sections().begin(),
62 it != ie;
63 ++it) {
64 assert((*it)->kind() == StrToken::Wildcard);
65 WildcardPattern* wildcard = llvm::cast<WildcardPattern>(*it);
RpnExpr.cpp 35 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
36 if ((*it)->kind() == ExprToken::OPERAND &&
37 llvm::cast<Operand>(*it)->isDot())
44 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
45 (*it)->dump();
  /system/core/libbinderwrapper/
stub_binder_wrapper.cc 38 const auto it = registered_services_.find(service_name); local
39 return it != registered_services_.end() ? it->second : sp<IBinder>();
43 const auto it = death_callbacks_.find(binder); local
44 if (it != death_callbacks_.end())
45 it->second.Run();
49 const auto it = services_to_return_.find(service_name); local
50 return it != services_to_return_.end() ? it->second : sp<IBinder>();
  /system/update_engine/payload_generator/
tarjan.cc 40 for (Graph::iterator it = graph->begin(); it != graph->end(); ++it)
41 it->index = it->lowlink = kInvalidIndex;
55 for (Vertex::EdgeMap::iterator it = (*graph)[vertex].out_edges.begin();
56 it != (*graph)[vertex].out_edges.end(); ++it) {
57 Vertex::Index vertex_next = it->first;
  /developers/build/prebuilts/gradle/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/multidatasetservice/model/
FilledAutofillField.kt 40 if (it.isList) {
41 val index = it.listValue
47 } else if (it.isDate) {
48 dateValue = it.dateValue
49 } else if (it.isText) {
50 // Using toString of AutofillValue.getTextValue in order to save it to
52 textValue = it.textValue.toString()
  /developers/samples/android/input/autofill/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/multidatasetservice/model/
FilledAutofillField.kt 40 if (it.isList) {
41 val index = it.listValue
47 } else if (it.isDate) {
48 dateValue = it.dateValue
49 } else if (it.isText) {
50 // Using toString of AutofillValue.getTextValue in order to save it to
52 textValue = it.textValue.toString()
  /external/e2fsprogs/lib/ext2fs/
hashmap.c 64 struct ext2fs_hashmap_entry **it)
66 *it = *it ? (*it)->list_next : h->first;
67 return *it ? (*it)->data : NULL;
73 struct ext2fs_hashmap_entry *it = h->entries[i]; local
74 while (it) {
75 struct ext2fs_hashmap_entry *tmp = it->next;
77 h->free(it->data)
    [all...]
  /external/libchrome/base/trace_event/
process_memory_totals.cc 31 for (const auto it : extra_fields_) {
32 value->SetString(it.first, StringPrintf("%" PRIx64, it.second));

Completed in 588 milliseconds

<<11121314151617181920>>