/external/webkit/Source/WebCore/svg/animation/ |
SVGSMILElement.h | 137 struct Condition { 144 Condition(Type, BeginOrEnd, const String& baseID, const String& name, SMILTime offset, int repeats = -1); 156 Element* eventBaseFor(const Condition&) const; 162 void handleConditionEvent(Event*, Condition*); 189 Vector<Condition> m_conditions;
|
SVGSMILElement.cpp | 59 static PassRefPtr<ConditionEventListener> create(SVGSMILElement* animation, SVGSMILElement::Condition* condition) 61 return adoptRef(new ConditionEventListener(animation, condition)); 79 ConditionEventListener(SVGSMILElement* animation, SVGSMILElement::Condition* condition) 82 , m_condition(condition) 89 SVGSMILElement::Condition* m_condition; 106 SVGSMILElement::Condition::Condition(Type type, BeginOrEnd beginOrEnd, const String& baseID, const String& name, SMILTime offset, int repeats) 320 Condition::Type type 439 Condition& condition = m_conditions[n]; local 467 Condition& condition = m_conditions[n]; local 955 Condition& condition = m_conditions[n]; local [all...] |
/external/webkit/Source/JavaScriptCore/assembler/ |
MacroAssemblerARM.h | 45 enum Condition { 390 Jump branch8(Condition cond, Address left, TrustedImm32 right) 396 Jump branch32(Condition cond, RegisterID left, RegisterID right, int useConstantPool = 0) 402 Jump branch32(Condition cond, RegisterID left, TrustedImm32 right, int useConstantPool = 0) 417 Jump branch32(Condition cond, RegisterID left, Address right) 423 Jump branch32(Condition cond, Address left, RegisterID right) 429 Jump branch32(Condition cond, Address left, TrustedImm32 right) 435 Jump branch32(Condition cond, BaseIndex left, TrustedImm32 right) 441 Jump branch32WithUnalignedHalfWords(Condition cond, BaseIndex left, TrustedImm32 right) 447 Jump branch16(Condition cond, BaseIndex left, RegisterID right [all...] |
MacroAssemblerX86Common.h | 44 enum Condition { 628 return Jump(m_assembler.jCC(static_cast<X86Assembler::Condition>(cond & ~DoubleConditionBits))); 797 Jump branch8(Condition cond, Address left, TrustedImm32 right) 803 Jump branch32(Condition cond, RegisterID left, RegisterID right) 809 Jump branch32(Condition cond, RegisterID left, TrustedImm32 right) 818 Jump branch32(Condition cond, RegisterID left, Address right) 824 Jump branch32(Condition cond, Address left, RegisterID right) 830 Jump branch32(Condition cond, Address left, TrustedImm32 right) 836 Jump branch32(Condition cond, BaseIndex left, TrustedImm32 right) 842 Jump branch32WithUnalignedHalfWords(Condition cond, BaseIndex left, TrustedImm32 right [all...] |
MacroAssemblerSH4.h | 37 typedef SH4Assembler::Condition Condition; 43 static const Condition Equal; 44 static const Condition NotEqual; 45 static const Condition GreaterThan; 46 static const Condition GreaterThanOrEqual; 47 static const Condition LessThan; 48 static const Condition LessThanOrEqual; 49 static const Condition UGreaterThan; 50 static const Condition UGreaterThanOrEqual [all...] |
MacroAssemblerX86_64.h | 315 void setPtr(Condition cond, RegisterID left, TrustedImm32 right, RegisterID dest) 325 Jump branchPtr(Condition cond, RegisterID left, RegisterID right) 331 Jump branchPtr(Condition cond, RegisterID left, TrustedImmPtr right) 337 Jump branchPtr(Condition cond, RegisterID left, Address right) 343 Jump branchPtr(Condition cond, AbsoluteAddress left, RegisterID right) 349 Jump branchPtr(Condition cond, Address left, RegisterID right) 355 Jump branchPtr(Condition cond, Address left, TrustedImmPtr right) 361 Jump branchTestPtr(Condition cond, RegisterID reg, RegisterID mask) 367 Jump branchTestPtr(Condition cond, RegisterID reg, TrustedImm32 mask = TrustedImm32(-1)) 379 Jump branchTestPtr(Condition cond, AbsoluteAddress address, TrustedImm32 mask = TrustedImm32(-1) [all...] |
MacroAssemblerX86.h | 111 Jump branch32(Condition cond, AbsoluteAddress left, RegisterID right) 117 Jump branch32(Condition cond, AbsoluteAddress left, TrustedImm32 right) 145 Jump branchPtrWithPatch(Condition cond, RegisterID left, DataLabelPtr& dataLabel, TrustedImmPtr initialRightValue = TrustedImmPtr(0)) 152 Jump branchPtrWithPatch(Condition cond, Address left, DataLabelPtr& dataLabel, TrustedImmPtr initialRightValue = TrustedImmPtr(0))
|
MacroAssemblerARMv7.h | 103 enum Condition { 868 Jump branch32(Condition cond, RegisterID left, RegisterID right) 874 Jump branch32(Condition cond, RegisterID left, TrustedImm32 right) 880 Jump branch32(Condition cond, RegisterID left, Address right) 886 Jump branch32(Condition cond, Address left, RegisterID right) 892 Jump branch32(Condition cond, Address left, TrustedImm32 right) 899 Jump branch32(Condition cond, BaseIndex left, TrustedImm32 right) 906 Jump branch32WithUnalignedHalfWords(Condition cond, BaseIndex left, TrustedImm32 right) 913 Jump branch32(Condition cond, AbsoluteAddress left, RegisterID right) 919 Jump branch32(Condition cond, AbsoluteAddress left, TrustedImm32 right [all...] |
MacroAssemblerMIPS.h | 60 enum Condition { 903 Jump branch8(Condition cond, Address left, TrustedImm32 right) 912 Jump branch32(Condition cond, RegisterID left, RegisterID right) [all...] |
/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/clang/lib/StaticAnalyzer/Checkers/ |
UndefBranchChecker.cpp | 11 // condition. 53 void checkBranchCondition(const Stmt *Condition, BranchNodeBuilder &Builder, 59 void UndefBranchChecker::checkBranchCondition(const Stmt *Condition, 63 SVal X = state->getSVal(Condition); 70 new BuiltinBug("Branch condition evaluates to a garbage value")); 73 // condition that is the most likely source of the "uninitialized 74 // branch condition." We do a recursive walk of the condition's 82 // being the terminator condition. We want to inspect the state
|
/frameworks/base/media/jni/soundpool/ |
SoundPoolThread.h | 58 Condition mCondition;
|
/frameworks/base/media/libstagefright/httplive/ |
LiveDataSource.h | 49 Condition mCondition;
|
/libcore/luni/src/main/java/java/util/concurrent/locks/ |
ReentrantLock.java | 53 * lock.lock(); // block until condition holds 435 * Returns a {@link Condition} instance for use with this 438 * <p>The returned {@link Condition} instance supports the same 446 * <li>If this lock is not held when any of the {@link Condition} 447 * {@linkplain Condition#await() waiting} or {@linkplain 448 * Condition#signal signalling} methods are called, then an {@link 451 * <li>When the condition {@linkplain Condition#await() waiting} 471 * @return the Condition object 473 public Condition newCondition() [all...] |
/external/valgrind/unittest/ |
thread_wrappers_pthread.h | 173 void LockWhen(Condition cond) { Lock(); WaitLoop(cond); } 174 void ReaderLockWhen(Condition cond) { Lock(); WaitLoop(cond); } 175 void Await(Condition cond) { WaitLoop(cond); } 177 bool ReaderLockWhenWithTimeout(Condition cond, int millis) 179 bool LockWhenWithTimeout(Condition cond, int millis) 181 bool AwaitWithTimeout(Condition cond, int millis) 186 void WaitLoop(Condition cond) { 194 bool WaitLoopWithTimeout(Condition cond, int millis) {
|
thread_wrappers.h | 65 /// Just a boolean condition. Used by Mutex::LockWhen and similar. 66 class Condition { 71 Condition(bool (*func)(T*), T* arg) 74 Condition(bool (*func)()) 125 mu_.LockWhen(Condition(IsQueueNotEmpty, &q_)); 305 mu_.LockWhen(Condition(&IsZero, &count_));
|
/external/v8/src/arm/ |
assembler-arm.cc | 361 Condition Assembler::GetCondition(Instr instr) { 594 Condition cond = Instruction::ConditionField(instr); 784 // condition code additional instruction conventions can be used. 825 // condition code), then replace it with a 'ldr rd, [pc]'. 827 Condition cond = Instruction::ConditionField(instr); 1010 void Assembler::b(int branch_offset, Condition cond) { 1023 void Assembler::bl(int branch_offset, Condition cond) { 1042 void Assembler::blx(Register target, Condition cond) { // v5 and above 1049 void Assembler::bx(Register target, Condition cond) { // v5 and above, plus v4t 1059 SBit s, Condition cond) [all...] |
/cts/tests/tests/speech/src/android/speech/tts/cts/ |
TextToSpeechWrapper.java | 27 import java.util.concurrent.locks.Condition; 109 private final Condition mDone = mLock.newCondition(); 144 private final Condition mDone = mLock.newCondition();
|
/external/v8/src/mips/ |
virtual-frame-mips.cc | 58 Condition cond, 66 Condition cond, 75 Condition cond,
|
/frameworks/base/include/media/stagefright/ |
SurfaceMediaSource.h | 323 // mDequeueCondition condition used for dequeueBuffer in synchronous mode 324 mutable Condition mDequeueCondition; 357 // mFrameAvailableCondition condition used to indicate whether there 359 Condition mFrameAvailableCondition; 360 Condition mFrameCompleteCondition;
|
/packages/experimental/AndroidVendorSecurityTool/src/com/google/android/googlelogin/ |
GoogleLoginServiceBlockingHelper.java | 28 import java.util.concurrent.locks.Condition; 54 private Condition mBindWaitCondition = mGoogleLoginServiceLock.newCondition();
|
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
SubEngine.h | 66 /// nodes by processing the 'effects' of a branch condition. 67 virtual void processBranch(const Stmt* Condition, const Stmt* Term,
|
/external/webkit/Source/WebCore/platform/graphics/android/ |
BaseTileTexture.h | 133 // We use this condition variable to signal that the texture 135 android::Condition m_busyCond;
|
MediaTexture.h | 88 android::Condition m_newMediaRequestCond;
|
/external/webkit/Source/WebKit/android/nav/ |
CachedNode.h | 53 enum Condition { // if bigger than 32, increase bitfield size below 155 void setCondition(Condition condition) const { mCondition = condition; } 202 mutable Condition mCondition : 5; // why the node was not chosen on the first pass 233 const char* condition(Condition t) const;
|