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

1 2 3 4 56 7 8 91011>>

  /external/selinux/python/sepolicy/sepolicy/help/
system_relabel.txt 4 You can toggle this behavior using this screen.
  /external/swiftshader/third_party/LLVM/test/Integer/
unreachable_bt.ll 9 define i9 @foo() { ;; Calling this function has undefined behavior
  /libcore/support/src/test/java/tests/http/
SocketPolicy.java 26 * behavior.
32 * behavior.
55 * behavior.
61 * behavior.
  /packages/apps/Camera2/src_pd/com/android/camera/stats/
CaptureStats.java 6 * Simple statistics of internal app behavior during capture.
  /prebuilts/go/darwin-x86/test/fixedbugs/
issue7419.go 7 // Issue 7419: odd behavior for float constants underflowing to 0
  /prebuilts/go/linux-x86/test/fixedbugs/
issue7419.go 7 // Issue 7419: odd behavior for float constants underflowing to 0
  /external/clang/test/Sema/
warn-extern-main.c 12 int main; // expected-warning{{variable named 'main' with external linkage has undefined behavior}}
15 extern int main; // expected-warning{{variable named 'main' with external linkage has undefined behavior}}
25 extern int main; // expected-warning{{variable named 'main' with external linkage has undefined behavior}}
format-strings-gnu.c 20 // expected-warning@-4 {{length modifier 'L' results in undefined behavior or no effect with 'd' conversion specifier}}
23 // expected-warning@-6 {{length modifier 'L' results in undefined behavior or no effect with 'd' conversion specifier}}
34 printf("%Lc", 'a'); // expected-warning {{length modifier 'L' results in undefined behavior or no effect with 'c' conversion specifier}}
35 printf("%Ls", "a"); // expected-warning {{length modifier 'L' results in undefined behavior or no effect with 's' conversion specifier}}
47 printf("%Ls", "hello"); // expected-warning {{length modifier 'L' results in undefined behavior or no effect with 's' conversion specifier}}
57 scanf("%Ls", "hello"); // expected-warning {{length modifier 'L' results in undefined behavior or no effect with 's' conversion specifier}}
  /external/junit/src/main/java/org/junit/validator/
AnnotationValidator.java 28 * @return A list of exceptions. Default behavior is to return an empty list.
40 * @return A list of exceptions. Default behavior is to return an empty list.
53 * @return A list of exceptions. Default behavior is to return an empty list.
  /external/selinux/libselinux/man/man3/
getfscreatecon.3 24 set by the program (i.e. using the default policy behavior).
30 to reset to the default policy behavior.
50 save, reset, and restore the fscreate context to avoid unexpected behavior.
getkeycreatecon.3 24 set by the program (i.e. using the default policy behavior).
30 to reset to the default policy behavior.
50 save, reset, and restore the keycreate context to avoid unexpected behavior.
getsockcreatecon.3 24 set by the program (i.e. using the default policy behavior).
30 to reset to the default policy behavior.
50 save, reset, and restore the sockcreate context to avoid unexpected behavior.
  /frameworks/support/coordinatorlayout/src/androidTest/java/androidx/coordinatorlayout/custom/
TestFloatingBehavior.java 25 public class TestFloatingBehavior extends CoordinatorLayout.Behavior<TextView> {
26 // Default constructor is needed to instantiate a Behavior object when it is attached
31 // This constructor is needed to instantiate a Behavior object when it is attached to a
  /frameworks/support/coordinatorlayout/src/main/java/androidx/coordinatorlayout/widget/
CoordinatorLayout.java 90 * <p>By specifying {@link Behavior Behaviors} for child views of a
92 * views can also interact with one another. View classes can specify a default behavior when
136 static final ThreadLocal<Map<String, Constructor<Behavior>>> sConstructors =
378 * Reset all Behavior-related tracking records either to clean up or in preparation
388 final Behavior b = lp.getBehavior();
447 final Behavior b = lp.getBehavior();
491 // when the behavior first started blocking things below this point.
531 final Behavior b = lp.getBehavior();
587 static Behavior parseBehavior(Context context, AttributeSet attrs, String name) {
600 // Assume stock behavior in this package (if we have one
886 final Behavior behavior = lp.getBehavior(); local
1391 final Behavior behavior = lp.getBehavior(); local
3198 final Behavior behavior = lp.getBehavior(); local
    [all...]
  /external/easymock/src/org/easymock/internal/
RecordState.java 37 private final IMocksBehavior behavior; field in class:RecordState
66 public RecordState(IMocksBehavior behavior) {
67 this.behavior = behavior;
137 behavior.addStub(lastInvocation, Result.createReturnResult(value));
149 behavior.addStub(
156 requireMethodCall("stub behavior");
158 behavior.addStub(lastInvocation, Result.createReturnResult(null));
166 behavior.addStub(
178 behavior.addStub(lastInvocation, Result.createThrowResult(throwable));
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Include/Library/
Tpm12CommandLib.h 26 @retval EFI_DEVICE_ERROR Unexpected device behavior.
38 @retval EFI_DEVICE_ERROR Unexpected device behavior.
50 @retval EFI_DEVICE_ERROR Unexpected device behavior.
92 @retval EFI_DEVICE_ERROR Unexpected device behavior.
110 @retval EFI_DEVICE_ERROR Unexpected device behavior.
130 @retval EFI_DEVICE_ERROR Unexpected device behavior.
151 @retval EFI_DEVICE_ERROR Unexpected device behavior.
170 @retval EFI_DEVICE_ERROR Unexpected device behavior.
185 @retval EFI_DEVICE_ERROR Unexpected device behavior.
202 @retval EFI_DEVICE_ERROR Unexpected device behavior.
    [all...]
  /external/mockito/src/main/java/org/mockito/quality/
Strictness.java 23 * How strictness level influences the behavior of the test (mocking session)?
25 * <li>{@link Strictness#LENIENT} - no added behavior.
31 * The default behavior of Mockito 2.x when {@link JUnitRule} or {@link MockitoJUnitRunner} are used.</li>
45 * No extra strictness. Mockito 1.x behavior.
58 * Default Mockito 2.x behavior.
74 * Adds following behavior:
  /device/linaro/bootloader/edk2/PerformancePkg/Library/TscTimerLib/
BaseTscTimerLib.c 14 The specific processor configuration determines the behavior. Constant TSC behavior ensures that the
16 the processor core changes frequency. This is the architectural behavior moving forward.
  /external/mockito/src/test/java/org/mockitousage/misuse/
RestrictedObjectMethodsTest.java 43 //because it leads to really weird behavior sometimes
51 //because it leads to really weird behavior sometimes
59 //because it leads to really weird behavior sometimes
  /art/runtime/interpreter/
safe_math.h 32 // Perform signed arithmetic Op on 'a' and 'b' with defined wrapping behavior.
44 // Perform signed a signed add on 'a' and 'b' with defined wrapping behavior.
50 // Perform signed a signed substract on 'a' and 'b' with defined wrapping behavior.
56 // Perform signed a signed multiply on 'a' and 'b' with defined wrapping behavior.
  /art/test/064-field-access/
info.txt 9 This exercises the various failure modes to ensure that behavior is
  /development/samples/browseable/AutoBackupForApps/
_index.jd 12 This sample can also be used as a utility to test the behavior of the Automatic Backup feature.
  /external/autotest/client/site_tests/cellular_DeferredRegistration/
cellular_DeferredRegistration.py 45 logging.info('Verifying temporary loss of registration behavior')
56 'behavior')
60 logging.info('Verifying permanent loss of registration behavior')
68 'behavior')
  /external/autotest/client/site_tests/network_DhcpNegotiationSuccess/
control 14 bad behavior from the server.
  /external/autotest/client/site_tests/policy_NotificationsAllowedForUrls/
control.notset_block 16 This test case verifies the behavior and appearance of Chrome OS when the

Completed in 757 milliseconds

1 2 3 4 56 7 8 91011>>