/external/wpa_supplicant_8/src/wps/ |
D | wps_validate.c | 21 static int wps_validate_version(const u8 *version, int mandatory) in wps_validate_version() argument 24 if (mandatory) { in wps_validate_version() 40 static int wps_validate_version2(const u8 *version2, int mandatory) in wps_validate_version2() argument 43 if (mandatory) { in wps_validate_version2() 59 static int wps_validate_request_type(const u8 *request_type, int mandatory) in wps_validate_request_type() argument 62 if (mandatory) { in wps_validate_request_type() 78 static int wps_validate_response_type(const u8 *response_type, int mandatory) in wps_validate_response_type() argument 81 if (mandatory) { in wps_validate_response_type() 129 int mandatory) in wps_validate_config_methods() argument 134 if (mandatory) { in wps_validate_config_methods() [all …]
|
/external/webrtc/webrtc/api/objc/ |
D | RTCMediaConstraints.mm | 23 const MediaConstraintsInterface::Constraints& mandatory, 25 : mandatory_(mandatory), optional_(optional) {} 46 (NSDictionary<NSString *, NSString *> *)mandatory 50 _mandatory = [[NSDictionary alloc] initWithDictionary:mandatory 67 webrtc::MediaConstraintsInterface::Constraints mandatory = 73 new webrtc::MediaConstraints(mandatory, optional);
|
/external/tensorflow/tensorflow/compiler/xla/service/ |
D | layout_assignment.h | 51 LayoutConstraint(bool mandatory, bool dfs) in LayoutConstraint() argument 52 : mandatory_(mandatory), dfs_(dfs) {} in LayoutConstraint() 58 bool mandatory() const { return mandatory_; } in mandatory() function 75 bool mandatory, bool dfs); 96 bool mandatory, bool dfs); 169 bool mandatory = true, bool dfs = true); 172 bool mandatory = true, bool dfs = true); 179 int64 operand_no, bool mandatory = true, 187 bool mandatory = true, bool dfs = true);
|
D | layout_assignment.cc | 67 bool mandatory, bool dfs) in BufferLayoutConstraint() argument 68 : LayoutConstraint(mandatory, dfs), layout_(layout), buffer_(&buffer) { in BufferLayoutConstraint() 79 int64 operand_no, bool mandatory, bool dfs) in OperandLayoutConstraint() argument 80 : LayoutConstraint(mandatory, dfs), in OperandLayoutConstraint() 156 bool mandatory, bool dfs) { in SetBufferLayout() argument 177 if (curr_constraint.mandatory()) { in SetBufferLayout() 184 iter->second = BufferLayoutConstraint(layout, buffer, mandatory, dfs); in SetBufferLayout() 191 BufferLayoutConstraint(layout, buffer, mandatory, dfs))) in SetBufferLayout() 200 int64 operand_no, bool mandatory, in SetOperandLayout() argument 214 if (curr_shape_layout->mandatory()) { in SetOperandLayout() [all …]
|
/external/python/cpython3/Lib/test/ |
D | test___future__.py | 29 mandatory = value.getMandatoryRelease() 47 if mandatory is not None: 48 check(mandatory, "mandatory") 49 a(optional < mandatory,
|
/external/webrtc/talk/app/webrtc/ |
D | videosource.cc | 130 bool mandatory, in NewFormatWithConstraints() argument 153 if (mandatory) { in NewFormatWithConstraints() 193 bool mandatory, in FilterFormatsByConstraint() argument 201 mandatory, &(*format_it))) { in FilterFormatsByConstraint() 211 const MediaConstraintsInterface::Constraints& mandatory, in FilterFormats() argument 218 for (ConstraintsIterator constraints_it = mandatory.begin(); in FilterFormats() 219 constraints_it != mandatory.end(); ++constraints_it) in FilterFormats() 273 size_t mandatory = 0; in ExtractOption() local 275 if (FindConstraint(all_constraints, key, &value, &mandatory)) { in ExtractOption() 280 return mandatory == 0; in ExtractOption()
|
/external/webrtc/webrtc/examples/objc/AppRTCDemo/ |
D | RTCMediaConstraints+JSON.m | 15 static NSString const *kRTCMediaConstraintsMandatoryKey = @"mandatory"; 21 NSDictionary *mandatory = dictionary[kRTCMediaConstraintsMandatoryKey]; 23 [NSMutableArray arrayWithCapacity:[mandatory count]]; 24 [mandatory enumerateKeysAndObjectsUsingBlock:^(
|
/external/python/cpython2/Lib/test/ |
D | test___future__.py | 30 mandatory = value.getMandatoryRelease() 48 if mandatory is not None: 49 check(mandatory, "mandatory") 50 a(optional < mandatory,
|
/external/python/cpython2/Lib/ |
D | __future__.py | 77 self.mandatory = mandatoryRelease 95 return self.mandatory 99 self.mandatory,
|
/external/python/cpython3/Lib/ |
D | __future__.py | 83 self.mandatory = mandatoryRelease 101 return self.mandatory 105 self.mandatory,
|
/external/webrtc/talk/app/webrtc/java/src/org/webrtc/ |
D | MediaConstraints.java | 78 public final List<KeyValuePair> mandatory; field in MediaConstraints 82 mandatory = new LinkedList<KeyValuePair>(); in MediaConstraints() 98 return "mandatory: " + stringifyKeyValuePairList(mandatory) + in toString()
|
/external/protobuf/python/google/protobuf/internal/ |
D | message_factory_test.py | 60 msg.mandatory = 42 73 msg.circular_message.mandatory = 1 74 msg.circular_message.circular_message.mandatory = 2 83 msg.loop.loop.mandatory = 2 84 msg.loop.loop.loop.loop.mandatory = 4
|
/external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/ |
D | PeerConnectionClient.java | 385 videoConstraints.mandatory.add(new KeyValuePair( in createMediaConstraintsInternal() 387 videoConstraints.mandatory.add(new KeyValuePair( in createMediaConstraintsInternal() 389 videoConstraints.mandatory.add(new KeyValuePair( in createMediaConstraintsInternal() 391 videoConstraints.mandatory.add(new KeyValuePair( in createMediaConstraintsInternal() 399 videoConstraints.mandatory.add(new KeyValuePair( in createMediaConstraintsInternal() 401 videoConstraints.mandatory.add(new KeyValuePair( in createMediaConstraintsInternal() 411 audioConstraints.mandatory.add(new MediaConstraints.KeyValuePair( in createMediaConstraintsInternal() 413 audioConstraints.mandatory.add(new MediaConstraints.KeyValuePair( in createMediaConstraintsInternal() 415 audioConstraints.mandatory.add(new MediaConstraints.KeyValuePair( in createMediaConstraintsInternal() 417 audioConstraints.mandatory.add(new MediaConstraints.KeyValuePair( in createMediaConstraintsInternal() [all …]
|
/external/webrtc/talk/app/webrtc/objc/ |
D | RTCMediaConstraintsNative.cc | 37 const MediaConstraintsInterface::Constraints& mandatory, in RTCMediaConstraintsNative() argument 39 : mandatory_(mandatory), optional_(optional) {} in RTCMediaConstraintsNative()
|
D | RTCMediaConstraints.mm | 38 // TODO(hughv): Add accessors for mandatory and optional constraints. 47 - (id)initWithMandatoryConstraints:(NSArray*)mandatory 50 _mandatory = [[self class] constraintsFromArray:mandatory];
|
/external/webrtc/webrtc/api/objctests/ |
D | RTCMediaConstraintsTest.mm | 26 NSDictionary *mandatory = @{@"key1": @"value1", @"key2": @"value2"}; 30 initWithMandatoryConstraints:mandatory 37 [self expectConstraints:mandatory inNativeConstraints:nativeMandatory];
|
/external/libexif/m4m/ |
D | gp-check-popt.m4 | 5 dnl "mandatory" 14 m4_if([$1],[mandatory], [_GP_CHECK_POPT([mandatory])], 19 Valid values are: mandatory, default-enabled, default-disabled 24 m4_if([$1],[mandatory],[
|
D | gp-check-library.m4 | 22 dnl OPTIONAL-REQUIRED-ETC one of "mandatory", "default-on", "default-off" 24 dnl default: [mandatory] 37 dnl mandatory Absolute requirement, cannot be disabled. 269 dnl Abort configure script if mandatory, but not found 271 m4_if([$8],[mandatory],[ 345 m4_if([$4], [mandatory], [_GP_CHECK_LIBRARY_SYNTAX_ERROR($0)], 349 _GP_CHECK_LIBRARY([$1],[$2],[$3],[$4],[$5],[$6],[$7],[mandatory],[$9])], 356 [$8], [mandatory], [dnl 360 It must be one of "default-on", "default-off", "mandatory".
|
/external/u-boot/board/synopsys/hsdk/ |
D | env-lib.h | 27 bool mandatory; member 36 bool mandatory; member
|
D | env-lib.c | 77 if (map[index].mandatory && !set) { in env_validate_common() 104 bool mandatory = map[index].mandatory; in env_validate_core() local 112 if (cpu_used(i) && mandatory && !set) { in env_validate_core()
|
/external/libcups/cups/ |
D | ppd-cache.c | 77 *mandatory; /* Mandatory attributes */ in _cupsConvertOptions() local 139 …for (mandatory = (const char *)cupsArrayFirst(pc->mandatory); mandatory; mandatory = (const char *… in _cupsConvertOptions() 141 if (strcmp(mandatory, "copies") && in _cupsConvertOptions() 142 strcmp(mandatory, "destination-uris") && in _cupsConvertOptions() 143 strcmp(mandatory, "finishings") && in _cupsConvertOptions() 144 strcmp(mandatory, "job-account-id") && in _cupsConvertOptions() 145 strcmp(mandatory, "job-accounting-user-id") && in _cupsConvertOptions() 146 strcmp(mandatory, "job-password") && in _cupsConvertOptions() 147 strcmp(mandatory, "job-password-encryption") && in _cupsConvertOptions() 148 strcmp(mandatory, "media") && in _cupsConvertOptions() [all …]
|
/external/grpc-grpc/bazel/ |
D | generate_cc.bzl | 85 mandatory = True, 95 mandatory = False, 99 mandatory = False, 103 mandatory = False,
|
/external/libhevc/test/encoder/ |
D | vid_enc_cfg.txt | 20 --input 720p_basketballdrive.yuv /* Input yuv file {mandatory} */ 21 --output out.265 /* Output bitstream file (mandatory) */ 29 --src_width 1280 /* Input Source Width {mandatory}[320:4096] */ 30 --src_height 720 /* Input Source Height {mandatory}[128:2304] */
|
/external/wpa_supplicant_8/src/eap_server/ |
D | eap_server_peap.c | 666 int tlv_type, mandatory, tlv_len; in eap_peap_process_phase2_tlv() local 677 mandatory = !!(pos[0] & 0x80); in eap_peap_process_phase2_tlv() 702 mandatory ? " (mandatory)" : ""); in eap_peap_process_phase2_tlv() 703 if (mandatory) { in eap_peap_process_phase2_tlv() 786 int tlv_type, mandatory, tlv_len, vtlv_len; in eap_peap_process_phase2_soh() local 800 mandatory = !!(pos[0] & 0x80); in eap_peap_process_phase2_soh() 825 if (mandatory) { in eap_peap_process_phase2_soh() 833 mandatory = !!(vpos[0] & 0x80); in eap_peap_process_phase2_soh() 853 mandatory ? " (mandatory)" : ""); in eap_peap_process_phase2_soh() 854 if (mandatory) { in eap_peap_process_phase2_soh() [all …]
|
/external/ltp/testcases/network/nfsv4/locks/ |
D | README | 17 -n <num> : Number of threads to use (mandatory). 18 -f <file> : Run the test on a test file defined by the -f option (mandatory). 59 -n <num> : Number of threads to use (mandatory). 60 -f <file> : Run the test on given test file defined by the -f option (mandatory). 149 Slave type | Test operation | advisory locking | mandatory locking |
|