/external/parameter-framework/asio-1.10.6/include/asio/ |
D | stream_socket_service.hpp | 64 void construct(implementation_type& impl) in construct() argument 66 service_impl_.construct(impl); in construct() 70 void move_construct(implementation_type& impl, in move_construct() argument 73 service_impl_.move_construct(impl, other_impl); in move_construct() 77 void move_assign(implementation_type& impl, in move_assign() argument 81 service_impl_.move_assign(impl, other_service.service_impl_, other_impl); in move_assign() 87 void converting_move_construct(implementation_type& impl, in converting_move_construct() argument 94 impl, other_impl); in converting_move_construct() 98 void destroy(implementation_type& impl) in destroy() argument 100 service_impl_.destroy(impl); in destroy() [all …]
|
D | socket_acceptor_service.hpp | 63 void construct(implementation_type& impl) in construct() argument 65 service_impl_.construct(impl); in construct() 69 void move_construct(implementation_type& impl, in move_construct() argument 72 service_impl_.move_construct(impl, other_impl); in move_construct() 76 void move_assign(implementation_type& impl, in move_assign() argument 80 service_impl_.move_assign(impl, other_service.service_impl_, other_impl); in move_assign() 86 void converting_move_construct(implementation_type& impl, in converting_move_construct() argument 93 impl, other_impl); in converting_move_construct() 97 void destroy(implementation_type& impl) in destroy() argument 99 service_impl_.destroy(impl); in destroy() [all …]
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
D | reactive_socket_service_base.hpp | 66 ASIO_DECL void construct(base_implementation_type& impl); 69 ASIO_DECL void base_move_construct(base_implementation_type& impl, 73 ASIO_DECL void base_move_assign(base_implementation_type& impl, 78 ASIO_DECL void destroy(base_implementation_type& impl); 81 bool is_open(const base_implementation_type& impl) const in is_open() 83 return impl.socket_ != invalid_socket; in is_open() 88 base_implementation_type& impl, asio::error_code& ec); 91 native_handle_type native_handle(base_implementation_type& impl) in native_handle() argument 93 return impl.socket_; in native_handle() 98 base_implementation_type& impl, asio::error_code& ec); [all …]
|
D | reactive_socket_service.hpp | 77 void move_construct(implementation_type& impl, in move_construct() argument 80 this->base_move_construct(impl, other_impl); in move_construct() 82 impl.protocol_ = other_impl.protocol_; in move_construct() 87 void move_assign(implementation_type& impl, in move_assign() argument 91 this->base_move_assign(impl, other_service, other_impl); in move_assign() 93 impl.protocol_ = other_impl.protocol_; in move_assign() 99 void converting_move_construct(implementation_type& impl, in converting_move_construct() argument 103 this->base_move_construct(impl, other_impl); in converting_move_construct() 105 impl.protocol_ = protocol_type(other_impl.protocol_); in converting_move_construct() 110 asio::error_code open(implementation_type& impl, in open() argument [all …]
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/impl/ |
D | reactive_socket_service_base.ipp | 37 reactive_socket_service_base::base_implementation_type& impl) 39 impl.socket_ = invalid_socket; 40 impl.state_ = 0; 44 reactive_socket_service_base::base_implementation_type& impl, 47 impl.socket_ = other_impl.socket_; 50 impl.state_ = other_impl.state_; 53 reactor_.move_descriptor(impl.socket_, 54 impl.reactor_data_, other_impl.reactor_data_); 58 reactive_socket_service_base::base_implementation_type& impl, 62 destroy(impl); [all …]
|
/external/clang/test/Analysis/inlining/ |
D | containers.cpp | 30 clang_analyzer_eval(set.begin().impl == set.end().impl); in test() 51 clang_analyzer_eval(w1.begin().impl.impl == w1.begin().impl.impl); in testWrappers() 58 clang_analyzer_eval(w2.start().impl == w2.start().impl); in testWrappers() 65 clang_analyzer_eval(w3.start().impl == w3.start().impl); in testWrappers() 72 clang_analyzer_eval(w4.start().impl == w4.start().impl); in testWrappers() 114 int *impl; member 116 iterator(int *p) : impl(p) {} in iterator() 171 MySet impl; member in BeginOnlySet 174 MySet::iterator impl; member 177 IterImpl(MySet::iterator i) : impl(i) { in IterImpl() [all …]
|
/external/icu/icu4j/ |
D | coverage-exclusion.txt | 29 com/ibm/icu/impl/Assert#<init>:()V 30 com/ibm/icu/impl/Assert#fail:(Ljava/lang/Exception;)V 31 com/ibm/icu/impl/BMPSet#<init>:(Lcom/ibm/icu/impl/BMPSet;[II)V 32 com/ibm/icu/impl/CacheValue$Strength#valueOf:(Ljava/lang/String;)Lcom/ibm/icu/impl/CacheValue$Stren… 33 com/ibm/icu/impl/CacheValue$Strength#values:()[Lcom/ibm/icu/impl/CacheValue$Strength; 34 com/ibm/icu/impl/CalendarUtil#<init>:()V 35 com/ibm/icu/impl/CaseMap#<init>:()V 36 com/ibm/icu/impl/CaseMap$GreekUpper#<init>:()V 37 com/ibm/icu/impl/CharacterIteration#<init>:()V 38 com/ibm/icu/impl/CharTrie#equals:(Ljava/lang/Object;)Z [all …]
|
/external/mesa3d/src/compiler/nir/ |
D | nir_dominance.c | 37 init_block(nir_block *block, nir_function_impl *impl) in init_block() argument 39 if (block == nir_start_block(impl)) in init_block() 129 calc_dom_children(nir_function_impl* impl) in calc_dom_children() argument 131 void *mem_ctx = ralloc_parent(impl); in calc_dom_children() 133 nir_foreach_block(block, impl) { in calc_dom_children() 138 nir_foreach_block(block, impl) { in calc_dom_children() 144 nir_foreach_block(block, impl) { in calc_dom_children() 164 nir_calc_dominance_impl(nir_function_impl *impl) in nir_calc_dominance_impl() argument 166 if (impl->valid_metadata & nir_metadata_dominance) in nir_calc_dominance_impl() 169 nir_metadata_require(impl, nir_metadata_block_index); in nir_calc_dominance_impl() [all …]
|
D | nir_metadata.c | 34 nir_metadata_require(nir_function_impl *impl, nir_metadata required, ...) in nir_metadata_require() argument 36 #define NEEDS_UPDATE(X) ((required & ~impl->valid_metadata) & (X)) in nir_metadata_require() 39 nir_index_blocks(impl); in nir_metadata_require() 41 nir_calc_dominance_impl(impl); in nir_metadata_require() 43 nir_live_ssa_defs_impl(impl); in nir_metadata_require() 47 nir_loop_analyze_impl(impl, va_arg(ap, nir_variable_mode)); in nir_metadata_require() 53 impl->valid_metadata |= required; in nir_metadata_require() 57 nir_metadata_preserve(nir_function_impl *impl, nir_metadata preserved) in nir_metadata_preserve() argument 59 impl->valid_metadata &= preserved; in nir_metadata_preserve() 73 if (function->impl) { in nir_metadata_set_validation_flag() [all …]
|
D | nir_opt_global_to_local.c | 33 nir_function_impl *impl = NULL; in global_to_local() local 41 if (impl != NULL) { in global_to_local() 42 if (impl != instr_impl) in global_to_local() 45 impl = instr_impl; in global_to_local() 53 if (impl != NULL) { in global_to_local() 54 if (impl != instr_impl) in global_to_local() 57 impl = instr_impl; in global_to_local() 64 if (impl != NULL) { in global_to_local() 65 if (impl != if_impl) in global_to_local() 68 impl = if_impl; in global_to_local() [all …]
|
D | nir_inline_functions.c | 28 static bool inline_function_impl(nir_function_impl *impl, struct set *inlined); 88 lower_param_to_local(nir_variable *param, nir_function_impl *impl, bool write) in lower_param_to_local() argument 95 assert(param->data.location < impl->num_params); in lower_param_to_local() 96 param_type = impl->function->params[param->data.location].param_type; in lower_param_to_local() 106 exec_list_push_tail(&impl->locals, ¶m->node); in lower_param_to_local() 111 lower_params_to_locals_block(nir_block *block, nir_function_impl *impl) in lower_params_to_locals_block() argument 121 lower_param_to_local(intrin->variables[0]->var, impl, true); in lower_params_to_locals_block() 125 lower_param_to_local(intrin->variables[0]->var, impl, true); in lower_params_to_locals_block() 126 lower_param_to_local(intrin->variables[1]->var, impl, false); in lower_params_to_locals_block() 135 lower_param_to_local(intrin->variables[i]->var, impl, false); in lower_params_to_locals_block() [all …]
|
D | nir_lower_global_vars_to_local.c | 36 mark_global_var_uses_block(nir_block *block, nir_function_impl *impl, in mark_global_var_uses_block() argument 55 if (entry->data != impl) in mark_global_var_uses_block() 58 _mesa_hash_table_insert(var_func_table, var, impl); in mark_global_var_uses_block() 80 if (function->impl) { in nir_lower_global_vars_to_local() 81 nir_foreach_block(block, function->impl) in nir_lower_global_vars_to_local() 82 mark_global_var_uses_block(block, function->impl, var_func_table); in nir_lower_global_vars_to_local() 89 nir_function_impl *impl = entry->data; in nir_lower_global_vars_to_local() local 93 if (impl != NULL) { in nir_lower_global_vars_to_local() 96 exec_list_push_tail(&impl->locals, &var->node); in nir_lower_global_vars_to_local() 97 nir_metadata_preserve(impl, nir_metadata_block_index | in nir_lower_global_vars_to_local()
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | Norm2AllModes.java | 11 package android.icu.impl; 88 impl=ni; in Normalizer2WithImpl() 98 normalize(src, new Normalizer2Impl.ReorderingBuffer(impl, dest, src.length())); in normalize() 107 new Normalizer2Impl.ReorderingBuffer(impl, dest, src.length()); in normalize() 130 new Normalizer2Impl.ReorderingBuffer(impl, first, first.length()+second.length())); in normalizeSecondAndAppend() 138 return impl.getDecomposition(c); in getDecomposition() 142 return impl.getRawDecomposition(c); in getRawDecomposition() 146 return impl.composePair(a, b); in composePair() 151 return impl.getCC(impl.getNorm16(c)); in getCombiningClass() 166 public final Normalizer2Impl impl; field in Norm2AllModes.Normalizer2WithImpl [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | Norm2AllModes.java | 10 package com.ibm.icu.impl; 84 impl=ni; in Normalizer2WithImpl() 94 normalize(src, new Normalizer2Impl.ReorderingBuffer(impl, dest, src.length())); in normalize() 103 new Normalizer2Impl.ReorderingBuffer(impl, dest, src.length()); in normalize() 126 new Normalizer2Impl.ReorderingBuffer(impl, first, first.length()+second.length())); in normalizeSecondAndAppend() 134 return impl.getDecomposition(c); in getDecomposition() 138 return impl.getRawDecomposition(c); in getRawDecomposition() 142 return impl.composePair(a, b); in composePair() 147 return impl.getCC(impl.getNorm16(c)); in getCombiningClass() 162 public final Normalizer2Impl impl; field in Norm2AllModes.Normalizer2WithImpl [all …]
|
/external/conscrypt/openjdk/src/test/java/org/conscrypt/ |
D | PlatformTest.java | 33 SSLParametersImpl impl = SSLParametersImpl.getDefault(); in test_setSSLParameters_Socket() local 40 Platform.setSSLParameters(params, impl, (AbstractConscryptSocket)socket); in test_setSSLParameters_Socket() 42 assertFalse(impl.getUseCipherSuitesOrder()); in test_setSSLParameters_Socket() 43 assertEquals("ABC", impl.getEndpointIdentificationAlgorithm()); in test_setSSLParameters_Socket() 48 SSLParametersImpl impl = SSLParametersImpl.getDefault(); in test_getSSLParameters_Socket() local 50 impl.setUseCipherSuitesOrder(false); in test_getSSLParameters_Socket() 51 impl.setEndpointIdentificationAlgorithm("ABC"); in test_getSSLParameters_Socket() 53 Platform.getSSLParameters(params, impl, (AbstractConscryptSocket)socket); in test_getSSLParameters_Socket() 60 SSLParametersImpl impl = SSLParametersImpl.getDefault(); in test_setSSLParameters_Engine() local 62 ConscryptEngine engine = new ConscryptEngine(impl); in test_setSSLParameters_Engine() [all …]
|
/external/mockito/src/test/java/org/mockito/internal/configuration/plugins/ |
D | PluginFileReaderTest.java | 24 assertNull(reader.readPluginClass(impl(""))); in no_class_in_resource() 25 assertNull(reader.readPluginClass(impl(" "))); in no_class_in_resource() 26 assertNull(reader.readPluginClass(impl(" \n "))); in no_class_in_resource() 29 assertNull(reader.readPluginClass(impl("#foo"))); in no_class_in_resource() 30 assertNull(reader.readPluginClass(impl(" # foo "))); in no_class_in_resource() 31 assertNull(reader.readPluginClass(impl(" # # # java.langString # "))); in no_class_in_resource() 32 assertNull(reader.readPluginClass(impl(" \n # foo \n # foo \n "))); in no_class_in_resource() 35 private InputStream impl(String s) { in impl() method in PluginFileReaderTest 41 assertEquals("java.lang.String", reader.readPluginClass(impl("java.lang.String"))); in reads_class_name() 42 assertEquals("x", reader.readPluginClass(impl("x"))); in reads_class_name() [all …]
|
/external/v8/src/parsing/ |
D | parser-base.h | 96 if (!*ok) return impl()->x(__VA_ARGS__); \ 197 Impl* impl() { return static_cast<Impl*>(this); } in impl() function 198 const Impl* impl() const { return static_cast<const Impl*>(this); } in impl() function 600 : name(parser->impl()->EmptyIdentifier()), in CatchInfo() 602 pattern(parser->impl()->EmptyExpression()), in CatchInfo() 604 init_block(parser->impl()->NullBlock()), in CatchInfo() 605 inner_block(parser->impl()->NullBlock()), in CatchInfo() 635 extends(parser->impl()->EmptyExpression()), in ClassInfo() 636 properties(parser->impl()->NewClassPropertyList(4)), in ClassInfo() 637 constructor(parser->impl()->EmptyFunctionLiteral()), in ClassInfo() [all …]
|
/external/icu/icu4c/source/common/ |
D | norm2allmodes.h | 32 Normalizer2WithImpl(const Normalizer2Impl &ni) : impl(ni) {} in Normalizer2WithImpl() 51 ReorderingBuffer buffer(impl, dest); in normalize() 91 ReorderingBuffer buffer(impl, first); in normalizeSecondAndAppend() 111 const UChar *d=impl.getDecomposition(c, buffer, length); in getDecomposition() 126 const UChar *d=impl.getRawDecomposition(c, buffer, length); in getRawDecomposition() 139 return impl.composePair(a, b); in composePair() 144 return impl.getCC(impl.getNorm16(c)); in getCombiningClass() 184 const Normalizer2Impl &impl; variable 196 impl.decompose(src, limit, &buffer, errorCode); in normalize() 203 impl.decomposeAndAppend(src, limit, doNormalize, safeMiddle, buffer, errorCode); in normalizeAndAppend() [all …]
|
/external/parameter-framework/asio-1.10.6/include/asio/ip/ |
D | resolver_service.hpp | 67 void construct(implementation_type& impl) in construct() argument 69 service_impl_.construct(impl); in construct() 73 void destroy(implementation_type& impl) in destroy() argument 75 service_impl_.destroy(impl); in destroy() 79 void cancel(implementation_type& impl) in cancel() argument 81 service_impl_.cancel(impl); in cancel() 85 iterator_type resolve(implementation_type& impl, const query_type& query, in resolve() argument 88 return service_impl_.resolve(impl, query, ec); in resolve() 95 async_resolve(implementation_type& impl, const query_type& query, in ASIO_INITFN_RESULT_TYPE() 102 service_impl_.async_resolve(impl, query, init.handler); in ASIO_INITFN_RESULT_TYPE() [all …]
|
/external/libmojo/mojo/android/javatests/src/org/chromium/mojo/bindings/ |
D | InterfacesTest.java | 20 import org.chromium.mojo.system.impl.CoreImpl; 182 private void checkProxy(NamedObject.Proxy proxy, MockNamedObjectImpl impl) { in checkProxy() argument 187 if (impl != null) { in checkProxy() 188 assertNull(impl.getLastMojoException()); in checkProxy() 189 assertEquals("", impl.getNameSynchronously()); in checkProxy() 204 if (impl != null) { in checkProxy() 205 assertNull(impl.getLastMojoException()); in checkProxy() 206 assertEquals(OBJECT_NAME, impl.getNameSynchronously()); in checkProxy() 224 MockNamedObjectImpl impl = new MockNamedObjectImpl(); in testProxyAndStub() local 226 NamedObject.MANAGER.buildProxy(null, NamedObject.MANAGER.buildStub(null, impl)); in testProxyAndStub() [all …]
|
/external/libmojo/mojo/public/cpp/bindings/ |
D | strong_binding.h | 54 explicit StrongBinding(Interface* impl) : binding_(impl) {} in StrongBinding() argument 56 StrongBinding(Interface* impl, ScopedMessagePipeHandle handle) in StrongBinding() argument 57 : StrongBinding(impl) { in StrongBinding() 61 StrongBinding(Interface* impl, InterfacePtr<Interface>* ptr) in StrongBinding() argument 62 : StrongBinding(impl) { in StrongBinding() 66 StrongBinding(Interface* impl, InterfaceRequest<Interface> request) in StrongBinding() argument 67 : StrongBinding(impl) { in StrongBinding() 107 Interface* impl() { return binding_.impl(); } in impl() function 114 delete binding_.impl(); in OnConnectionError()
|
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu/META-INF/ |
D | MANIFEST.MF | 13 com.ibm.icu.impl;x-internal:=true, 14 com.ibm.icu.impl.data;x-internal:=true, 15 com.ibm.icu.impl.data.icudt@DATA_VERSION_NUMBER@b;x-internal:=true, 16 com.ibm.icu.impl.data.icudt@DATA_VERSION_NUMBER@b.brkitr;x-internal:=true, 17 com.ibm.icu.impl.data.icudt@DATA_VERSION_NUMBER@b.coll;x-internal:=true, 18 com.ibm.icu.impl.data.icudt@DATA_VERSION_NUMBER@b.curr;x-internal:=true, 19 com.ibm.icu.impl.data.icudt@DATA_VERSION_NUMBER@b.lang;x-internal:=true, 20 com.ibm.icu.impl.data.icudt@DATA_VERSION_NUMBER@b.rbnf;x-internal:=true, 21 com.ibm.icu.impl.data.icudt@DATA_VERSION_NUMBER@b.region;x-internal:=true, 22 com.ibm.icu.impl.data.icudt@DATA_VERSION_NUMBER@b.translit;x-internal:=true, [all …]
|
/external/v8/testing/gtest/scripts/ |
D | gen_gtest_pred_impl.py | 217 impl = """ 223 impl += Iter(n, """, 226 impl += """> 229 impl += Iter(n, """, 232 impl += """, 235 impl += Iter(n, """, 238 impl += """) { 243 impl += ' return AssertionFailure() << pred_text << "("' 245 impl += Iter(n, """ 248 impl += ' << ") evaluates to false, where"' [all …]
|
/external/protobuf/gtest/scripts/ |
D | gen_gtest_pred_impl.py | 217 impl = """ 223 impl += Iter(n, """, 226 impl += """> 229 impl += Iter(n, """, 232 impl += """, 235 impl += Iter(n, """, 238 impl += """) { 244 impl += ' msg << pred_text << "("' 246 impl += Iter(n, """ 249 impl += ' << ") evaluates to false, where"' [all …]
|
/external/googletest/googletest/scripts/ |
D | gen_gtest_pred_impl.py | 217 impl = """ 223 impl += Iter(n, """, 226 impl += """> 229 impl += Iter(n, """, 232 impl += """, 235 impl += Iter(n, """, 238 impl += """) { 243 impl += ' return AssertionFailure() << pred_text << "("' 245 impl += Iter(n, """ 248 impl += ' << ") evaluates to false, where"' [all …]
|