/external/tcpdump/tests/ |
D | isis-seg-fault-1-v.out | 17 IS Neighbor: f500.0000.0000.00, no sub-TLVs present 18 IS Neighbor: 0000.0000.0000.00, no sub-TLVs present 19 IS Neighbor: 0000.0000.0056.00, no sub-TLVs present 20 IS Neighbor: 0000.0000.0000.00, no sub-TLVs present 21 IS Neighbor: 0000.0000.0000.00, no sub-TLVs present 22 IS Neighbor: 0000.0000.0000.00, no sub-TLVs present 23 IS Neighbor: 0000.0000.0000.00, no sub-TLVs present 24 IS Neighbor: 0000.0000.0000.00, no sub-TLVs present 25 IS Neighbor: 0000.0000.0000.00, no sub-TLVs present 26 IS Neighbor: 0000.0000.0000.00, no sub-TLVs present [all …]
|
/external/scapy/scapy/layers/ |
D | dot11.py | 233 if cur is None or (cur.present and cur.present.Ext): 318 …ld("Ext", [], next_cls_cb=_next_radiotap_extpm), lambda pkt: pkt.present and pkt.present.Ext), # … 328 lambda pkt: pkt.present and pkt.present.TSFT), 332 lambda pkt: pkt.present and pkt.present.Flags), 337 lambda pkt: pkt.present and pkt.present.Rate), 344 lambda pkt: pkt.present and pkt.present.Channel), 347 lambda pkt: pkt.present and pkt.present.Channel), 352 lambda pkt: pkt.present and pkt.present.dBm_AntSignal), 357 lambda pkt: pkt.present and pkt.present.dBm_AntNoise), 364 lambda pkt: pkt.present and pkt.present.Lock_Quality), [all …]
|
/external/libultrahdr/lib/src/ |
D | jpegrutils.cpp | 221 bool getVersion(string* version, bool* present) { in getVersion() argument 224 *present = versionFound; in getVersion() 231 bool getMaxContentBoost(float* max_content_boost, bool* present) { in getMaxContentBoost() argument 233 *present = maxContentBoostFound; in getMaxContentBoost() 247 bool getMinContentBoost(float* min_content_boost, bool* present) { in getMinContentBoost() argument 249 *present = minContentBoostFound; in getMinContentBoost() 263 bool getGamma(float* gamma, bool* present) { in getGamma() argument 265 *present = gammaFound; in getGamma() 279 bool getOffsetSdr(float* offset_sdr, bool* present) { in getOffsetSdr() argument 281 *present = offsetSdrFound; in getOffsetSdr() [all …]
|
/external/toolchain-utils/compiler_wrapper/ |
D | ccache_flag.go | 8 val, present := env.getenv("EBUILD_PHASE") 9 return present && val == "configure" 27 if force, present := builder.env.getenv("COMPILER_WRAPPER_FORCE_CCACHE"); present { 46 if _, present := builder.env.getenv("CCACHE_DISABLE"); present { 54 if sandboxRewrite, present := builder.env.getenv("SANDBOX_WRITE"); present {
|
/external/chromiumos-config/util/ |
D | hw_features.star | 26 """Returns correct value of present enum depending on value""" 34 def _create_bluetooth(present = True): 35 """Specify whether bluetooth is present""" 38 present = _bool_to_present(present), 46 present = _bool_to_present(supported), 51 """Specify type of display support present.""" 86 def _create_ec(ec_type, present = True): 90 present = _bool_to_present(present), 107 present = False, 119 present = present, [all …]
|
/external/llvm/utils/lit/tests/Inputs/shtest-shell/ |
D | redirects.txt | 3 # RUN: echo "not-present" > %t.stdout-write 4 # RUN: echo "is-present" > %t.stdout-write 7 # STDOUT-WRITE-NOT: not-present 8 # STDOUT-WRITE: is-present 13 # STDOUT-APPEND: is-present 19 # RUN: echo "not-present" > %t.stderr-write 23 # STDERR-WRITE-NOT: not-present 35 # RUN: echo "not-present" > %t.combined 39 # COMBINED-WRITE-NOT: not-present
|
/external/python/absl-py/absl/testing/tests/ |
D | flagsaver_test.py | 64 self.assertFalse(STR_FLAG.present) 82 self.assertTrue(STR_FLAG.present) 90 self.assertFalse(STR_FLAG.present) 100 self.assertTrue(INT_FLAG.present) 104 self.assertFalse(INT_FLAG.present) 116 self.assertFalse(INT_FLAG.present) 119 INT_FLAG.present = True 124 self.assertFalse(INT_FLAG.present) 163 self.assertEqual(0, FLAGS['flagsaver_test_flag0'].present) 167 self.assertEqual(1, FLAGS['flagsaver_test_flag0'].present) [all …]
|
/external/chromiumos-config/test/project/fake/fake_a/generated/ |
D | config.jsonproto | 107 "present": 1 120 "present": 1 154 "present": 1, 160 "present": 1 164 "present": 1 204 "present": true 218 "present": 1 221 "present": 1 233 "present": 1 278 "present": 2 [all …]
|
/external/mesa3d/src/util/ |
D | u_worklist.c | 35 w->present = rzalloc_array(mem_ctx, BITSET_WORD, BITSET_WORDS(num_entries)); in u_worklist_init() 42 ralloc_free(w->present); in u_worklist_fini() 50 if (BITSET_TEST(w->present, *index)) in u_worklist_push_head_index() 63 BITSET_SET(w->present, *index); in u_worklist_push_head_index() 84 BITSET_CLEAR(w->present, *(w->entries[head])); in u_worklist_pop_head_index() 92 if (BITSET_TEST(w->present, *index)) in u_worklist_push_tail_index() 102 BITSET_SET(w->present, *index); in u_worklist_push_tail_index() 124 BITSET_CLEAR(w->present, *(w->entries[tail])); in u_worklist_pop_tail_index()
|
/external/cronet/tot/third_party/boringssl/src/pki/ |
D | parser_unittest.cc | 75 bool present; in TEST() local 76 ASSERT_TRUE(parser.ReadOptionalTag(CBS_ASN1_INTEGER, &value, &present)); in TEST() 77 ASSERT_TRUE(present); in TEST() 120 bool present; in TEST() local 121 ASSERT_TRUE(parser.ReadOptionalTag(CBS_ASN1_INTEGER, &value, &present)); in TEST() 122 ASSERT_FALSE(present); in TEST() 160 bool present; in TEST() local 161 ASSERT_TRUE(parser.ReadOptionalTag(CBS_ASN1_INTEGER, &value, &present)); in TEST() 162 ASSERT_FALSE(present); in TEST() 170 bool present; in TEST() local [all …]
|
/external/cronet/stable/third_party/boringssl/src/pki/ |
D | parser_unittest.cc | 75 bool present; in TEST() local 76 ASSERT_TRUE(parser.ReadOptionalTag(CBS_ASN1_INTEGER, &value, &present)); in TEST() 77 ASSERT_TRUE(present); in TEST() 120 bool present; in TEST() local 121 ASSERT_TRUE(parser.ReadOptionalTag(CBS_ASN1_INTEGER, &value, &present)); in TEST() 122 ASSERT_FALSE(present); in TEST() 160 bool present; in TEST() local 161 ASSERT_TRUE(parser.ReadOptionalTag(CBS_ASN1_INTEGER, &value, &present)); in TEST() 162 ASSERT_FALSE(present); in TEST() 170 bool present; in TEST() local [all …]
|
/external/mesa3d/src/asahi/lib/ |
D | agx_ppp.h | 23 agx_ppp_update_size(struct AGX_PPP_HEADER *present) in agx_ppp_update_size() argument 28 if (present->x) \ in agx_ppp_update_size() 40 if (present->region_clip) in agx_ppp_update_size() 41 size += present->viewport_count * AGX_REGION_CLIP_LENGTH; in agx_ppp_update_size() 43 if (present->viewport) { in agx_ppp_update_size() 45 (present->viewport_count * AGX_VIEWPORT_LENGTH); in agx_ppp_update_size() 55 if (present->fragment_shader) { in agx_ppp_update_size() 106 struct AGX_PPP_HEADER *present) in agx_new_ppp_update() argument 118 cfg = *present; in agx_new_ppp_update()
|
/external/pdfium/testing/resources/javascript/ |
D | document_methods.in | 92 // "Unsupported" methods are present in the document object, but not 101 // Method is present. 117 // Method is present. 126 // Method is present. 138 // Method is present. 145 // Method is present. 155 // Method is present. 166 // Method is present. 183 // Method is present. 198 // Method is present. [all …]
|
/external/libxaac/test/encoder/ |
D | impd_drc_config_params.txt | 34 #Different drc_effect values are present in impeghe_drc_uni_drc.h file with prefix EFFECT_BIT_ 48 #Different drc_effect values are present in impeghe_drc_uni_drc.h file with prefix EFFECT_BIT_ 62 #Different drc_effect values are present in impeghe_drc_uni_drc.h file with prefix EFFECT_BIT_ 76 #Different drc_effect values are present in impeghe_drc_uni_drc.h file with prefix EFFECT_BIT_ 90 #Different drc_effect values are present in impeghe_drc_uni_drc.h file with prefix EFFECT_BIT_ 104 #Different drc_effect values are present in impeghe_drc_uni_drc.h file with prefix EFFECT_BIT_ 118 #Different drc_effect values are present in impeghe_drc_uni_drc.h file with prefix EFFECT_BIT_ 132 #Different drc_effect values are present in impeghe_drc_uni_drc.h file with prefix EFFECT_BIT_
|
/external/licenseclassifier/internal/sets/ |
D | stringset.go | 24 set map[string]present 30 s.set = make(map[string]present) 40 c.set[e] = present{} 51 s.set[e] = present{} 80 intersect.set[e] = present{} 122 diff.set[e] = present{} 145 unique.set[e] = present{} 180 union.set[e] = present{}
|
/external/licenseclassifier/stringclassifier/internal/sets/ |
D | intset.go | 24 set map[int]present 30 s.set = make(map[int]present) 40 c.set[e] = present{} 50 s.set[e] = present{} 79 intersect.set[e] = present{} 121 diff.set[e] = present{} 143 unique.set[e] = present{} 179 union.set[e] = present{}
|
/external/google-cloud-java/java-securitycenter/proto-google-cloud-securitycenter-v1/src/main/proto/google/cloud/securitycenter/v1/ |
D | kernel_rootkit.proto | 32 // True when unexpected modifications of kernel code memory are present. 36 // present. 39 // True when `ftrace` points are present with callbacks pointing to regions 43 // True when `kprobe` points are present with callbacks pointing to regions 48 // code regions are present. 52 // module code regions are present. 56 // module code regions are present. 59 // True when unexpected processes in the scheduler run queue are present. Such
|
/external/googleapis/google/cloud/securitycenter/v1/ |
D | kernel_rootkit.proto | 32 // True if unexpected modifications of kernel code memory are present. 36 // present. 39 // True if `ftrace` points are present with callbacks pointing to regions 43 // True if `kprobe` points are present with callbacks pointing to regions 48 // code regions are present. 52 // module code regions are present. 56 // module code regions are present. 59 // True if unexpected processes in the scheduler run queue are present. Such
|
/external/googleapis/google/cloud/securitycenter/v2/ |
D | kernel_rootkit.proto | 32 // True if unexpected modifications of kernel code memory are present. 36 // present. 39 // True if `ftrace` points are present with callbacks pointing to regions 43 // True if `kprobe` points are present with callbacks pointing to regions 48 // code regions are present. 52 // module code regions are present. 56 // module code regions are present. 59 // True if unexpected processes in the scheduler run queue are present. Such
|
/external/cronet/stable/third_party/jni_zero/test/golden/ |
D | testStubRegistration-Final-GEN_JNI.java.golden | 90 throw new RuntimeException("Native method not present"); 93 throw new RuntimeException("Native method not present"); 96 throw new RuntimeException("Native method not present"); 99 throw new RuntimeException("Native method not present"); 102 throw new RuntimeException("Native method not present"); 105 throw new RuntimeException("Native method not present"); 108 throw new RuntimeException("Native method not present"); 111 throw new RuntimeException("Native method not present"); 114 throw new RuntimeException("Native method not present"); 117 throw new RuntimeException("Native method not present");
|
/external/cronet/tot/third_party/jni_zero/test/golden/ |
D | testStubRegistration-Final-GEN_JNI.java.golden | 90 throw new RuntimeException("Native method not present"); 93 throw new RuntimeException("Native method not present"); 96 throw new RuntimeException("Native method not present"); 99 throw new RuntimeException("Native method not present"); 102 throw new RuntimeException("Native method not present"); 105 throw new RuntimeException("Native method not present"); 108 throw new RuntimeException("Native method not present"); 111 throw new RuntimeException("Native method not present"); 114 throw new RuntimeException("Native method not present"); 117 throw new RuntimeException("Native method not present");
|
/external/chromiumos-config/test/project/fake/fake/generated/ |
D | config.jsonproto | 225 "present": 1 238 "present": 1 272 "present": 1, 278 "present": 1 282 "present": 1 322 "present": true 336 "present": 1 339 "present": 1 356 "present": 1 401 "present": 2 [all …]
|
/external/kotlinx.serialization/formats/protobuf/jvmTest/resources/ |
D | LegacyMapHolder.proto | 15 // This message was generated to support legacy map and does not present in Kotlin. 22 // This message was generated to support legacy map and does not present in Kotlin. 29 // This message was generated to support legacy map and does not present in Kotlin. 36 // This message was generated to support legacy map and does not present in Kotlin. 43 // This message was generated to support legacy map and does not present in Kotlin. 50 // This message was generated to support legacy map and does not present in Kotlin. 67 // This message was generated to support nested collection in list and does not present in Kotlin.
|
/external/iproute2/tc/ |
D | q_netem.c | 186 int present[__TCA_NETEM_MAX] = {}; in netem_parse_opt() local 213 ++present[TCA_NETEM_CORR]; in netem_parse_opt() 241 ++present[TCA_NETEM_CORR]; in netem_parse_opt() 341 present[TCA_NETEM_ECN] = 1; in netem_parse_opt() 344 present[TCA_NETEM_REORDER] = 1; in netem_parse_opt() 351 ++present[TCA_NETEM_CORR]; in netem_parse_opt() 359 present[TCA_NETEM_CORRUPT] = 1; in netem_parse_opt() 366 ++present[TCA_NETEM_CORR]; in netem_parse_opt() 400 ++present[TCA_NETEM_RATE]; in netem_parse_opt() 453 if (present[TCA_NETEM_ECN]) { in netem_parse_opt() [all …]
|
/external/chromiumos-config/proto/chromiumos/config/api/ |
D | topology.proto | 186 // If Cellular is present on system 187 Present present = 1; field 253 // If native HDMI support is present on system. 254 Present present = 1; field 335 // The number of microphones present in the lid 338 // The number of microphones present in the base 341 // Which amplifier is in use for the speakers if one is present 484 // If privacy switch is present on the camera 510 // If lid accelerometer is present on system 513 // If base accelerometer is present on system [all …]
|