HomeSort by relevance Sort by last modified time
    Searched refs:Modality (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/v8/src/
effects.h 30 enum Modality { POSSIBLE, DEFINITE };
32 Modality modality; member in struct:v8::internal::Effect
35 Effect() : modality(DEFINITE) {}
36 Effect(Bounds b, Modality m = DEFINITE) : modality(m), bounds(b) {}
49 if (e2.modality == DEFINITE) return e2;
50 return Effect(Bounds::Either(e1.bounds, e2.bounds, zone), e1.modality);
57 e1.modality == POSSIBLE ? POSSIBLE : e2.modality);
    [all...]
  /external/chromium_org/ash/wm/
immersive_fullscreen_controller_unittest.cc 102 enum Modality {
184 // Attempt to reveal the top-of-window views via |modality|.
186 void AttemptReveal(Modality modality) {
187 ASSERT_NE(modality, MODALITY_GESTURE_TAP);
188 AttemptRevealStateChange(true, modality);
191 // Attempt to unreveal the top-of-window views via |modality|. The
192 // top-of-window views can be unrevealed via any modality.
193 void AttemptUnreveal(Modality modality) {
    [all...]

Completed in 135 milliseconds