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

12 3 4 5 6 7 8 91011

  /frameworks/base/tests/SmokeTest/tests/src/com/android/smoketest/
ProcessErrorsTest.java 55 // condition. if the list is empty (null) then "we're good".
83 String condition; local
84 switch (entry.condition) {
86 condition = "CRASHED";
89 condition = "ANR";
92 condition = "<unknown>";
96 builder.append("Process error ").append(condition).append(" ");
  /external/kernel-headers/original/linux/
wait.h 155 #define __wait_event(wq, condition) \
161 if (condition) \
169 * wait_event - sleep until a condition gets true
171 * @condition: a C expression for the event to wait for
174 * @condition evaluates to true. The @condition is checked each time
178 * change the result of the wait condition.
180 #define wait_event(wq, condition) \
182 if (condition) \
184 __wait_event(wq, condition); \
    [all...]
  /dalvik/libcore/concurrent/src/main/java/java/util/concurrent/locks/
ReentrantLock.java 53 * lock.lock(); // block until condition holds
434 * Returns a {@link Condition} instance for use with this
437 * <p>The returned {@link Condition} instance supports the same
445 * <li>If this lock is not held when any of the {@link Condition}
446 * {@linkplain Condition#await() waiting} or {@linkplain
447 * Condition#signal signalling} methods are called, then an {@link
450 * <li>When the condition {@linkplain Condition#await() waiting}
470 * @return the Condition object
472 public Condition newCondition()
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/filefilter/
SizeFileFilter.java 99 String condition = acceptLarger ? ">=" : "<";
100 return super.toString() + "(" + condition + size + ")";
AgeFileFilter.java 147 String condition = acceptOlder ? "<=" : ">"; local
148 return super.toString() + "(" + condition + cutoff + ")";
  /external/icu4c/test/cintltst/
capitst.h 32 static void doAssert(int condition, const char *message);
  /external/webkit/WebCore/inspector/front-end/
Breakpoint.js 26 WebInspector.Breakpoint = function(url, line, sourceID, condition)
33 this._condition = condition || "";
77 get condition()
82 set condition(c)
89 this.dispatchEventToListeners("condition-changed");
  /external/webkit/WebKitTools/Scripts/
add-include 74 my $condition = $1;
80 $currentCondition = $condition;
111 for my $condition (sort keys %includes) {
112 $contents .= "#if $condition\n" unless $condition eq "";
113 $contents .= includesParagraph($includes{$condition});
114 $contents .= "#endif\n" unless $condition eq "";
  /cts/tests/tests/app/src/android/app/cts/
ActivityManagerProcessErrorStateInfoTest.java 60 int condition = 1; local
68 mErrorStateInfo.condition = condition;
82 assertEquals(condition, values.condition);
100 int condition = 1; local
108 mErrorStateInfo.condition = condition;
122 assertEquals(condition, values.condition);
    [all...]
  /external/dbus/dbus/
dbus-internals.h 109 #define _dbus_assert(condition)
111 void _dbus_real_assert (dbus_bool_t condition,
116 #define _dbus_assert(condition) \
117 _dbus_real_assert ((condition) != 0, #condition, __FILE__, __LINE__, _DBUS_FUNCTION_NAME)
131 #define _dbus_return_if_fail(condition)
132 #define _dbus_return_val_if_fail(condition, val)
136 #define _dbus_return_if_fail(condition) do { \
138 if (!(condition)) { \
140 _DBUS_FUNCTION_NAME, #condition, __FILE__, __LINE__);
    [all...]
  /external/gtest/test/
gtest_uninitialized_test.py 58 def Assert(condition):
59 if not condition:
  /external/webkit/WebKitTools/pywebsocket/mod_pywebsocket/
msgutil.py 230 message, condition = self._queue.get()
231 condition.acquire()
233 condition.notify()
234 condition.release()
239 condition = threading.Condition()
240 condition.acquire()
241 self._queue.put((message, condition))
242 condition.wait()
247 self._queue.put((message, threading.Condition()))
    [all...]
  /external/bluetooth/glib/gio/
gasynchelper.h 38 GIOCondition condition,
  /external/opencore/oscl/unit_test/src/
test_case.h 76 //tests to see if the supplied condition is true; called by the test_is_true macro
77 void test_is_true_stub(bool condition,
151 #define test_is_true( condition ) (this->test_is_true_stub( (condition), (#condition), __FILE__, __LINE__ ))
  /external/freetype/include/freetype/internal/
ftdebug.h 194 #define FT_ASSERT( condition ) \
197 if ( !( condition ) ) \
204 #define FT_ASSERT( condition ) do { } while ( 0 )
  /external/v8/src/
checks.h 60 bool condition) {
61 if (!condition)
66 // The CHECK macro checks that the given condition is true; if not, it
68 #define CHECK(condition) CheckHelper(__FILE__, __LINE__, #condition, condition)
248 // Causes an error during compilation of the condition is not
264 #define ASSERT(condition) CHECK(condition)
268 #define SLOW_ASSERT(condition) if (FLAG_enable_slow_asserts) CHECK(condition
    [all...]
  /external/webkit/WebCore/inspector/
JavaScriptDebugServer.h 65 void addBreakpoint(intptr_t sourceID, unsigned lineNumber, const JSC::UString& condition);
66 void updateBreakpoint(intptr_t sourceID, unsigned lineNumber, const JSC::UString& condition);
98 BreakpointInfo(const JSC::UString& condition) : m_condition(condition) {}
99 const JSC::UString& condition() const;
100 void setCondition(const JSC::UString& condition);
120 void updateBreakpointInfo(BreakpointInfo* info, const JSC::UString& condition);
  /external/webkit/WebCore/svg/animation/
SVGSMILElement.cpp 59 static PassRefPtr<ConditionEventListener> create(SVGSMILElement* animation, Element* eventBase, SVGSMILElement::Condition* condition)
61 return adoptRef(new ConditionEventListener(animation, eventBase, condition));
81 ConditionEventListener(SVGSMILElement* animation, Element* eventBase, SVGSMILElement::Condition* condition)
84 , m_condition(condition)
93 SVGSMILElement::Condition* m_condition;
111 SVGSMILElement::Condition::Condition(Type type, BeginOrEnd beginOrEnd, const String& baseID, const String& name, SMILTime offset, int repeats)
293 Condition::Type type
403 Condition& condition = m_conditions[n]; local
430 Condition& condition = m_conditions[n]; local
907 Condition& condition = m_conditions[n]; local
    [all...]
  /external/icu4c/test/intltest/
apicoll.h 25 void doAssert(UBool condition, const char *message);
  /external/stlport/test/unit/
allocator_test.cpp 91 pthread_cond_init(&condition, 0);
116 pthread_cond_wait(&condition, &mutex);
122 pthread_cond_signal(&condition);
137 pthread_cond_t condition; member in class:SharedDatas
  /external/proguard/src/proguard/classfile/util/
InstructionSequenceMatcher.java 190 boolean condition =
196 checkMatch(condition,
210 boolean condition =
218 checkMatch(condition,
232 boolean condition =
241 checkMatch(condition,
256 boolean condition =
263 checkMatch(condition,
277 boolean condition =
291 checkMatch(condition,
    [all...]
  /dalvik/dx/src/junit/framework/
Assert.java 15 * Asserts that a condition is true. If it isn't it throws
18 static public void assertTrue(String message, boolean condition) {
19 if (!condition)
23 * Asserts that a condition is true. If it isn't it throws
26 static public void assertTrue(boolean condition) {
27 assertTrue(null, condition);
30 * Asserts that a condition is false. If it isn't it throws
33 static public void assertFalse(String message, boolean condition) {
34 assertTrue(message, !condition);
37 * Asserts that a condition is false. If it isn't it throw
    [all...]
  /dalvik/libcore/junit/src/main/java/junit/framework/
Assert.java 15 * Asserts that a condition is true. If it isn't it throws
18 static public void assertTrue(String message, boolean condition) {
19 if (!condition)
23 * Asserts that a condition is true. If it isn't it throws
26 static public void assertTrue(boolean condition) {
27 assertTrue(null, condition);
30 * Asserts that a condition is false. If it isn't it throws
33 static public void assertFalse(String message, boolean condition) {
34 assertTrue(message, !condition);
37 * Asserts that a condition is false. If it isn't it throw
    [all...]
  /dalvik/tests/021-string2/src/junit/framework/
Assert.java 15 * Asserts that a condition is true. If it isn't it throws
18 static public void assertTrue(String message, boolean condition) {
19 if (!condition)
23 * Asserts that a condition is true. If it isn't it throws
26 static public void assertTrue(boolean condition) {
27 assertTrue(null, condition);
30 * Asserts that a condition is false. If it isn't it throws
33 static public void assertFalse(String message, boolean condition) {
34 assertTrue(message, !condition);
37 * Asserts that a condition is false. If it isn't it throw
    [all...]
  /dalvik/tests/082-inline-execute/src/junit/framework/
Assert.java 15 * Asserts that a condition is true. If it isn't it throws
18 static public void assertTrue(String message, boolean condition) {
19 if (!condition)
23 * Asserts that a condition is true. If it isn't it throws
26 static public void assertTrue(boolean condition) {
27 assertTrue(null, condition);
30 * Asserts that a condition is false. If it isn't it throws
33 static public void assertFalse(String message, boolean condition) {
34 assertTrue(message, !condition);
37 * Asserts that a condition is false. If it isn't it throw
    [all...]

Completed in 1508 milliseconds

12 3 4 5 6 7 8 91011