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

1 2 3 4 5 6 7 8 9

  /external/easymock/src/org/easymock/internal/
ReplayState.java 28 private final IMocksBehavior behavior; field in class:ReplayState
32 public ReplayState(IMocksBehavior behavior) {
33 this.behavior = behavior;
38 behavior.checkThreadSafety();
40 if (behavior.isThreadSafe()) {
57 Result result = behavior.addActual(invocation);
72 behavior.verify();
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...]
MocksControl.java 30 private IMocksBehavior behavior; field in class:MocksControl
74 behavior = new MocksBehavior(type == MockType.NICE);
75 behavior.checkOrder(type == MockType.STRICT);
76 state = new RecordState(behavior);
98 state = new ReplayState(behavior);
  /build/kati/testcase/
override_rule.mk 4 # The behavior for this depends on the version of GNU make. It looks
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-avr/
norelax_diff.d 1 #name: AVR No change in behavior without relaxation
  /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
973 Behavior behavior; local
    [all...]
  /external/chromium-trace/catapult/third_party/coverage/coverage/
test_helpers.py 203 # the temp directory. This will stop the test behavior checker from
306 """Called at process exit to report on class behavior."""
307 for test_class, behavior in cls.class_behaviors.items():
309 if behavior.tests <= behavior.skipped:
311 elif behavior.temp_dir and behavior.tests_making_files == 0:
312 if not behavior.no_files_ok:
314 elif not behavior.temp_dir and behavior.tests_making_files > 0
    [all...]
  /frameworks/support/design/tests/src/android/support/design/widget/
BottomSheetDialogTest.java 66 BottomSheetBehavior<FrameLayout> behavior = BottomSheetBehavior.from(bottomSheet);
67 assertThat(behavior, is(notNullValue()));
107 BottomSheetBehavior<FrameLayout> behavior = BottomSheetBehavior.from(bottomSheet);
110 assertThat(behavior, is(notNullValue()));
112 assertThat(bottomSheet.getHeight(), is(lessThan(behavior.getPeekHeight())));
BottomSheetBehaviorTest.java 70 public Callback(BottomSheetBehavior behavior) {
71 behavior.setBottomSheetCallback(this);
72 int state = behavior.getState();
163 BottomSheetBehavior behavior = BottomSheetBehavior.from(view); local
221 BottomSheetBehavior behavior = getBehavior(); local
222 assertThat(behavior.getState(), is(BottomSheetBehavior.STATE_COLLAPSED));
226 is(coordinatorLayout.getHeight() - behavior.getPeekHeight()));
274 BottomSheetBehavior behavior = getBehavior();
279 view.getHeight() - behavior.getPeekHeight()};
335 BottomSheetBehavior behavior = getBehavior()
412 final BottomSheetBehavior behavior = getBehavior(); local
    [all...]
  /external/clang/test/Sema/
PR16678.c 58 * in its suffix; otherwise, the behavior is undefined. See 2.13.1 [lex.icon]
61 // expected-warning@39 {{integer literal is too large to be represented in type 'long' and is subject to undefined behavior under C++98, interpreting as 'unsigned long'; this literal will have type 'long long' in C++11 onwards}}
94 * in its suffix; otherwise, the behavior is undefined. See 2.13.1 [lex.icon]
97 // expected-warning@74 {{integer literal is too large to be represented in type 'long' and is subject to undefined behavior under C++98, interpreting as 'unsigned long'; this literal will be ill-formed in C++11 onwards}}
152 #error Unexpected signedness or conversion behavior
  /external/skia/src/sfnt/
SkOTTable_gasp.h 32 union behavior { union in struct:SkOTTableGridAndScanProcedure::GaspRange
  /external/mesa3d/src/glsl/
glsl_parser_extras.cpp 252 * when the shader requests "warn" behavior for this extension.
261 void set_flags(_mesa_glsl_parse_state *state, ext_behavior behavior) const;
349 * given behavior for this extension.
352 ext_behavior behavior) const
358 state->*(this->enable_flag) = (behavior != extension_disable);
359 state->*(this->warn_flag) = (behavior == extension_warn);
382 ext_behavior behavior; local
384 behavior = extension_warn;
386 behavior = extension_require;
388 behavior = extension_enable
    [all...]
  /frameworks/av/media/libeffects/testlibs/
AudioFormatAdapter.h 29 // buffer override behavior to arbitrary sample formats and buffer behaviors.
36 // overwrite behavior.
58 // behavior The desired behavior (overwrite or accumulate).
60 uint32_t behavior) {
64 mBehavior = behavior;
113 // The desired buffer behavior.
142 // output buffer, converting to the desired format and buffer behavior.
  /frameworks/base/media/java/android/media/audiopolicy/
AudioPolicy.java 73 * The behavior of a policy with regards to audio focus where it relies on the application
74 * to do the ducking, the is the legacy and default behavior.
80 * The behavior of a policy with regards to audio focus where it handles ducking instead
265 * Returns the current behavior for audio focus-related ducking.
276 * Sets the behavior for audio focus-related ducking.
278 * @param behavior {@link #FOCUS_POLICY_DUCKING_IN_APP} or
286 public int setFocusDuckingBehavior(int behavior)
288 if ((behavior != FOCUS_POLICY_DUCKING_IN_APP)
289 && (behavior != FOCUS_POLICY_DUCKING_IN_POLICY)) {
290 throw new IllegalArgumentException("Invalid ducking behavior " + behavior)
    [all...]
  /external/libunwind/doc/
unw_destroy_addr_space.tex 25 undefined behavior (e.g., the application may crash).
  /external/selinux/checkpolicy/
policy_define.h 36 int define_fs_use(int behavior);
  /external/deqp/modules/gles2/functional/
es2fFlushFinishTests.cpp 402 const ExpectedBehavior behavior = ndx == 0 ? m_waitBehavior : m_readBehavior;
404 const bool isOk = behavior == EXPECT_COEF_GREATER_THAN ? coef > threshold :
405 behavior == EXPECT_COEF_LESS_THAN ? coef < threshold : false;
406 const char* cmpName = behavior == EXPECT_COEF_GREATER_THAN ? "greater than" :
407 behavior == EXPECT_COEF_LESS_THAN ? "less than" : DE_NULL;
417 allOk ? "Pass" : "Suspicious performance behavior");
  /external/v8/src/js/
runtime.js 134 // choice is made simply to preserve the previous behavior so that we don't
135 // have a three-step upgrade: old behavior, unspecified intermediate behavior,
  /frameworks/support/design/src/android/support/design/widget/
Snackbar.java 446 // If our LayoutParams are from a CoordinatorLayout, we'll setup our Behavior
448 final Behavior behavior = new Behavior(); local
449 behavior.setStartAlphaSwipeDistance(0.1f);
450 behavior.setEndAlphaSwipeDistance(0.6f);
451 behavior.setSwipeDirection(SwipeDismissBehavior.SWIPE_DIRECTION_START_TO_END);
452 behavior.setListener(new SwipeDismissBehavior.OnDismissListener() {
474 ((CoordinatorLayout.LayoutParams) lp).setBehavior(behavior);
826 final class Behavior extends SwipeDismissBehavior<SnackbarLayout>
    [all...]
  /external/selinux/libsepol/include/sepol/policydb/
services.h 220 unsigned int *behavior, /* OUT */
226 * fixed labeling behavior like transition SIDs or task SIDs.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
fscontext.py 154 return self._ruletype_to_text[self.qpol_symbol.behavior(self.policy)]
  /cts/tests/tests/os/jni/
Android.mk 48 # This define controls the behavior of OSFeatures.needsSeccompSupport().
  /external/chromium-trace/catapult/third_party/flot/
CONTRIBUTING.md 9 behavior but are not 100% certain that it is a bug, please try posting to the
  /external/dbus/test/name-test/
tmp-session-like-system.conf 12 the behavior of child processes. -->
  /external/v8/test/mjsunit/
with-prototype.js 28 // Test the behavior of an assignment in a with statement where the

Completed in 931 milliseconds

1 2 3 4 5 6 7 8 9