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

1 2 3

  /external/skia/tests/
PathOpsThreadedCommon.h 58 fState.fA = a;
59 fState.fB = b;
60 fState.fC = c;
61 fState.fD = d;
62 fState.fReporter = runner->fReporter;
68 SkASSERT(strlen(str) < sizeof(fState.fSerialNo) - 1);
69 strcpy(fState.fSerialNo, str);
70 fState.fReporter = runner->fReporter;
76 SkASSERT(strlen(str) < sizeof(fState.fSerialNo) - 1);
77 fState.fA = dirNo
    [all...]
  /external/skqp/tests/
PathOpsThreadedCommon.h 58 fState.fA = a;
59 fState.fB = b;
60 fState.fC = c;
61 fState.fD = d;
62 fState.fReporter = runner->fReporter;
68 SkASSERT(strlen(str) < sizeof(fState.fSerialNo) - 1);
69 strcpy(fState.fSerialNo, str);
70 fState.fReporter = runner->fReporter;
76 SkASSERT(strlen(str) < sizeof(fState.fSerialNo) - 1);
77 fState.fA = dirNo
    [all...]
  /external/skia/src/core/
SkDocument.cpp 12 SkDocument::SkDocument(SkWStream* stream) : fStream(stream), fState(kBetweenPages_State) {}
33 if (width <= 0 || height <= 0 || kClosed_State == fState) {
36 if (kInPage_State == fState) {
39 SkASSERT(kBetweenPages_State == fState);
40 fState = kInPage_State;
45 if (kInPage_State == fState) {
46 fState = kBetweenPages_State;
53 switch (fState) {
55 fState = kClosed_State;
74 fState = kClosed_State
    [all...]
SkDeviceLooper.h 37 SkASSERT(kDone_State != fState);
43 SkASSERT(kDone_State != fState);
81 State fState;
SkDeviceLooper.cpp 27 fState = kDone_State;
29 fState = kSimple_State;
35 fState = kComplex_State;
42 SkASSERT(kDone_State != fState);
52 SkASSERT(kDone_State != fState);
61 SkASSERT(kComplex_State == fState);
96 switch (fState) {
124 fState = kDone_State;
SkMiniRecorder.cpp 67 SkMiniRecorder::SkMiniRecorder() : fState(State::kEmpty) {}
69 if (fState != State::kEmpty) {
74 SkASSERT(fState == State::kEmpty);
78 if (fState != State::kEmpty) { return false; } \
79 fState = State::k##Type; \
100 fState = State::kEmpty; \
106 switch (fState) {
122 fState = State::kEmpty; \
128 switch (fState) {
  /external/skqp/src/core/
SkDocument.cpp 12 SkDocument::SkDocument(SkWStream* stream) : fStream(stream), fState(kBetweenPages_State) {}
33 if (width <= 0 || height <= 0 || kClosed_State == fState) {
36 if (kInPage_State == fState) {
39 SkASSERT(kBetweenPages_State == fState);
40 fState = kInPage_State;
45 if (kInPage_State == fState) {
46 fState = kBetweenPages_State;
53 switch (fState) {
55 fState = kClosed_State;
74 fState = kClosed_State
    [all...]
SkDeviceLooper.h 37 SkASSERT(kDone_State != fState);
43 SkASSERT(kDone_State != fState);
81 State fState;
SkDeviceLooper.cpp 27 fState = kDone_State;
29 fState = kSimple_State;
35 fState = kComplex_State;
42 SkASSERT(kDone_State != fState);
52 SkASSERT(kDone_State != fState);
61 SkASSERT(kComplex_State == fState);
96 switch (fState) {
124 fState = kDone_State;
SkMiniRecorder.cpp 67 SkMiniRecorder::SkMiniRecorder() : fState(State::kEmpty) {}
69 if (fState != State::kEmpty) {
74 SkASSERT(fState == State::kEmpty);
78 if (fState != State::kEmpty) { return false; } \
79 fState = State::k##Type; \
100 fState = State::kEmpty; \
106 switch (fState) {
122 fState = State::kEmpty; \
128 switch (fState) {
  /external/skia/gm/
SkAnimTimer.h 33 SkAnimTimer() : fBaseTimeNanos(0), fCurrTimeNanos(0), fState(kStopped_State) {}
38 , fState(state) {}
40 bool isStopped() const { return kStopped_State == fState; }
41 bool isRunning() const { return kRunning_State == fState; }
42 bool isPaused() const { return kPaused_State == fState; }
63 if (kRunning_State == fState) {
78 if (kRunning_State == fState) {
133 State fState;
139 fState = kStopped_State;
142 if (kRunning_State == fState) {
    [all...]
  /external/skqp/gm/
SkAnimTimer.h 33 SkAnimTimer() : fBaseTimeNanos(0), fCurrTimeNanos(0), fState(kStopped_State) {}
35 bool isStopped() const { return kStopped_State == fState; }
36 bool isRunning() const { return kRunning_State == fState; }
37 bool isPaused() const { return kPaused_State == fState; }
58 if (kRunning_State == fState) {
73 if (kRunning_State == fState) {
128 State fState;
134 fState = kStopped_State;
137 if (kRunning_State == fState) {
138 fState = kPaused_State
    [all...]
  /external/skia/include/private/
SkOnce.h 26 auto state = fState.load(std::memory_order_acquire);
33 if (state == NotStarted && fState.compare_exchange_strong(state, Claimed,
36 // Great! We'll run fn() then notify the other threads by releasing Done into fState.
38 return fState.store(Done, std::memory_order_release);
42 // We'll just spin here acquiring until it releases Done into fState.
43 while (fState.load(std::memory_order_acquire) != Done) { /*spin*/ }
48 std::atomic<uint8_t> fState{NotStarted};
  /external/skqp/include/private/
SkOnce.h 26 auto state = fState.load(std::memory_order_acquire);
33 if (state == NotStarted && fState.compare_exchange_strong(state, Claimed,
36 // Great! We'll run fn() then notify the other threads by releasing Done into fState.
38 return fState.store(Done, std::memory_order_release);
42 // We'll just spin here acquiring until it releases Done into fState.
43 while (fState.load(std::memory_order_acquire) != Done) { /*spin*/ }
48 std::atomic<uint8_t> fState{NotStarted};
  /external/skia/src/utils/
SkJSONWriter.h 54 , fState(State::kStart) {
86 SkASSERT(State::kObjectBegin == fState || State::kObjectValue == fState);
87 if (State::kObjectValue == fState) {
94 fState = State::kObjectName;
111 fState = State::kObjectBegin;
119 SkASSERT(State::kObjectBegin == fState || State::kObjectValue == fState);
120 bool emptyObject = State::kObjectBegin == fState;
143 fState = State::kArrayBegin
    [all...]
  /external/skqp/src/utils/
SkJSONWriter.h 54 , fState(State::kStart) {
86 SkASSERT(State::kObjectBegin == fState || State::kObjectValue == fState);
87 if (State::kObjectValue == fState) {
94 fState = State::kObjectName;
111 fState = State::kObjectBegin;
119 SkASSERT(State::kObjectBegin == fState || State::kObjectValue == fState);
120 bool emptyObject = State::kObjectBegin == fState;
143 fState = State::kArrayBegin
    [all...]
  /external/skia/samplecode/
SampleCowboy.cpp 25 , fState(kZoomIn)
64 switch (fState) {
113 switch (fState) {
115 fState = kScroll;
119 fState = kZoomOut;
123 fState = kZoomIn;
135 State fState;
  /external/skqp/samplecode/
SampleCowboy.cpp 25 , fState(kZoomIn)
64 switch (fState) {
113 switch (fState) {
115 fState = kScroll;
119 fState = kZoomOut;
123 fState = kZoomIn;
135 State fState;
  /external/icu/icu4c/source/common/
umutex.cpp 50 // This function is called when a test of a UInitOnce::fState reveals that
65 &uio.fState, // Destination
82 previousState = umtx_loadAcquire(uio.fState);
92 umtx_storeRelease(uio.fState, 2);
247 // This function is called when a test of a UInitOnce::fState reveals that
258 int32_t state = uio.fState;
260 umtx_storeRelease(uio.fState, 1);
264 while (uio.fState == 1) {
270 U_ASSERT(uio.fState == 2);
280 // Some threads may be racing to test the fState variable outside of the mutex
    [all...]
umutex.h 222 u_atomic_int32_t fState;
224 void reset() {fState = 0;};
225 UBool isReset() {return umtx_loadAcquire(fState) == 0;};
237 if (umtx_loadAcquire(uio.fState) == 2) {
250 if (umtx_loadAcquire(uio.fState) == 2) {
265 if (umtx_loadAcquire(uio.fState) != 2 && umtx_initImplPreInit(uio)) {
281 if (umtx_loadAcquire(uio.fState) == 2) {
296 if (umtx_loadAcquire(uio.fState) != 2 && umtx_initImplPreInit(uio)) {
  /external/skia/include/core/
SkDocument.h 206 State getState() const { return fState; }
210 State fState;
  /external/skia/include/views/
SkTouchGesture.h 43 bool isBeingTouched() { return kEmpty_State != fState; }
67 State fState;
  /external/skqp/include/core/
SkDocument.h 206 State getState() const { return fState; }
210 State fState;
  /external/skqp/include/views/
SkTouchGesture.h 43 bool isBeingTouched() { return kEmpty_State != fState; }
67 State fState;
  /external/skia/src/views/
SkTouchGesture.cpp 114 fState = kEmpty_State;
169 fState = kTranslate_State;
172 fState = kZoom_State;
210 if (kEmpty_State == fState) {
244 SkASSERT(kZoom_State == fState);
286 fState = kEmpty_State;
290 SkASSERT(kZoom_State == fState);
291 fState = kEmpty_State;
294 SkASSERT(kZoom_State == fState);
326 fState = kEmpty_State
    [all...]

Completed in 1434 milliseconds

1 2 3