HomeSort by relevance Sort by last modified time
    Searched full:condition (Results 201 - 225 of 6455) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/chromium_org/third_party/icu/source/stubdata/
stubdata.vcxproj 25 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
30 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
35 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
40 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
48 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
49 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
52 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
53 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
56 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
57 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
    [all...]
  /external/clang/test/SemaCXX/
warn-loop-analysis.cpp 17 for (int i; i < 1; ) {} // expected-warning {{variable 'i' used in loop condition not modified in loop body}}
24 for (int i; i < 1; ) { by_value(i); } // expected-warning {{variable 'i' used in loop condition not modified in loop body}}
31 for (int j; j < 1; ++i) // expected-warning {{variable 'j' used in loop condition not modified in loop body}}
34 for (int j; i < 1; ++j) // expected-warning {{variable 'i' used in loop condition not modified in loop body}}
38 for (int *i, *j; i < j;) {} // expected-warning {{variables 'i' and 'j' used in loop condition not modified in loop body}}
49 for (; i; ) {} // expected-warning {{variable 'i' used in loop condition not modified in loop body}}
53 for (; i < j; ) {} // expected-warning {{variables 'i' and 'j' used in loop condition not modified in loop body}}
58 for (; i < 5; ) {} // expected-warning {{variable 'i' used in loop condition not modified in loop body}}
62 for (; i < 5.0; ) {} // expected-warning {{variable 'i' used in loop condition not modified in loop body}}
66 for (; i == 'a'; ) {} // expected-warning {{variable 'i' used in loop condition not modified in loop body}
    [all...]
  /external/icu/icu4c/source/stubdata/
stubdata.vcxproj 25 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
30 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
35 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
40 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
48 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="PropertySheets">
49 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
52 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="PropertySheets">
53 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
56 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
57 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /
    [all...]
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
prcvar.h 46 ** Create a new condition variable.
48 ** "lock" is the lock used to protect the condition variable.
50 ** Condition variables are synchronization objects that threads can use
51 ** to wait for some condition to occur.
59 ** Destroy a condition variable. There must be no thread
67 ** The thread that waits on a condition is blocked in a "waiting on
68 ** condition" state until another thread notifies the condition or a
70 ** the condition variable will be released, which must have be held
73 ** Logically a notified thread is moved from the "waiting on condition"
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/thread/dc/
SDL_syscond.c 24 /* An implementation of condition variables using semaphores and mutexes */
26 This implementation borrows heavily from the BeOS condition variable
41 /* Create a condition variable */
62 /* Destroy a condition variable */
79 /* Restart one of the threads that are waiting on the condition variable */
83 SDL_SetError("Passed a NULL condition variable");
88 signal the condition and wait for the thread to respond.
103 /* Restart all threads that are waiting on the condition variable */
107 SDL_SetError("Passed a NULL condition variable");
112 signal the condition and wait for the thread to respond
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/thread/generic/
SDL_syscond.c 24 /* An implementation of condition variables using semaphores and mutexes */
26 This implementation borrows heavily from the BeOS condition variable
41 /* Create a condition variable */
62 /* Destroy a condition variable */
79 /* Restart one of the threads that are waiting on the condition variable */
83 SDL_SetError("Passed a NULL condition variable");
88 signal the condition and wait for the thread to respond.
103 /* Restart all threads that are waiting on the condition variable */
107 SDL_SetError("Passed a NULL condition variable");
112 signal the condition and wait for the thread to respond
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/thread/os2/
SDL_syscond.c 24 /* An implementation of condition variables using semaphores and mutexes */
26 This implementation borrows heavily from the BeOS condition variable
41 /* Create a condition variable */
62 /* Destroy a condition variable */
79 /* Restart one of the threads that are waiting on the condition variable */
83 SDL_SetError("Passed a NULL condition variable");
88 signal the condition and wait for the thread to respond.
103 /* Restart all threads that are waiting on the condition variable */
107 SDL_SetError("Passed a NULL condition variable");
112 signal the condition and wait for the thread to respond
    [all...]
  /frameworks/base/core/java/android/service/notification/
Condition.java 28 * Condition information from condition providers.
33 public class Condition implements Parcelable {
35 public static final String SCHEME = "condition";
53 public Condition(Uri id, String summary, String line1, String line2, int icon,
69 private Condition(Parcel source) {
70 this((Uri)source.readParcelable(Condition.class.getClassLoader()),
96 return new StringBuilder(Condition.class.getSimpleName()).append('[')
125 if (!(o instanceof Condition)) return false;
127 final Condition other = (Condition) o
    [all...]
  /packages/apps/Settings/src/com/android/settings/notification/
ZenModeConditionSelection.java 27 import android.service.notification.Condition;
48 private final List<Condition> mConditions;
49 private Condition mCondition;
54 mConditions = new ArrayList<Condition>();
69 private RadioButton newRadioButton(Condition condition) {
71 button.setTag(condition);
76 setCondition((Condition) button.getTag());
87 requestZenModeConditions(Condition.FLAG_RELEVANT_NOW);
97 if (DEBUG) Log.d(TAG, "requestZenModeConditions " + Condition.relevanceToString(relevance))
    [all...]
  /external/chromium_org/remoting/host/
host_exit_codes.h 16 // Error codes that don't indicate a permanent error condition.
22 // Error codes that do indicate a permanent error condition.
31 // condition.
  /external/chromium_org/third_party/icu/source/samples/dtitvfmtsample/
dtitvfmtsample.vcxproj 18 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
23 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
32 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
33 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
35 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
36 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
39 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
42 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
45 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
49 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
    [all...]
  /external/chromium_org/third_party/icu/source/samples/plurfmtsample/
plurfmtsample.vcxproj 18 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
23 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
32 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
33 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
35 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
36 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
39 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
42 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
45 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
48 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
    [all...]
  /external/chromium_org/tools/win/DebugVisualizers/
webkit.natvis 5 <DisplayString Condition="m_impl.m_ptr == 0">(null)</DisplayString>
13 Condition="m_is8Bit">[{m_length}] {(this+1),sb}</DisplayString>
18 <Item Name="AsciiText" Condition="m_is8Bit">(this+1),sb</Item>
19 <Item Name="UnicodeText" Condition="!m_is8Bit">(this+1),su</Item>
23 <DisplayString Condition="m_size==0">(empty)</DisplayString>
24 <DisplayString Condition="m_size==1">[{m_size}] {m_buffer,1}</DisplayString>
25 <DisplayString Condition="m_size==2">[{m_size}] {m_buffer,2}</DisplayString>
26 <DisplayString Condition="m_size==3">[{m_size}] {m_buffer,3}</DisplayString>
27 <DisplayString Condition="m_size==4">[{m_size}] {m_buffer,4}</DisplayString>
29 Condition="m_size>=5">[{m_size}] {m_buffer,4}...</DisplayString
    [all...]
  /external/icu/icu4c/source/samples/dtitvfmtsample/
dtitvfmtsample.vcxproj 18 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
23 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
32 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
33 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
35 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
36 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
39 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
42 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
45 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
49 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"
    [all...]
  /external/icu/icu4c/source/samples/plurfmtsample/
plurfmtsample.vcxproj 18 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
23 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
32 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
33 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
35 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
36 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
39 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
42 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
45 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
48 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"
    [all...]
  /external/llvm/tools/msbuild/
Microsoft.Cpp.Win32.LLVM-vs2012_xp.targets 10 <Target Name="NoSupportCodeAnalysisXP" Condition="'$(ErrorNoSupportCodeAnalysisXP)' != 'false'">
11 <VCMessage Condition="'$(DesignTimeBuild)' != 'true' and '@(ClCompile->AnyHaveMetadataValue('EnablePREfast', 'true'))'=='true'" Code="MSB8026" Type="Error"/>
19 <VCMessage Code="MSB8003" Type="Warning" Arguments="WindowsSdkDir_71A" Condition="'$(WindowsSdkDir_71A)'=='' and '$(UseEnv)' != 'true'" />
toolset-vs2013_xp.targets 10 <Target Name="NoSupportCodeAnalysisXP" Condition="'$(ErrorNoSupportCodeAnalysisXP)' != 'false'">
11 <VCMessage Condition="'$(DesignTimeBuild)' != 'true' and '@(ClCompile->AnyHaveMetadataValue('EnablePREfast', 'true'))'=='true'" Code="MSB8026" Type="Error"/>
19 <VCMessage Code="MSB8003" Type="Warning" Arguments="WindowsSdkDir_71A" Condition="'$(WindowsSdkDir_71A)'=='' and '$(UseEnv)' != 'true'" />
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d10tri/
d3d10tri.vcxproj 19 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
24 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
33 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
34 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
36 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
37 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
40 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
43 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
46 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
60 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11gears/
d3d11gears.vcxproj 19 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
24 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
33 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
34 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
36 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
37 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
40 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
43 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
46 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
61 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11spikysphere/
d3d11spikysphere.vcxproj 19 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
24 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
33 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
34 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
36 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
37 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
40 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
43 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
46 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
61 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
    [all...]
  /external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11tex/
d3d11tex.vcxproj 19 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
24 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
33 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
34 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
36 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
37 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
40 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
43 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
46 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
60 <ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/thread/pth/
SDL_syscond.c 40 /* Create a condition variable */
58 /* Destroy a condition variable */
66 /* Restart one of the threads that are waiting on the condition variable */
72 SDL_SetError("Passed a NULL condition variable");
84 /* Restart all threads that are waiting on the condition variable */
90 SDL_SetError("Passed a NULL condition variable");
102 /* Wait on the condition variable for at most 'ms' milliseconds.
110 while ( ! condition ) {
118 condition = true;
129 SDL_SetError("Passed a NULL condition variable")
    [all...]
  /external/valgrind/main/drd/tests/
boost_thread.cpp 2 // use the boost::thread, boost::mutex and boost::condition classes.
5 #include <boost/thread/condition.hpp>
11 static boost::condition s_cva;
  /packages/apps/Email/tests/src/com/android/email/
TestUtils.java 38 public interface Condition {
107 * Wait until a {@code Condition} is met.
109 public static void waitUntil(Condition condition, int timeoutSeconds) {
110 waitUntil("", condition, timeoutSeconds);
114 * Wait until a {@code Condition} is met.
116 public static void waitUntil(String message, Condition condition, int timeoutSeconds) {
120 if (condition.isMet()) {
133 waitUntil("message", new Condition() {
    [all...]
  /external/compiler-rt/cmake/Modules/
CompilerRTUtils.cmake 40 # Appends value to all lists in ARGN, if the condition is true.
41 macro(append_if condition value)
42 if(${condition})
49 # Appends value to all strings in ARGN, if the condition is true.
50 macro(append_string_if condition value)
51 if(${condition})

Completed in 2235 milliseconds

1 2 3 4 5 6 7 891011>>