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

12 3 4 5 6 7 8 91011>>

  /external/boringssl/src/crypto/asn1/
tasn_new.c 10 * apply to all code found in this distribution, be it the RC4, RSA,
70 static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
72 static void asn1_item_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
74 static void asn1_primitive_clear(ASN1_VALUE **pval, const ASN1_ITEM *it);
76 ASN1_VALUE *ASN1_item_new(const ASN1_ITEM *it)
79 if (ASN1_item_ex_new(&ret, it) > 0)
86 int ASN1_item_ex_new(ASN1_VALUE **pval, const ASN1_ITEM *it)
88 return asn1_item_ex_combine_new(pval, it, 0);
91 static int asn1_item_ex_combine_new(ASN1_VALUE **pval, const ASN1_ITEM *it,
97 const ASN1_AUX *aux = it->funcs
262 const ASN1_ITEM *it = ASN1_ITEM_ptr(tt->item); local
    [all...]
  /frameworks/compile/mclinker/lib/Script/
SectionsCmd.cpp 24 for (iterator it = begin(), ie = end(); it != ie; ++it) {
25 if (*it != NULL)
26 delete *it;
33 for (const_iterator it = begin(), ie = end(); it != ie; ++it) {
34 switch ((*it)->getKind()) {
39 (*it)->dump()
    [all...]
  /external/v8/src/arm64/
decoder-arm64.cc 31 std::list<DecoderVisitor*>::iterator it; local
32 for (it = visitors_.begin(); it != visitors_.end(); it++) {
33 if (*it == registered_visitor) {
34 visitors_.insert(it, new_visitor);
40 DCHECK(*it == registered_visitor);
41 visitors_.insert(it, new_visitor);
48 std::list<DecoderVisitor*>::iterator it; local
49 for (it = visitors_.begin(); it != visitors_.end(); it++)
    [all...]
  /libcore/ojluni/src/main/java/java/util/
AbstractCollection.java 5 * This code is free software; you can redistribute it and/or modify it
11 * This code is distributed in the hope that it will be useful, but WITHOUT
99 Iterator<E> it = iterator(); local
101 while (it.hasNext())
102 if (it.next()==null)
105 while (it.hasNext())
106 if (o.equals(it.next()))
137 Iterator<E> it = iterator(); local
139 if (! it.hasNext()) // fewer elements than expecte
180 Iterator<E> it = iterator(); local
282 Iterator<E> it = iterator(); local
373 Iterator<?> it = iterator(); local
407 Iterator<E> it = iterator(); local
433 Iterator<E> it = iterator(); local
454 Iterator<E> it = iterator(); local
    [all...]
  /bionic/tests/
net_if_test.cpp 48 for (struct if_nameindex* it = list; it->if_index != 0; ++it) {
49 fprintf(stderr, "\t%d\t%s\n", it->if_index, it->if_name);
50 if_nameindex_names.insert(it->if_name);
51 EXPECT_EQ(it->if_index, if_nametoindex(it->if_name));
52 EXPECT_STREQ(it->if_name, if_indextoname(it->if_index, buf))
    [all...]
  /external/clang/lib/Frontend/
TextDiagnosticBuffer.cpp 50 for (const_iterator it = err_begin(), ie = err_end(); it != ie; ++it)
52 << it->second;
53 for (const_iterator it = warn_begin(), ie = warn_end(); it != ie; ++it)
55 << it->second;
56 for (const_iterator it = remark_begin(), ie = remark_end(); it != ie; ++it
    [all...]
  /external/compiler-rt/test/asan/TestCases/Windows/
crt_initializers.cc 18 for (FPTR* it = &__xi_a; it < &__xi_z; ++it) {
19 if (*it)
  /external/libcxx/test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator.cons/
default.pass.cpp 29 T it; local
30 assert(it == T());
38 T it; local
39 assert(it == T());
  /external/libcxx/test/std/re/re.alg/re.alg.search/
backup.pass.cpp 32 std::sregex_iterator it(s.begin(), s.end(), re);
35 assert(it->position(0) == 0);
36 assert(it->length(0) == 1);
38 ++it;
39 assert(it->position(0) == 5);
40 assert(it->length(0) == 1);
42 ++it;
43 assert(it == end);
51 std::regex_iterator<std::list<char>::iterator> it(l.begin(), l.end(), re);
54 assert(it->position(0) == 0)
    [all...]
  /external/libmojo/mojo/edk/embedder/
platform_handle_utils.h 19 for (typename PlatformHandleContainer::iterator it =
21 it != platform_handles->end(); ++it)
22 it->CloseIfNecessary();
  /external/tensorflow/tensorflow/compiler/xla/service/cpu/
target_machine_features.cc 23 auto it = target_transform_info_cache_.find(&function); local
24 if (it == target_transform_info_cache_.end()) {
28 it = emplace_result.first;
31 return &it->second;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/list_update_map_/
debug_fn_imps.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
49 for (const_iterator it = begin(); it != end(); ++it)
51 debug_base::check_key_exists(PB_DS_V2F(*it), __file, __line);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/list_update_map_/
debug_fn_imps.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
49 for (const_iterator it = begin(); it != end(); ++it)
51 debug_base::check_key_exists(PB_DS_V2F(*it), __file, __line);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/iterators/stream.iterators/istreambuf.iterator/istreambuf.iterator.cons/
default.pass.cpp 29 T it; local
30 assert(it == T());
37 T it; local
38 assert(it == T());
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/re/re.alg/re.alg.search/
backup.pass.cpp 32 std::sregex_iterator it(s.begin(), s.end(), re);
35 assert(it->position(0) == 0);
36 assert(it->length(0) == 1);
38 ++it;
39 assert(it->position(0) == 5);
40 assert(it->length(0) == 1);
42 ++it;
43 assert(it == end);
51 std::regex_iterator<std::list<char>::iterator> it(l.begin(), l.end(), re);
54 assert(it->position(0) == 0)
    [all...]
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/SPIRV/
Logger.cpp 57 for (auto it = tbdFeatures.cbegin(); it != tbdFeatures.cend(); ++it)
58 messages << "TBD functionality: " << *it << "\n"; local
59 for (auto it = missingFeatures.cbegin(); it != missingFeatures.cend(); ++it)
60 messages << "Missing functionality: " << *it << "\n"; local
61 for (auto it = warnings.cbegin(); it != warnings.cend(); ++it
62 messages << "warning: " << *it << "\\n"; local
64 messages << "error: " << *it << "\\n"; local
    [all...]
  /system/libufdt/include/
ufdt_types.h 22 /* it has type : struct ufdt_node** */
23 #define for_each(it, node) \
25 for ((it) = (node)->nodes; (it) != (node)->nodes + (node)->mem_size; ++(it)) \
26 if (*(it))
28 #define for_each_child(it, node) \
30 for ((it) = &(((struct ufdt_node_fdt_node *)(node))->child); *(it); \
31 (it) = &((*(it))->sibling)
    [all...]
  /external/webp/src/enc/
iterator_enc.c 22 static void InitLeft(VP8EncIterator* const it) {
23 it->y_left_[-1] = it->u_left_[-1] = it->v_left_[-1] =
24 (it->y_ > 0) ? 129 : 127;
25 memset(it->y_left_, 129, 16);
26 memset(it->u_left_, 129, 8);
27 memset(it->v_left_, 129, 8);
28 it->left_nz_[8] = 0;
31 static void InitTop(VP8EncIterator* const it) {
    [all...]
  /external/libcxx/test/std/experimental/filesystem/class.rec.dir.itr/rec.dir.itr.members/
copy_assign.pass.cpp 33 // in a non-default state. The returned 'it' is in a
35 // it.options() == directory_options::skip_permission_denied
36 // it.depth() == 1
37 // it.recursion_pending() == true
41 recursive_directory_iterator it(testDir,
43 TEST_ASSERT(it != endIt);
44 while (it.depth() != 1) {
45 ++it;
46 TEST_ASSERT(it != endIt);
48 TEST_ASSERT(it.depth() == 1)
111 const recursive_directory_iterator it = createInterestingIterator(); local
131 const recursive_directory_iterator it; local
140 recursive_directory_iterator it = createInterestingIterator(); local
    [all...]
  /frameworks/av/media/libstagefright/
FrameRenderTracker.cpp 58 for (std::list<Info>::iterator it = mRenderQueue.begin();
59 it != mRenderQueue.end(); ++it) {
60 if (it->mGraphicBuffer->handle == buf->handle) {
61 renderInfo = it;
116 for (std::list<Info>::iterator it = mRenderQueue.begin();
117 it != mRenderQueue.end(); ) {
119 if (it->mIndex < 0) {
122 } else if (it->mFence != NULL) {
124 nsecs_t signalTime = it->mFence->getSignalTime()
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/pb_ds/detail/ov_tree_map_/
debug_fn_imps.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
63 for (const_iterator it = begin(); it != end(); ++it)
66 debug_base::check_key_exists(PB_DS_V2F(*it), __file, __line);
67 PB_DS_DEBUG_VERIFY(lower_bound(PB_DS_V2F(*it)) == it);
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/pb_ds/detail/ov_tree_map_/
debug_fn_imps.hpp 6 // software; you can redistribute it and/or modify it under the terms
11 // This library is distributed in the hope that it will be useful, but
33 // purpose. It is provided "as is" without express or implied
63 for (const_iterator it = begin(); it != end(); ++it)
66 debug_base::check_key_exists(PB_DS_V2F(*it), __file, __line);
67 PB_DS_DEBUG_VERIFY(lower_bound(PB_DS_V2F(*it)) == it);
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/std/experimental/filesystem/class.rec.dir.itr/rec.dir.itr.members/
copy_assign.pass.cpp 33 // in a non-default state. The returned 'it' is in a
35 // it.options() == directory_options::skip_permission_denied
36 // it.depth() == 1
37 // it.recursion_pending() == true
41 recursive_directory_iterator it(testDir,
43 TEST_ASSERT(it != endIt);
44 while (it.depth() != 1) {
45 ++it;
46 TEST_ASSERT(it != endIt);
48 TEST_ASSERT(it.depth() == 1)
111 const recursive_directory_iterator it = createInterestingIterator(); local
131 const recursive_directory_iterator it; local
140 recursive_directory_iterator it = createInterestingIterator(); local
    [all...]
  /external/libmojo/mojo/edk/system/
awakable_list.cc 27 for (AwakeInfoList::iterator it = awakables_.begin(); it != last;) {
29 if (state.satisfies(it->signals))
30 keep = it->awakable->Awake(MOJO_RESULT_OK, it->context);
31 else if (!state.can_satisfy(it->signals))
32 keep = it->awakable->Awake(MOJO_RESULT_FAILED_PRECONDITION, it->context);
36 std::swap(*it, *last);
38 ++it;
    [all...]
  /external/parameter-framework/upstream/parameter/
HardwareBackSynchronizer.cpp 40 std::list<const CConfigurableElement *>::const_iterator it; local
42 for (it = _needingBackSyncList.begin(); it != _needingBackSyncList.end(); ++it) {
44 const CConfigurableElement *pConfigurableElement = *it;

Completed in 1308 milliseconds

12 3 4 5 6 7 8 91011>>