HomeSort by relevance Sort by last modified time
    Searched full:checkstate (Results 1 - 25 of 29) sorted by null

1 2

  /frameworks/base/core/java/com/android/internal/nfc/
P2pTarget.java 56 public void checkState() throws NfcException {
81 checkState();
111 checkState();
131 checkState();
  /external/skia/include/views/
SkWidgetViews.h 130 enum CheckState {
135 CheckState getCheckState() const { return (CheckState)fCheckState; }
136 void setCheckState(CheckState);
138 /** use this to extract the CheckState from an event (i.e. one that as posted
143 static bool GetWidgetEventCheckState(const SkEvent&, CheckState* state);
147 virtual void onCheckStateChange(CheckState oldState, CheckState newState);
  /external/skia/src/core/
SkBitmapProcState_shaderproc.h 10 SkDEBUGCODE(CHECKSTATE(s);)
73 #undef CHECKSTATE
SkBitmapProcState.cpp 85 #define CHECKSTATE(state) SkASSERT(state.fBitmap->config() == SkBitmap::kARGB_8888_Config); \
97 #define CHECKSTATE(state) SkASSERT(state.fBitmap->config() == SkBitmap::kARGB_8888_Config); \
116 #define CHECKSTATE(state) SkASSERT(state.fBitmap->config() == SkBitmap::kRGB_565_Config); \
132 #define CHECKSTATE(state) SkASSERT(state.fBitmap->config() == SkBitmap::kRGB_565_Config); \
147 #define CHECKSTATE(state) SkASSERT(state.fBitmap->config() == SkBitmap::kIndex8_Config); \
161 #define CHECKSTATE(state) SkASSERT(state.fBitmap->config() == SkBitmap::kIndex8_Config); \
178 #define CHECKSTATE(state) SkASSERT(state.fBitmap->config() == SkBitmap::kARGB_4444_Config); \
194 #define CHECKSTATE(state) SkASSERT(state.fBitmap->config() == SkBitmap::kARGB_4444_Config); \
213 #define CHECKSTATE(state) SkASSERT(state.fBitmap->config() == SkBitmap::kA8_Config); \
239 #define CHECKSTATE(state) SkASSERT(state.fBitmap->config() == SkBitmap::kARGB_8888_Config);
    [all...]
SkBitmapProcState_sample.h 24 SkDEBUGCODE(CHECKSTATE(s);)
67 SkDEBUGCODE(CHECKSTATE(s);)
121 SkDEBUGCODE(CHECKSTATE(s);)
167 SkDEBUGCODE(CHECKSTATE(s);)
209 #undef CHECKSTATE
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
PortFieldEditor.java 52 protected boolean checkState() {
53 if (super.checkState() == false) {
  /dalvik/libdex/
DexSwapVerify.c 70 typedef struct CheckState {
86 } CheckState;
91 static inline u4 fileOffset(const CheckState* state, const void* ptr) {
98 static inline void* filePointer(const CheckState* state, u4 offset) {
110 static inline bool checkPtrRange(const CheckState* state,
130 * Assumes "const CheckState* state".
149 * Assumes "const CheckState* state".
160 * Assumes "const CheckState* state" and "typeof(_count) == typeof(_elemSize)"
178 * Assumes "const CheckState* state".
232 static bool verifyFieldDefiner(const CheckState* state, u4 definingClass
    [all...]
  /external/skia/src/views/
SkWidgetViews.cpp 205 void SkCheckButtonView::setCheckState(CheckState state)
216 /*virtual*/ void SkCheckButtonView::onCheckStateChange(CheckState oldState, CheckState newState)
227 this->setCheckState((CheckState)index);
240 bool SkCheckButtonView::GetWidgetEventCheckState(const SkEvent& evt, CheckState* state)
247 *state = (CheckState)state32;
  /libcore/luni/src/main/java/java/util/prefs/
AbstractPreferences.java 195 checkState();
356 checkState();
381 checkState();
390 checkState();
413 checkState();
518 checkState();
532 checkState();
638 checkState();
642 private void checkState() {
657 checkState();
    [all...]
  /external/guava/src/com/google/common/collect/
AbstractBiMap.java 22 import static com.google.common.base.Preconditions.checkState;
72 checkState(delegate == null);
73 checkState(inverse == null);
202 checkState(entry != null);
309 checkState(contains(this), "entry no longer in map");
317 checkState(Objects.equal(value, get(getKey())),
326 checkState(entry != null);
AbstractMapBasedMultiset.java 22 import static com.google.common.base.Preconditions.checkState;
128 checkState(toRemove != null,
212 checkState(canRemove,
369 checkState(toRemove != null,
AbstractIterator.java 20 import static com.google.common.base.Preconditions.checkState;
123 checkState(state != State.FAILED);
AbstractMultiset.java 32 import static com.google.common.base.Preconditions.checkState;
108 checkState(canRemove,
LinkedListMultimap.java 23 import static com.google.common.base.Preconditions.checkState;
287 checkState(current != null);
312 checkState(current != null);
393 checkState(current != null);
405 checkState(current != null);
Iterators.java 39 import static com.google.common.base.Preconditions.checkState;
393 checkState(removeFrom != null,
519 checkState(removeFrom != null,
972 checkState(!hasPeeked, "Can't remove after you've peeked at next");
    [all...]
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/spritetext/
LabelMaker.java 122 checkState(STATE_INITIALIZED, STATE_ADDING);
176 checkState(STATE_ADDING, STATE_ADDING);
264 checkState(STATE_ADDING, STATE_INITIALIZED);
313 checkState(STATE_INITIALIZED, STATE_DRAWING);
340 checkState(STATE_DRAWING, STATE_DRAWING);
355 checkState(STATE_DRAWING, STATE_INITIALIZED);
363 private void checkState(int oldState, int newState) {
  /external/guava/src/com/google/common/util/concurrent/
AbstractService.java 20 import static com.google.common.base.Preconditions.checkState;
258 checkState(this.result == null);
265 checkState(result == null);
  /external/guava/javadoc/com/google/common/base/
Preconditions.html 288 <TD><CODE><B><A HREF="../../../../com/google/common/base/Preconditions.html#checkState(boolean)">checkState</A></B>(boolean&nbsp;expression)</CODE>
297 <TD><CODE><B><A HREF="../../../../com/google/common/base/Preconditions.html#checkState(boolean, java.lang.Object)">checkState</A></B>(boolean&nbsp;expression,
307 <TD><CODE><B><A HREF="../../../../com/google/common/base/Preconditions.html#checkState(boolean, java.lang.String, java.lang.Object...)">checkState</A></B>(boolean&nbsp;expression,
399 <A NAME="checkState(boolean)"><!-- --></A><H3>
400 checkState</H3>
402 public static void <B>checkState</B>(boolean&nbsp;expression)</PRE>
415 <A NAME="checkState(boolean, java.lang.Object)"><!-- --></A><H3
    [all...]
  /frameworks/base/media/java/android/media/audiofx/
AudioEffect.java 394 checkState("getDescriptor()");
430 checkState("setEnabled()");
453 checkState("setParameter()");
587 checkState("getParameter()");
748 checkState("command()");
776 checkState("getId()");
787 checkState("getEnabled()");
799 checkState("hasControl()");
    [all...]
  /external/guava/src/com/google/common/base/
Preconditions.java 124 public static void checkState(boolean expression) {
139 public static void checkState(boolean expression, Object errorMessage) {
164 public static void checkState(boolean expression,
Splitter.java 21 import static com.google.common.base.Preconditions.checkState;
422 checkState(state != State.FAILED);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
cache.h 106 const S *CheckState(StateId s) const {
208 const S *state = CheckState(s);
219 const S *state = CheckState(s);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/preferences/
BuildPreferencePage.java 119 protected boolean checkState() {
  /libcore/luni/src/main/java/javax/security/auth/
Subject.java 510 private void checkState() {
598 checkState();
765 checkState();
  /frameworks/base/core/java/android/widget/
ListView.java     [all...]

Completed in 408 milliseconds

1 2