HomeSort by relevance Sort by last modified time
    Searched full:behavior (Results 1 - 25 of 12001) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /art/test/1902-suspend/
info.txt 1 Test basic jvmti Suspend/ResumeThread behavior
  /art/test/1909-per-agent-tls/
info.txt 1 Tests jvmti behavior of GetThreadLocalStorage with multiple threads.
  /external/e2fsprogs/tests/m_error_behavior/
expect 2 Errors behavior: Continue
4 Errors behavior: Continue
6 Errors behavior: Panic
8 Errors behavior: Remount read-only
11 Errors behavior: Continue
13 Errors behavior: Panic
15 Errors behavior: Remount read-only
18 Errors behavior: Continue
20 Errors behavior: Panic
22 Errors behavior: Remount read-onl
    [all...]
  /art/test/1929-exception-catch-exception/
info.txt 1 Test JVMTI behavior when throwing exceptions during the Exception catch Event.
  /art/test/616-cha-native/
info.txt 2 behavior on an overridden native method.
  /external/ltp/testcases/open_posix_testsuite/conformance/behavior/timers/
coverage.txt 1 This file defines the coverage for the behavior/timers section.
  /external/skia/gm/
makecolorspace.cpp 14 sk_sp<SkImage> make_raster_image(const char* path, SkTransferFunctionBehavior behavior) {
22 opts.fPremulBehavior = behavior;
28 SkTransferFunctionBehavior behavior) {
29 sk_sp<SkImage> xform = orig->makeColorSpace(colorSpace, behavior);
54 SkTransferFunctionBehavior behavior = canvas->imageInfo().colorSpace() ? variable
65 canvas->drawImage(make_color_space(opaqueImage, wideGamut, behavior), 128.0f, 0.0f);
66 canvas->drawImage(make_color_space(opaqueImage, wideGamutLinear, behavior), 256.0f, 0.0f);
68 canvas->drawImage(make_color_space(premulImage, wideGamut, behavior), 128.0f, 128.0f);
69 canvas->drawImage(make_color_space(premulImage, wideGamutLinear, behavior), 256.0f, 128.0f);
73 opaqueImage = make_raster_image("images/mandrill_128.png", behavior);
    [all...]
  /external/skqp/gm/
makecolorspace.cpp 14 sk_sp<SkImage> make_raster_image(const char* path, SkTransferFunctionBehavior behavior) {
22 opts.fPremulBehavior = behavior;
28 SkTransferFunctionBehavior behavior) {
29 sk_sp<SkImage> xform = orig->makeColorSpace(colorSpace, behavior);
54 SkTransferFunctionBehavior behavior = canvas->imageInfo().colorSpace() ? variable
65 canvas->drawImage(make_color_space(opaqueImage, wideGamut, behavior), 128.0f, 0.0f);
66 canvas->drawImage(make_color_space(opaqueImage, wideGamutLinear, behavior), 256.0f, 0.0f);
68 canvas->drawImage(make_color_space(premulImage, wideGamut, behavior), 128.0f, 128.0f);
69 canvas->drawImage(make_color_space(premulImage, wideGamutLinear, behavior), 256.0f, 128.0f);
73 opaqueImage = make_raster_image("images/mandrill_128.png", behavior);
    [all...]
  /external/jemalloc/test/integration/
xallocx.c 162 "Unexpected xallocx() behavior");
166 "Unexpected xallocx() behavior");
170 "Unexpected xallocx() behavior");
172 "Unexpected xallocx() behavior");
192 "Unexpected xallocx() behavior");
194 "Unexpected xallocx() behavior");
198 "Unexpected xallocx() behavior");
200 "Unexpected xallocx() behavior");
202 "Unexpected xallocx() behavior");
204 "Unexpected xallocx() behavior");
    [all...]
  /art/test/073-mismatched-field/
info.txt 1 Test behavior when an instance field is overlapped (through separate
  /art/test/123-compiler-regressions-mt/
info.txt 2 behavior.
  /art/test/1928-exception-event-exception/
info.txt 5 matching RI behavior. See b/65049545.
  /build/kati/testcase/
override_rule.mk 4 # The behavior for this depends on the version of GNU make. It looks
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/mq_close/
coverage.txt 8 5 WON'T - will not cover as this is undefined behavior
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_rwlockattr_getpshared/
coverage.txt 6 3 NO: since the behavior is "undefined"
  /external/python/cpython3/Lib/test/
mod_generics_cache.py 1 """Module for testing the behavior of generics across different modules."""
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
zerop-1.s 3 # matches mmixal behavior.
  /art/test/108-check-cast/
info.txt 1 This test relies on the correct behavior of instance-of to test check-cast behavior,
  /development/samples/browseable/MultiWindowPlayground/
_index.jd 10 AndroidManifest properties to define the multi-window behavior.
12 the lifecycle and behavior of the app.
  /frameworks/native/libs/input/
KeyCharacterMap.cpp 234 const Behavior* behavior; local
235 if (getKeyBehavior(keyCode, metaState, &key, &behavior)) {
236 result = behavior->character;
251 const Behavior* behavior; local
252 if (getKeyBehavior(keyCode, metaState, &key, &behavior)) {
253 if (behavior->fallbackKeyCode) {
254 outFallbackAction->keyCode = behavior->fallbackKeyCode;
255 outFallbackAction->metaState = metaState & ~behavior->metaState
368 const Behavior* behavior; local
417 const Behavior* behavior = key->firstBehavior; local
638 Behavior* behavior = new Behavior(); local
695 Behavior* behavior = firstBehavior; local
976 Behavior behavior; local
    [all...]
  /external/clang/test/SemaObjC/
objc-literal-comparison.m 39 if (obj == @"") return; // expected-warning{{direct comparison of a string literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
40 if (obj != @"") return; // expected-warning{{direct comparison of a string literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
41 if (@"" == obj) return; // expected-warning{{direct comparison of a string literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
42 if (@"" == @"") return; // expected-warning{{direct comparison of a string literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
44 if (@[] == obj) return; // expected-warning{{direct comparison of an array literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
45 if (@{} == obj) return; // expected-warning{{direct comparison of a dictionary literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
46 if (@12 == obj) return; // expected-warning{{direct comparison of a numeric literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
47 if (@1.0 == obj) return; // expected-warning{{direct comparison of a numeric literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
48 if (@__objc_yes == obj) return; // expected-warning{{direct comparison of a numeric literal has undefined behavior}} expected-note{{use 'isEqual:' instead}}
49 if (@(1+1) == obj) return; // expected-warning{{direct comparison of a boxed expression has undefined behavior}} expected-note{{use 'isEqual:' instead}
    [all...]
  /external/mockito/src/main/java/org/mockito/internal/invocation/
RealMethod.java 48 private final InvocationFactory.RealMethodBehavior<?> behavior; field in class:RealMethod.FromBehavior
50 FromBehavior(InvocationFactory.RealMethodBehavior<?> behavior) {
51 this.behavior = behavior;
62 return behavior.call();
  /external/autotest/client/site_tests/policy_EditBookmarksEnabled/
control.false_disable 15 Verify effects of EditBookmarksEnabled policy on client behavior & appearance.
17 This test case verifies the behavior and appearance of Chrome OS when the
21 to add a new bookmark. It shall fail if that behavior is not enforced.
control.notset_enable 15 Verify effects of EditBookmarksEnabled policy on client behavior & appearance.
17 This test case verifies the behavior and appearance of Chrome OS when the
21 new bookmark. It shall fail if that behavior is not enforced.
control.true_enable 15 Verify effects of EditBookmarksEnabled policy on client behavior & appearance.
17 This test case verifies the behavior and appearance of Chrome OS when the
21 new bookmark. It shall fail if that behavior is not enforced.

Completed in 966 milliseconds

1 2 3 4 5 6 7 8 91011>>