/external/guava/guava/src/com/google/common/net/ |
D | HostSpecifier.java | 75 public static HostSpecifier fromValid(String specifier) { in fromValid() argument 78 final HostAndPort parsedHost = HostAndPort.fromString(specifier); in fromValid() 118 public static HostSpecifier from(String specifier) in from() argument 121 return fromValid(specifier); in from() 128 new ParseException("Invalid host specifier: " + specifier, 0); in from() 139 public static boolean isValid(String specifier) { in isValid() argument 141 fromValid(specifier); in isValid()
|
/external/wpa_supplicant_8/src/eap_peer/ |
D | eap_gpsk.c | 33 int specifier; /* CSuite/Specifier */ member 205 data->specifier = EAP_GPSK_CIPHER_RESERVED; in eap_gpsk_select_csuite() 208 int vendor, specifier; in eap_gpsk_select_csuite() local 210 specifier = WPA_GET_BE16(csuite->specifier); in eap_gpsk_select_csuite() 212 i, vendor, specifier); in eap_gpsk_select_csuite() 214 data->specifier == EAP_GPSK_CIPHER_RESERVED && in eap_gpsk_select_csuite() 215 eap_gpsk_supported_ciphersuite(vendor, specifier) && in eap_gpsk_select_csuite() 216 (!data->forced_cipher || data->forced_cipher == specifier)) in eap_gpsk_select_csuite() 219 data->specifier = specifier; in eap_gpsk_select_csuite() 224 data->specifier == EAP_GPSK_CIPHER_RESERVED) { in eap_gpsk_select_csuite() [all …]
|
/external/wpa_supplicant_8/src/eap_common/ |
D | eap_gpsk_common.h | 41 u8 specifier[2]; member 48 int eap_gpsk_supported_ciphersuite(int vendor, int specifier); 50 int specifier, 57 int specifier, 62 size_t eap_gpsk_mic_len(int vendor, int specifier); 64 int specifier, const u8 *data, size_t len, u8 *mic);
|
D | eap_gpsk_common.c | 24 int eap_gpsk_supported_ciphersuite(int vendor, int specifier) in eap_gpsk_supported_ciphersuite() argument 27 specifier == EAP_GPSK_CIPHER_AES) in eap_gpsk_supported_ciphersuite() 31 specifier == EAP_GPSK_CIPHER_SHA256) in eap_gpsk_supported_ciphersuite() 280 int specifier, in eap_gpsk_derive_keys() argument 291 vendor, specifier); in eap_gpsk_derive_keys() 317 switch (specifier) { in eap_gpsk_derive_keys() 332 "key derivation", vendor, specifier); in eap_gpsk_derive_keys() 418 int specifier, in eap_gpsk_derive_session_id() argument 429 vendor, specifier); in eap_gpsk_derive_session_id() 461 ret = eap_gpsk_derive_mid_helper(specifier, in eap_gpsk_derive_session_id() [all …]
|
/external/clang/test/SemaObjC/ |
D | nullability.m | 38 // expected-note@-1{{use nullability type specifier '_Nonnull' to affect the innermost pointer type… 39 …nflictingMethod1; // expected-error{{nullability specifier '_Nullable' conflicts with existing spe… 40 - (nonnull NSFoo * _Nonnull)redundantMethod1; // expected-warning{{duplicate nullability specifier … 44 // expected-note@-1{{use nullability type specifier '_Nullable' to affect the innermost pointer typ… 45 …lictingProperty1; // expected-error{{nullability specifier '_Nullable' conflicts with existing spe… 46 …oo * _Nonnull redundantProperty1; // expected-warning{{duplicate nullability specifier '_Nonnull'}} 48 …lictingProperty3; // expected-error{{nullability specifier 'nullable' conflicts with existing spec… 49 …lable) NSFoo *redundantProperty3; // expected-warning{{duplicate nullability specifier 'nullable'}} 55 // expected-note@-1{{use nullability type specifier '_Nullable' to affect the innermost pointer typ… 56 …lictingProperty2; // expected-error{{nullability specifier '_Nullable' conflicts with existing spe… [all …]
|
D | override-nullability.m | 12 …pected-warning {{conflicting nullability specifier on return types, 'nullable' conflicts with exis… 13 …ected-warning {{conflicting nullability specifier on parameter types, 'nonnull' conflicts with exi…
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/geometry/ |
D | NotARotationMatrixException.java | 45 public NotARotationMatrixException(String specifier, Object ... parts) { in NotARotationMatrixException() argument 46 super(specifier, parts); in NotARotationMatrixException() 56 public NotARotationMatrixException(Localizable specifier, Object ... parts) { in NotARotationMatrixException() argument 57 super(specifier, parts); in NotARotationMatrixException()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/ |
D | IntegratorException.java | 42 public IntegratorException(final String specifier, final Object ... parts) { in IntegratorException() argument 43 super(specifier, parts); in IntegratorException() 52 public IntegratorException(final Localizable specifier, final Object ... parts) { in IntegratorException() argument 53 super(specifier, parts); in IntegratorException()
|
D | DerivativeException.java | 41 public DerivativeException(final String specifier, final Object ... parts) { in DerivativeException() argument 42 this(new DummyLocalizable(specifier), parts); in DerivativeException() 51 public DerivativeException(final Localizable specifier, final Object ... parts) { in DerivativeException() argument 52 super(specifier, parts); in DerivativeException()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/events/ |
D | EventException.java | 41 public EventException(final String specifier, final Object ... parts) { in EventException() argument 42 super(specifier, parts); in EventException() 51 public EventException(final Localizable specifier, final Object ... parts) { in EventException() argument 52 super(specifier, parts); in EventException()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/estimation/ |
D | EstimationException.java | 46 public EstimationException(String specifier, Object ... parts) { in EstimationException() argument 47 this(new DummyLocalizable(specifier), parts); in EstimationException() 57 public EstimationException(Localizable specifier, Object ... parts) { in EstimationException() argument 58 super(specifier, parts); in EstimationException()
|
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/ |
D | OptimizationException.java | 45 public OptimizationException(String specifier, Object ... parts) { in OptimizationException() argument 46 this(new DummyLocalizable(specifier), parts); in OptimizationException() 56 public OptimizationException(Localizable specifier, Object ... parts) { in OptimizationException() argument 57 super(specifier, parts); in OptimizationException()
|
/external/wpa_supplicant_8/src/eap_server/ |
D | eap_server_gpsk.c | 35 int specifier; /* CSuite/Specifier */ member 79 WPA_PUT_BE16(data->csuite_list[data->csuite_count].specifier, in eap_gpsk_init() 87 WPA_PUT_BE16(data->csuite_list[data->csuite_count].specifier, in eap_gpsk_init() 154 miclen = eap_gpsk_mic_len(data->vendor, data->specifier); in eap_gpsk_build_gpsk_3() 175 WPA_PUT_BE16(csuite->specifier, data->specifier); in eap_gpsk_build_gpsk_3() 182 data->specifier, start, pos - start, pos) < 0) in eap_gpsk_build_gpsk_3() 375 WPA_GET_BE16(csuite->specifier)); in eap_gpsk_process_gpsk_2() 380 data->specifier = WPA_GET_BE16(csuite->specifier); in eap_gpsk_process_gpsk_2() 382 data->vendor, data->specifier); in eap_gpsk_process_gpsk_2() 410 data->vendor, data->specifier, in eap_gpsk_process_gpsk_2() [all …]
|
/external/clang/test/Parser/ |
D | opencl-storage-class.cl | 5 …static int a; // expected-error {{OpenCL does not support the 'static' storage class specifier}} 6 …gister int b; // expected-error {{OpenCL does not support the 'register' storage class specifier}} 7 …extern int c; // expected-error {{OpenCL does not support the 'extern' storage class specifier}} 8 auto int d; // expected-error {{OpenCL does not support the 'auto' storage class specifier}}
|
D | check-syntax-1.m | 3 int @interface bla ; // expected-error {{cannot combine with previous 'int' declaration specifier}} 14 (void) x; // expected-error {{method type specifier must start with '-' or '+'}} 15 (int)im; // expected-error {{method type specifier must start with '-' or '+'}} \
|
/external/curl/lib/ |
D | share.c | 39 share->specifier |= (1<<CURL_LOCK_DATA_SHARE); in curl_share_init() 73 share->specifier |= (1<<type); in curl_share_setopt() 116 share->specifier &= ~(1<<type); in curl_share_setopt() 224 if(share->specifier & (1<<type)) { in Curl_share_lock() 241 if(share->specifier & (1<<type)) { in Curl_share_unlock()
|
D | share.h | 40 unsigned int specifier; member
|
/external/clang/include/clang/Basic/ |
D | DiagnosticCommonKinds.td | 71 "invalid storage class specifier in function declarator">; 109 "duplicate nullability specifier %0">, 113 "conflicting nullability specifier on return types, %0 " 114 "conflicts with existing specifier %1">, 118 "conflicting nullability specifier on parameter types, %0 " 119 "conflicts with existing specifier %1">, 123 "nullability specifier %0 conflicts with existing specifier %1">;
|
D | DiagnosticParseKinds.td | 61 "type nullability specifier %0 is a Clang extension">, 178 "'%0' qualifier may not appear after the virtual specifier '%1'">; 219 def err_expected_semi_for : Error<"expected ';' in 'for' statement specifier">; 276 "'auto' storage class specifier is not permitted in C++11, and will not " 279 "'decltype(auto)' type specifier is a C++14 extension">, InGroup<CXX14>; 281 "'decltype(auto)' type specifier is incompatible with C++ standards before " 303 "'decltype' type specifier is incompatible with C++98">, 322 "type name requires a specifier or qualifier">; 326 "type name does not allow function specifier to be specified">; 328 "type name does not allow constexpr specifier to be specified">; [all …]
|
/external/guava/guava-tests/test/com/google/common/net/ |
D | HostSpecifierTest.java | 86 private static HostSpecifier spec(String specifier) { in spec() argument 87 return HostSpecifier.fromValid(specifier); in spec()
|
/external/llvm/test/Assembler/ |
D | invalid-datalayout1.ll | 3 ; CHECK: Unknown specifier in datalayout string
|
D | invalid-datalayout10.ll | 3 ; CHECK: Expected mangling specifier in datalayout string
|
D | invalid-datalayout11.ll | 3 ; CHECK: Unexpected trailing characters after mangling specifier in datalayout string
|
/external/compiler-rt/lib/sanitizer_common/ |
D | sanitizer_common_interceptors_format.inc | 69 // Returns true if the character is an integer conversion specifier. 74 // Returns true if the character is an floating point conversion specifier. 104 // Invalid conversion specifier. 219 // Conversion specifier. 328 Report("WARNING: unexpected format specifier in scanf interceptor: " 429 // Conversion specifier. 524 Report("WARNING: unexpected format specifier in printf "
|
/external/llvm/test/MC/Disassembler/ARM/ |
D | unpredictable-UQADD8-arm.txt | 9 # DPFrm with bad reg specifier(s)
|