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 53 enum Modality { POSSIBLE, DEFINITE };
55 Modality modality; member in struct:v8::internal::Effect
58 Effect() : modality(DEFINITE) {}
59 Effect(Bounds b, Modality m = DEFINITE) : modality(m), bounds(b) {}
72 if (e2.modality == DEFINITE) return e2;
73 return Effect(Bounds::Either(e1.bounds, e2.bounds, isolate), e1.modality);
80 e1.modality == POSSIBLE ? POSSIBLE : e2.modality);
    [all...]
  /external/chromium_org/ash/wm/
immersive_fullscreen_controller_unittest.cc 85 enum Modality {
153 // Attempt to reveal the top-of-window views via |modality|.
155 void AttemptReveal(Modality modality) {
156 ASSERT_NE(modality, MODALITY_TOUCH);
157 AttemptRevealStateChange(true, modality);
160 // Attempt to unreveal the top-of-window views via |modality|. The
161 // top-of-window views can be unrevealed via any modality.
162 void AttemptUnreveal(Modality modality) {
    [all...]

Completed in 173 milliseconds