HomeSort by relevance Sort by last modified time
    Searched full:mismatch (Results 876 - 900 of 4810) sorted by null

<<31323334353637383940>>

  /packages/apps/Nfc/src/com/android/nfc/cardemulation/
RegisteredServicesCache.java 461 Log.e(TAG, "UID mismatch.");
501 Log.e(TAG, "UID mismatch");
521 Log.e(TAG, "UID mismatch");
  /packages/apps/TV/src/com/android/tv/parental/
ContentRatingsParser.java 245 "Malformed XML: Tag mismatch for " + TAG_RATING_SYSTEM_DEFINITION);
323 checkVersion("Malformed XML: Tag mismatch for " + TAG_RATING_DEFINITION);
406 "Malformed XML: Tag mismatch for " + TAG_RATING_ORDER);
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/detail/
func_integer.inl 110 GLM_STATIC_ASSERT(sizeof(uint) == sizeof(uint32), "uint and uint32 size mismatch");
171 GLM_STATIC_ASSERT(sizeof(uint) == sizeof(uint32), "uint and uint32 size mismatch");
232 GLM_STATIC_ASSERT(sizeof(int) == sizeof(int32), "int and int32 size mismatch");
  /prebuilts/vndk/v27/arm/arch-arm-armv7-a-neon/shared/vndk-sp/
libRSDriver.so 
  /prebuilts/vndk/v27/arm64/arch-arm-armv7-a-neon/shared/vndk-sp/
libRSDriver.so 
  /prebuilts/vndk/v27/x86/arch-x86-x86/shared/vndk-core/
libnl.so 
  /prebuilts/vndk/v27/x86_64/arch-x86-x86_64/shared/vndk-core/
libnl.so 
  /cts/tests/tests/media/libmediandkjni/
native-media-jni.cpp 889 ALOGE("numsubsamples mismatch");
895 ALOGE("key mismatch");
900 ALOGE("IV mismatch");
904 ALOGE("mode mismatch");
910 ALOGE("clear size mismatch");
915 ALOGE("encrypted size mismatch");
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
BaseRecognizer.as 59 * plain mismatch(), which does not recover. Then any error
122 /** Factor out what to do upon token mismatch so tree parsers can behave
128 protected function mismatch(input:IntStream, ttype:int, follow:BitSet):void
495 * token mismatch. Upon token mismatch, if LA(1) is member of
600 // TODO do single token deletion like above for Token mismatch
  /external/deqp/modules/gles3/functional/
es3fShaderPackingFunctionTests.cpp 222 m_testCtx.getLog() << TestLog::Message << "ERROR: Mismatch in value " << valNdx
311 m_testCtx.getLog() << TestLog::Message << "ERROR: Mismatch in value " << valNdx << ",\n"
413 m_testCtx.getLog() << TestLog::Message << "ERROR: Mismatch in value " << valNdx
502 m_testCtx.getLog() << TestLog::Message << "ERROR: Mismatch in value " << valNdx << ",\n"
609 m_testCtx.getLog() << TestLog::Message << "ERROR: Mismatch in value " << valNdx
718 m_testCtx.getLog() << TestLog::Message << "ERROR: Mismatch in value " << valNdx << ",\n"
  /external/skia/gm/
gradients.cpp     [all...]
  /external/skqp/gm/
gradients.cpp     [all...]
  /cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
PkgInstallSignatureVerificationTest.java 290 "v2-only-with-rsa-pkcs1-sha512-4096-digest-mismatch.apk", error);
295 "v2-only-with-ecdsa-sha256-p256-digest-mismatch.apk", error);
318 assertInstallFails("v2-only-apk-sig-block-size-mismatch.apk");
346 "v2-only-signatures-and-digests-block-mismatch.apk",
355 "v2-only-cert-and-public-key-mismatch.apk",
356 "Public key mismatch between certificate and signature record");
429 // a mismatch with the serialized form stored in the PackageManager database, leading to the
462 // certificate, creating a mismatch with the serialized form stored in the PackageManager
    [all...]
  /device/google/contexthub/firmware/build/
config.mk 213 # returns empty string on mismatch
226 $(error $(LOCAL_PATH): Recursive variant list mismatch: "$(AUX_RECURSIVE_VARIANT_LIST)" and "$(1))),\
  /device/linaro/bootloader/arm-trusted-firmware/plat/nvidia/tegra/soc/t186/drivers/mce/
mce.c 514 ERROR("ARI major version mismatch\n");
519 ERROR("ARI minor version mismatch\n");
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
texcheck.py 17 -m Munge parenthesis and brackets. [0,n) would normally mismatch.
68 print "\nDelimiter mismatch. On line %d, encountered closing '%s' without corresponding open" % (c_lineno, c_symbol)
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/VarCheckPcdLib/
VarCheckPcdLibNullClass.c 125 DEBUG ((EFI_D_INFO, "VarCheckPcdValidData fail: ValidList mismatch (0x%lx)\n", OneData));
145 DEBUG ((EFI_D_INFO, "VarCheckPcdValidData fail: ValidRange mismatch (0x%lx)\n", OneData));
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/RegularExpressionDxe/Oniguruma/
regerror.c 57 p = "mismatch"; break;
133 p = "mismatch multibyte code length in char-class range"; break;
  /external/clang/include/clang/Basic/
DiagnosticFrontendKinds.td 178 "module file %0 cannot be loaded due to a configuration mismatch with the current "
179 "compilation">, InGroup<DiagGroup<"module-file-config-mismatch">>, DefaultError;
  /external/clang/test/SemaCXX/
pass-object-size.cpp 30 int (*F)(void *) = &Statics::OvlFoo; //expected-error{{address of overloaded function 'OvlFoo' does not match required type 'int (void *)'}} expected-note@11{{candidate address cannot be taken because parameter 1 has pass_object_size attribute}} expected-note@13{{candidate function has type mismatch at 1st parameter (expected 'void *' but has 'double *')}}
45 A = &Statics::OvlFoo; //expected-error{{assigning to 'int (*)(void *)' from incompatible type '<overloaded function type>'}} expected-note@11{{candidate address cannot be taken because parameter 1 has pass_object_size attribute}} expected-note@13{{candidate function has type mismatch at 1st parameter (expected 'void *' but has 'double *')}}
  /external/curl/docs/cmdline-opts/
page-footer 227 RTSP: mismatch of CSeq numbers
229 RTSP: mismatch of Session Identifiers
  /external/elfutils/libdwfl/
find-debuginfo.c 116 /* A mismatch! */
144 /* A mismatch! */
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DateFormatRoundTripTest.java 207 errln("FAIL: String mismatch after match");
218 errln("FAIL: Date mismatch after match");
  /external/icu/icu4c/source/common/unicode/
ubiditransform.h 46 * mismatch, this corresponds to the <code>UBiDi</code> implementation with the
53 * shaping, and - if the input/output base directions mismatch - string
  /external/icu/icu4c/source/i18n/
rbt_rule.h 258 * degree of match may be mismatch, a partial match, or a full
259 * match. A mismatch means at least one character of the text

Completed in 1887 milliseconds

<<31323334353637383940>>