HomeSort by relevance Sort by last modified time
    Searched refs:Condition (Results 26 - 50 of 356) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/lib/StaticAnalyzer/Checkers/
UndefBranchChecker.cpp 11 // condition.
56 void checkBranchCondition(const Stmt *Condition, CheckerContext &Ctx) const;
61 void UndefBranchChecker::checkBranchCondition(const Stmt *Condition,
63 SVal X = Ctx.getState()->getSVal(Condition, Ctx.getLocationContext());
71 new BuiltinBug("Branch condition evaluates to a garbage value"));
74 // condition that is the most likely source of the "uninitialized
75 // branch condition." We do a recursive walk of the condition's
80 // being the terminator condition. We want to inspect the state
88 const Expr *Ex = cast<Expr>(Condition);
    [all...]
  /frameworks/av/include/media/stagefright/
MediaBufferGroup.h 48 Condition mCondition;
AudioSource.h 73 Condition mFrameAvailableCondition;
74 Condition mFrameEncodingCompletionCondition;
  /external/opencv/cxcore/include/
cxerror.h 176 #define CV_ASSERT( Condition ) \
178 if( !(Condition) ) \
179 CV_ERROR( CV_StsInternal, "Assertion: " #Condition " failed" ); \
  /packages/apps/Email/tests/src/com/android/email/
TestUtils.java 37 public interface Condition {
106 * Wait until a {@code Condition} is met.
108 public static void waitUntil(Condition condition, int timeoutSeconds) {
109 waitUntil("", condition, timeoutSeconds);
113 * Wait until a {@code Condition} is met.
115 public static void waitUntil(String message, Condition condition, int timeoutSeconds) {
119 if (condition.isMet()) {
132 waitUntil("message", new Condition() {
    [all...]
SingleRunningTaskTest.java 19 import com.android.email.TestUtils.Condition;
107 TestUtils.waitUntil(new Condition() {
125 TestUtils.waitUntil(new Condition() {
  /device/generic/goldfish/camera/fake-pipeline2/
Sensor.h 197 Condition mVSync;
209 Condition mReadoutAvailable;
210 Condition mReadoutComplete;
  /external/v8/src/arm/
constants-arm.h 118 // Values for the condition field as defined in section A3.2
119 enum Condition {
138 kSpecialCondition = 15 << 28, // Special condition (refer to section A3.2.1).
147 inline Condition NegateCondition(Condition cond) {
149 return static_cast<Condition>(cond ^ ne);
154 inline Condition ReverseCondition(Condition cond) {
228 S = 1 << 20, // Set condition code (or leave unchanged).
271 // Condition code updating mode
    [all...]
macro-assembler-arm.h 101 void Jump(Register target, Condition cond = al);
102 void Jump(Address target, RelocInfo::Mode rmode, Condition cond = al);
103 void Jump(Handle<Code> code, RelocInfo::Mode rmode, Condition cond = al);
104 static int CallSize(Register target, Condition cond = al);
105 void Call(Register target, Condition cond = al);
108 Condition cond = al);
109 void Call(Address target, RelocInfo::Mode rmode, Condition cond = al);
113 Condition cond = al);
117 Condition cond = al);
118 void Ret(Condition cond = al)
    [all...]
  /frameworks/native/services/surfaceflinger/
Barrier.h 49 mutable Condition cv;
  /hardware/samsung_slsi/exynos5/libcamera2/
SignalDrivenThread.h 77 Condition m_threadCondition;
  /external/chromium_org/v8/src/arm/
macro-assembler-arm.h 90 void Jump(Register target, Condition cond = al);
91 void Jump(Address target, RelocInfo::Mode rmode, Condition cond = al);
92 void Jump(Handle<Code> code, RelocInfo::Mode rmode, Condition cond = al);
93 static int CallSize(Register target, Condition cond = al);
94 void Call(Register target, Condition cond = al);
95 int CallSize(Address target, RelocInfo::Mode rmode, Condition cond = al);
98 Condition cond = al);
100 Condition cond = al,
105 Condition cond = al);
109 Condition cond = al
    [all...]
assembler-arm.cc 562 Condition Assembler::GetCondition(Instr instr) {
833 Condition cond = Instruction::ConditionField(instr);
1011 // condition code additional instruction conventions can be used.
1029 void Assembler::move_32_bit_immediate(Condition cond,
1067 // condition code), then replace it with a 'ldr rd, [pc]'.
1069 Condition cond = Instruction::ConditionField(instr);
    [all...]
constants-arm.h 77 // Values for the condition field as defined in section A3.2
78 enum Condition {
97 kSpecialCondition = 15 << 28, // Special condition (refer to section A3.2.1).
106 inline Condition NegateCondition(Condition cond) {
108 return static_cast<Condition>(cond ^ ne);
113 inline Condition ReverseCondition(Condition cond) {
187 S = 1 << 20, // Set condition code (or leave unchanged).
231 // Condition code updating mode
    [all...]
  /external/chromium_org/third_party/skia/src/utils/
SkTLogic.h 39 /** SkTIf_c::type = (condition) ? T : F;
42 template <bool condition, typename T, typename F> struct SkTIf_c {
49 /** SkTIf::type = (Condition::value) ? T : F; */
50 template <typename Condition, typename T, typename F> struct SkTIf {
51 typedef typename SkTIf_c<static_cast<bool>(Condition::value), T, F>::type type;
  /external/skia/src/utils/
SkTLogic.h 39 /** SkTIf_c::type = (condition) ? T : F;
42 template <bool condition, typename T, typename F> struct SkTIf_c {
49 /** SkTIf::type = (Condition::value) ? T : F; */
50 template <typename Condition, typename T, typename F> struct SkTIf {
51 typedef typename SkTIf_c<static_cast<bool>(Condition::value), T, F>::type type;
  /external/smack/src/com/kenai/jbosh/
HTTPExchange.java 19 import java.util.concurrent.locks.Condition;
50 * Condition used to signal when the response has been set.
52 private final Condition ready = lock.newCondition();
  /frameworks/av/services/camera/libcameraservice/api1/client2/
CallbackProcessor.h 24 #include <utils/Condition.h>
64 Condition mCallbackAvailableSignal;
JpegProcessor.h 24 #include <utils/Condition.h>
65 Condition mCaptureAvailableSignal;
  /frameworks/av/services/camera/libcameraservice/device3/
StatusTracker.h 20 #include <utils/Condition.h>
88 Condition mPendingChangeSignal;
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
BarrierConsumer.java 20 import java.util.concurrent.locks.Condition;
31 private final Condition mNotFull = mLock.newCondition();
  /system/core/include/utils/
Mutex.h 34 class Condition;
73 friend class Condition;
  /external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SVGSMILElement.h 149 struct Condition {
156 Condition(Type, BeginOrEnd, const String& baseID, const String& name, SMILTime offset, int repeats = -1);
168 Element* eventBaseFor(const Condition&);
174 void handleConditionEvent(Event*, Condition*);
201 Vector<Condition> m_conditions;
  /external/valgrind/main/drd/tests/
tsan_thread_wrappers_pthread.h 158 /// Just a boolean condition. Used by Mutex::LockWhen and similar.
159 class Condition {
164 Condition(bool (*func)(T*), T* arg)
167 Condition(bool (*func)())
214 void LockWhen(Condition cond) { Lock(); WaitLoop(cond); }
215 void ReaderLockWhen(Condition cond) { Lock(); WaitLoop(cond); }
216 void Await(Condition cond) { WaitLoop(cond); }
218 bool ReaderLockWhenWithTimeout(Condition cond, int millis)
220 bool LockWhenWithTimeout(Condition cond, int millis)
222 bool AwaitWithTimeout(Condition cond, int millis
    [all...]
  /external/chromium_org/chrome/installer/util/
work_item.h 58 class Condition {
60 virtual ~Condition() {}
166 // condition->ShouldRun() returns true. The WorkItemList instance
167 // assumes ownership of condition.
168 static WorkItemList* CreateConditionalWorkItemList(Condition* condition);

Completed in 489 milliseconds

12 3 4 5 6 7 8 91011>>