/external/protobuf/java/compatibility_tests/v2.5.0/more_protos/src/proto/google/protobuf/ |
D | unittest_enormous_descriptor.proto | 46 …ooooooooooooooooooooooooooooooooong_1 = 1 [default="long default value is also loooooooooooooooooo… 47 …ooooooooooooooooooooooooooooooooong_2 = 2 [default="long default value is also loooooooooooooooooo… 48 …ooooooooooooooooooooooooooooooooong_3 = 3 [default="long default value is also loooooooooooooooooo… 49 …ooooooooooooooooooooooooooooooooong_4 = 4 [default="long default value is also loooooooooooooooooo… 50 …ooooooooooooooooooooooooooooooooong_5 = 5 [default="long default value is also loooooooooooooooooo… 51 …ooooooooooooooooooooooooooooooooong_6 = 6 [default="long default value is also loooooooooooooooooo… 52 …ooooooooooooooooooooooooooooooooong_7 = 7 [default="long default value is also loooooooooooooooooo… 53 …ooooooooooooooooooooooooooooooooong_8 = 8 [default="long default value is also loooooooooooooooooo… 54 …ooooooooooooooooooooooooooooooooong_9 = 9 [default="long default value is also loooooooooooooooooo… 55 …ooooooooooooooooooooooooooooooong_10 = 10 [default="long default value is also loooooooooooooooooo… [all …]
|
/external/protobuf/java/compatibility_tests/v2.5.0/protos/src/proto/google/protobuf/ |
D | unittest_enormous_descriptor.proto | 46 …ooooooooooooooooooooooooooooooooong_1 = 1 [default="long default value is also loooooooooooooooooo… 47 …ooooooooooooooooooooooooooooooooong_2 = 2 [default="long default value is also loooooooooooooooooo… 48 …ooooooooooooooooooooooooooooooooong_3 = 3 [default="long default value is also loooooooooooooooooo… 49 …ooooooooooooooooooooooooooooooooong_4 = 4 [default="long default value is also loooooooooooooooooo… 50 …ooooooooooooooooooooooooooooooooong_5 = 5 [default="long default value is also loooooooooooooooooo… 51 …ooooooooooooooooooooooooooooooooong_6 = 6 [default="long default value is also loooooooooooooooooo… 52 …ooooooooooooooooooooooooooooooooong_7 = 7 [default="long default value is also loooooooooooooooooo… 53 …ooooooooooooooooooooooooooooooooong_8 = 8 [default="long default value is also loooooooooooooooooo… 54 …ooooooooooooooooooooooooooooooooong_9 = 9 [default="long default value is also loooooooooooooooooo… 55 …ooooooooooooooooooooooooooooooong_10 = 10 [default="long default value is also loooooooooooooooooo… [all …]
|
/external/protobuf/src/google/protobuf/ |
D | unittest_enormous_descriptor.proto | 48 …ooooooooooooooooooooooooooooooooong_1 = 1 [default="long default value is also loooooooooooooooooo… 49 …ooooooooooooooooooooooooooooooooong_2 = 2 [default="long default value is also loooooooooooooooooo… 50 …ooooooooooooooooooooooooooooooooong_3 = 3 [default="long default value is also loooooooooooooooooo… 51 …ooooooooooooooooooooooooooooooooong_4 = 4 [default="long default value is also loooooooooooooooooo… 52 …ooooooooooooooooooooooooooooooooong_5 = 5 [default="long default value is also loooooooooooooooooo… 53 …ooooooooooooooooooooooooooooooooong_6 = 6 [default="long default value is also loooooooooooooooooo… 54 …ooooooooooooooooooooooooooooooooong_7 = 7 [default="long default value is also loooooooooooooooooo… 55 …ooooooooooooooooooooooooooooooooong_8 = 8 [default="long default value is also loooooooooooooooooo… 56 …ooooooooooooooooooooooooooooooooong_9 = 9 [default="long default value is also loooooooooooooooooo… 57 …ooooooooooooooooooooooooooooooong_10 = 10 [default="long default value is also loooooooooooooooooo… [all …]
|
/external/clang/test/SemaObjC/ |
D | arc-repeated-weak.mm | 23 use(a.weakProp); // expected-note{{also accessed here}} 28 use(a.weakProp); // expected-note{{also accessed here}} 56 a.weakProp = get(); // expected-note{{also accessed here}} 67 use(a.strongProp.weakProp); // expected-note{{also accessed here}} 72 use(a.strongProp.weakProp); // expected-note{{also accessed here}} 77 use(a.implicitProp); // expected-note{{also accessed here}} 82 use(Test.weakProp); // expected-note{{also accessed here}} 93 use(a->weakIvar); // expected-note{{also accessed here}} 99 use(a); // expected-note{{also accessed here}} 104 use([a weakProp]); // expected-note{{also accessed here}} [all …]
|
D | arc-property-decl-attrs.m | 40 @property(strong) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be… 41 @property(strong) __weak id y; // expected-error {{strong property 'y' may not also be declared __w… 42 @property(strong) __autoreleasing id z; // expected-error {{strong property 'z' may not also be dec… 46 @property(retain) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be… 47 @property(retain) __weak id y; // expected-error {{strong property 'y' may not also be declared __w… 48 @property(retain) __autoreleasing id z; // expected-error {{strong property 'z' may not also be dec… 52 @property(copy) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be d… 53 @property(copy) __weak id y; // expected-error {{strong property 'y' may not also be declared __wea… 54 @property(copy) __autoreleasing id z; // expected-error {{strong property 'z' may not also be decla… 59 @property(assign) __weak id y; // expected-error {{unsafe_unretained property 'y' may not also be d… [all …]
|
D | warn-strict-selector-match.m | 8 -(float) method; // expected-note {{also found}} 20 - (void)setWindow:(Class1 *)window; // expected-note 2 {{also found}} 33 - (id)initWithData:(Object *)data; // expected-note {{also found}} 37 - (id)initWithData:(int)data; // expected-note {{also found}} 52 - (id)initWithData:(id<MyObject, MyCoding>)data { // expected-note {{also found}} 84 - (instancetype)initWithType:(NSString *)whatever; // expected-note {{also found}}
|
D | protocol-implementing-class-methods.m | 24 …ze]; } // expected-warning {{category is implementing a method which will also be implemented by i… 26 - (void) : (double) arg{}; // expected-warning {{category is implementing a method which will also … 27 - (void) CEMeth {}; // expected-warning {{category is implementing a method which will also be impl…
|
/external/llvm-project/clang/test/SemaObjC/ |
D | arc-repeated-weak.mm | 24 use(a.weakProp); // expected-note{{also accessed here}} 29 use(a.weakProp); // expected-note{{also accessed here}} 57 a.weakProp = get(); // expected-note{{also accessed here}} 68 use(a.strongProp.weakProp); // expected-note{{also accessed here}} 73 use(a.strongProp.weakProp); // expected-note{{also accessed here}} 78 use(a.implicitProp); // expected-note{{also accessed here}} 83 use(Test.weakProp); // expected-note{{also accessed here}} 94 use(a->weakIvar); // expected-note{{also accessed here}} 100 use(a); // expected-note{{also accessed here}} 105 use([a weakProp]); // expected-note{{also accessed here}} [all …]
|
D | arc-property-decl-attrs.m | 40 @property(strong) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be… 41 @property(strong) __weak id y; // expected-error {{strong property 'y' may not also be declared __w… 42 @property(strong) __autoreleasing id z; // expected-error {{strong property 'z' may not also be dec… 46 @property(retain) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be… 47 @property(retain) __weak id y; // expected-error {{strong property 'y' may not also be declared __w… 48 @property(retain) __autoreleasing id z; // expected-error {{strong property 'z' may not also be dec… 52 @property(copy) __unsafe_unretained id x; // expected-error {{strong property 'x' may not also be d… 53 @property(copy) __weak id y; // expected-error {{strong property 'y' may not also be declared __wea… 54 @property(copy) __autoreleasing id z; // expected-error {{strong property 'z' may not also be decla… 59 @property(assign) __weak id y; // expected-error {{unsafe_unretained property 'y' may not also be d… [all …]
|
D | warn-strict-selector-match.m | 8 -(float) method; // expected-note {{also found}} 20 - (void)setWindow:(Class1 *)window; // expected-note 2 {{also found}} 33 - (id)initWithData:(Object *)data; // expected-note {{also found}} 37 - (id)initWithData:(int)data; // expected-note {{also found}} 52 - (id)initWithData:(id<MyObject, MyCoding>)data { // expected-note {{also found}} 84 - (instancetype)initWithType:(NSString *)whatever; // expected-note {{also found}}
|
D | protocol-implementing-class-methods.m | 24 …ze]; } // expected-warning {{category is implementing a method which will also be implemented by i… 26 - (void) : (double) arg{}; // expected-warning {{category is implementing a method which will also … 27 - (void) CEMeth {}; // expected-warning {{category is implementing a method which will also be impl…
|
/external/curl/tests/libtest/ |
D | lib1908.c | 45 CURL *also = curl_easy_duphandle(hnd); in test() local 46 if(also) { in test() 47 ret = curl_easy_perform(also); in test() 50 curl_easy_cleanup(also); in test()
|
/external/ltp/testcases/network/tcp_cmds/ |
D | README | 9 These tests also assume an identical path tree for their location on the remote 11 it must also be located in "/home/ltptests" on the remote machine (RHOST). 13 It's also a good idea to set the "PASSWD" variable to root's password on this remote 14 machine, b/c some tests use this also. You will also need to setup a ".rhosts" file in
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/flow/internal/ |
D | AbstractSharedFlow.kt | 34 _subscriptionCount ?: MutableStateFlow(nCollectors).also { in <lambda>() 49 null -> createSlotArray(2).also { slots = it } in createSlot() 51 curSlots.copyOf(2 * curSlots.size).also { slots = it } in createSlot() 59 slot = slots[index] ?: createSlot().also { slots[index] = it } in createSlot()
|
/external/iptables/extensions/ |
D | libipt_CLUSTERIP.c | 57 .also = O_NEW}, 59 .also = O_NEW, .flags = XTOPT_PUT, XTOPT_POINTER(s, clustermac)}, 62 .also = O_NEW, .max = CLUSTERIP_MAX_NODES}, 65 .also = O_NEW, .max = CLUSTERIP_MAX_NODES}, 68 .also = O_NEW, .max = UINT_MAX},
|
/external/icu/icu4c/source/data/translit/ |
D | rm_SURSILV_rm_FONIPA_SURSILV.txt | 35 ei → ɛɪ\u032F ; # can also be /aɪ\u032F/ or /ɔɪ\u032F/ in some regions 37 e → e ; # can also be /ɛ/; needs a dictionary 63 {sch} [aeiou] → ʒ ; # can also be /ʃ/; needs a dictionary 64 {sch} → ʃ ; # can also be /ʒ/; needs a dictionary 67 s → s ; # can also be /z/; needs a dictionary
|
/external/python/cpython3/Doc/library/ |
D | asyncio-api-index.rst | 73 * See also the main :ref:`Tasks documentation page <coroutine>`. 102 * See also the :ref:`Queues documentation page <asyncio-queues>`. 125 * See also the :ref:`subprocess APIs <asyncio-subprocess>` 161 * See also the :ref:`streams APIs <asyncio-streams>` 194 * See also the documentation of asyncio 212 - Raised when a Task is cancelled. See also :meth:`Task.cancel`. 220 * See also the full list of
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/internal/ |
D | LockFreeLinkedListTest.kt | 54 val n1 = IntNode(1).also { single(list.describeAddLast(it)) } in testAtomicOpsSingle() 56 val n2 = IntNode(2).also { single(list.describeAddLast(it)) } in testAtomicOpsSingle() 58 val n3 = IntNode(3).also { single(list.describeAddLast(it)) } in testAtomicOpsSingle() 60 val n4 = IntNode(4).also { single(list.describeAddLast(it)) } in testAtomicOpsSingle()
|
/external/llvm-project/llvm/test/MC/AArch64/ |
D | arm64-diags.s | 182 ; CHECK-ERRORS: error: unpredictable LDP instruction, writeback base is also a destination 185 ; CHECK-ERRORS: error: unpredictable LDP instruction, writeback base is also a destination 188 ; CHECK-ERRORS: error: unpredictable LDP instruction, writeback base is also a destination 191 ; CHECK-ERRORS: error: unpredictable LDP instruction, writeback base is also a destination 224 ; CHECK-ERRORS: error: unpredictable LDR instruction, writeback base is also a source 227 ; CHECK-ERRORS: error: unpredictable LDR instruction, writeback base is also a source 230 ; CHECK-ERRORS: error: unpredictable LDR instruction, writeback base is also a source 233 ; CHECK-ERRORS: error: unpredictable LDR instruction, writeback base is also a source 236 ; CHECK-ERRORS: error: unpredictable STR instruction, writeback base is also a source 239 ; CHECK-ERRORS: error: unpredictable STR instruction, writeback base is also a source [all …]
|
/external/llvm-project/clang-tools-extra/docs/clang-tidy/checks/ |
D | bugprone-branch-clone.rst | 35 The check also detects repeated branches in longer ``if/else if/else`` chains 59 (and that the ``'b'`` and ``'B'`` branches are also identical), but does not 60 report that the ``default:`` branch is also identical to the first two branches. 80 Finally, the check also examines conditional operators and reports code like: 89 Note: This check also reports situations where branches become identical only
|
/external/python/rsa/doc/ |
D | intro.rst | 14 numbers. It also included generating public and private keys. There 29 security, which also resulted in the ability to encrypt and decrypt 32 Key generation was also improved in version 3.0, ensuring that you 35 public and private keys in PEM and DER format as also added.
|
/external/bcc/tools/ |
D | bpflist_example.txt | 4 bpflist displays information on running BPF programs and optionally also 19 In verbose mode, bpflist also counts the number of kprobes and uprobes opened 32 In double-verbose mode, the probe definitions are also displayed: 65 bpflist -v # also count kprobes/uprobes
|
/external/clang/test/ASTMerge/ |
D | category.m | 6 // CHECK: category1.m:16:1: note: instance method 'method2' also declared here 8 // CHECK: category1.m:24:1: note: instance method 'method3' also declared here 10 // CHECK: category1.m:46:1: note: instance method 'blah' also declared here
|
/external/llvm-project/clang/test/ASTMerge/category/ |
D | test.m | 6 // CHECK: category1.m:16:1: note: instance method 'method2' also declared here 8 // CHECK: category1.m:24:1: note: instance method 'method3' also declared here 10 // CHECK: category1.m:46:1: note: instance method 'blah' also declared here
|
/external/libdrm/ |
D | CONTRIBUTING.rst | 9 mailing lists (like amd-gfx@lists.freedesktop.org) is also appropriate. See git 26 and also note any particular side effects. For a recommended reading on 31 Your patches should also include a Signed-off-by line with your name and email 32 address. If you're not the patch's original author, you should also gather 66 drivers, merged patches to those components also count towards the commit 95 Please be aware the fd.o Code of Conduct also applies to libdrm: 102 patches that violate the documented merge criteria, will also be handled through
|