HomeSort by relevance Sort by last modified time
    Searched full:condition (Results 401 - 425 of 7248) sorted by null

<<11121314151617181920>>

  /external/testng/src/main/java/org/testng/
FileAssert.java 32 boolean condition=false;
34 condition=tstvalue.isDirectory();
38 if(!condition) {
54 boolean condition=false;
56 condition=tstvalue.isFile();
60 if(!condition) {
157 boolean condition=false;
159 condition=tstvalue.canRead();
163 if(!condition) {
182 boolean condition=false
    [all...]
  /external/libopus/win32/VS2010/
opus.vcxproj 27 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
31 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
35 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
40 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
47 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
48 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
50 <ImportGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="PropertySheets">
51 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
53 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
54 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /
    [all...]
silk_float.vcxproj 28 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
33 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
38 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
44 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
53 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
54 <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" />
59 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
60 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" /
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/samples/simplecamera/
IfElseFilter.java 47 .addInputPort("condition", Signature.PORT_REQUIRED, FrameType.single(boolean.class))
57 FrameValue boolFrameValue = getConnectedInputPort("condition").pullFrame().asFrameValue();
58 boolean condition = (Boolean) boolFrameValue.getValue();
60 // If the condition is true, then we want to use the camera, else use the gallery
61 if (condition) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
ResourceUtils.java 107 * Find the condition that fulfills specified key value pairs from an array of
108 * "condition,constant", and return the corresponding string constant. A condition is
110 * "key=regexp_value" string. The condition matches only if all patterns of the condition
113 * For example, "condition,constant" has the following format.
118 * @param keyValuePairs attributes to be used to look for a matched condition.
119 * @param conditionConstantArray an array of "condition,constant" elements to be searched.
120 * @return the constant part of the matched "condition,constant" element. Returns null if no
121 * condition matches
137 final String condition = conditionConstant.substring(0, posComma); local
    [all...]
  /external/chromium-trace/catapult/devil/devil/utils/
timeout_retry.py 73 def WaitFor(condition, wait_period=5, max_tries=None):
74 """Wait for a condition to become true.
76 Repeatedly call the function condition(), with no arguments, until it returns
82 condition: function with the condition to check
84 condition
89 The true value returned by the condition, or None if the condition was
96 condition_name = condition.__name__
99 result = condition()
    [all...]
  /external/opencv3/samples/wp8/OcvImageManipulation/PhoneXamlDirect3DApp1/PhoneXamlDirect3DApp1Comp/
PhoneXamlDirect3DApp1Comp.vcxproj 31 <OutDir Condition="'$(OutDirWasSpecified)' == 'true'">$(OutDir)\$(MSBuildProjectName)\</OutDir>
33 <OutDir Condition="'$(OutDirWasSpecified)' != 'true' and '$(Platform)' == 'Win32'">$(SolutionDir)$(Configuration)\$(MSBuildProjectName)\</OutDir>
34 <OutDir Condition="'$(OutDirWasSpecified)' != 'true' and '$(Platform)' != 'Win32'">$(SolutionDir)$(Platform)\$(Configuration)\$(MSBuildProjectName)\</OutDir>
38 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
43 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|ARM'" Label="Configuration">
48 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
54 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|ARM'" Label="Configuration">
62 <Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
69 <ItemDefinitionGroup Condition="'$(Configuration)'=='Debug'">
85 <ItemDefinitionGroup Condition="'$(Configuration)'=='Release'">
    [all...]
  /external/vixl/src/vixl/
globals.h 66 #define VIXL_ASSERT(condition) assert(condition)
67 #define VIXL_CHECK(condition) VIXL_ASSERT(condition)
73 #define VIXL_ASSERT(condition) ((void) 0)
74 #define VIXL_CHECK(condition) assert(condition)
82 #define VIXL_STATIC_ASSERT_LINE(line, condition) \
83 typedef char VIXL_CONCAT(STATIC_ASSERT_LINE_, line)[(condition) ? 1 : -1] \
85 #define VIXL_STATIC_ASSERT(condition) \
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/32/bits/
gthr-single.h 170 /* Backend condition mutex functions */
172 /* Allocate a condition. */
174 __gthread_objc_condition_allocate (objc_condition_t condition _GLIBCXX_UNUSED)
179 /* Deallocate a condition. */
181 __gthread_objc_condition_deallocate (objc_condition_t condition _GLIBCXX_UNUSED)
186 /* Wait on the condition */
188 __gthread_objc_condition_wait (objc_condition_t condition _GLIBCXX_UNUSED,
194 /* Wake up all threads waiting on this condition. */
196 __gthread_objc_condition_broadcast (objc_condition_t condition _GLIBCXX_UNUSED)
201 /* Wake up one thread waiting on this condition. *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/bits/
gthr-single.h 170 /* Backend condition mutex functions */
172 /* Allocate a condition. */
174 __gthread_objc_condition_allocate (objc_condition_t condition _GLIBCXX_UNUSED)
179 /* Deallocate a condition. */
181 __gthread_objc_condition_deallocate (objc_condition_t condition _GLIBCXX_UNUSED)
186 /* Wait on the condition */
188 __gthread_objc_condition_wait (objc_condition_t condition _GLIBCXX_UNUSED,
194 /* Wake up all threads waiting on this condition. */
196 __gthread_objc_condition_broadcast (objc_condition_t condition _GLIBCXX_UNUSED)
201 /* Wake up one thread waiting on this condition. *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/32/bits/
gthr-single.h 170 /* Backend condition mutex functions */
172 /* Allocate a condition. */
174 __gthread_objc_condition_allocate (objc_condition_t condition _GLIBCXX_UNUSED)
179 /* Deallocate a condition. */
181 __gthread_objc_condition_deallocate (objc_condition_t condition _GLIBCXX_UNUSED)
186 /* Wait on the condition */
188 __gthread_objc_condition_wait (objc_condition_t condition _GLIBCXX_UNUSED,
194 /* Wake up all threads waiting on this condition. */
196 __gthread_objc_condition_broadcast (objc_condition_t condition _GLIBCXX_UNUSED)
201 /* Wake up one thread waiting on this condition. *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/x86_64-linux/bits/
gthr-single.h 170 /* Backend condition mutex functions */
172 /* Allocate a condition. */
174 __gthread_objc_condition_allocate (objc_condition_t condition _GLIBCXX_UNUSED)
179 /* Deallocate a condition. */
181 __gthread_objc_condition_deallocate (objc_condition_t condition _GLIBCXX_UNUSED)
186 /* Wait on the condition */
188 __gthread_objc_condition_wait (objc_condition_t condition _GLIBCXX_UNUSED,
194 /* Wake up all threads waiting on this condition. */
196 __gthread_objc_condition_broadcast (objc_condition_t condition _GLIBCXX_UNUSED)
201 /* Wake up one thread waiting on this condition. *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/32/bits/
gthr-single.h 170 /* Backend condition mutex functions */
172 /* Allocate a condition. */
174 __gthread_objc_condition_allocate (objc_condition_t condition _GLIBCXX_UNUSED)
179 /* Deallocate a condition. */
181 __gthread_objc_condition_deallocate (objc_condition_t condition _GLIBCXX_UNUSED)
186 /* Wait on the condition */
188 __gthread_objc_condition_wait (objc_condition_t condition _GLIBCXX_UNUSED,
194 /* Wake up all threads waiting on this condition. */
196 __gthread_objc_condition_broadcast (objc_condition_t condition _GLIBCXX_UNUSED)
201 /* Wake up one thread waiting on this condition. *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/x86_64-w64-mingw32/bits/
gthr-single.h 170 /* Backend condition mutex functions */
172 /* Allocate a condition. */
174 __gthread_objc_condition_allocate (objc_condition_t condition _GLIBCXX_UNUSED)
179 /* Deallocate a condition. */
181 __gthread_objc_condition_deallocate (objc_condition_t condition _GLIBCXX_UNUSED)
186 /* Wait on the condition */
188 __gthread_objc_condition_wait (objc_condition_t condition _GLIBCXX_UNUSED,
194 /* Wake up all threads waiting on this condition. */
196 __gthread_objc_condition_broadcast (objc_condition_t condition _GLIBCXX_UNUSED)
201 /* Wake up one thread waiting on this condition. *
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/arm64-v8a/include/bits/
gthr-single.h 170 /* Backend condition mutex functions */
172 /* Allocate a condition. */
174 __gthread_objc_condition_allocate (objc_condition_t condition _GLIBCXX_UNUSED)
179 /* Deallocate a condition. */
181 __gthread_objc_condition_deallocate (objc_condition_t condition _GLIBCXX_UNUSED)
186 /* Wait on the condition */
188 __gthread_objc_condition_wait (objc_condition_t condition _GLIBCXX_UNUSED,
194 /* Wake up all threads waiting on this condition. */
196 __gthread_objc_condition_broadcast (objc_condition_t condition _GLIBCXX_UNUSED)
201 /* Wake up one thread waiting on this condition. *
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/armeabi/include/bits/
gthr-single.h 170 /* Backend condition mutex functions */
172 /* Allocate a condition. */
174 __gthread_objc_condition_allocate (objc_condition_t condition _GLIBCXX_UNUSED)
179 /* Deallocate a condition. */
181 __gthread_objc_condition_deallocate (objc_condition_t condition _GLIBCXX_UNUSED)
186 /* Wait on the condition */
188 __gthread_objc_condition_wait (objc_condition_t condition _GLIBCXX_UNUSED,
194 /* Wake up all threads waiting on this condition. */
196 __gthread_objc_condition_broadcast (objc_condition_t condition _GLIBCXX_UNUSED)
201 /* Wake up one thread waiting on this condition. *
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/armeabi-v7a/include/bits/
gthr-single.h 170 /* Backend condition mutex functions */
172 /* Allocate a condition. */
174 __gthread_objc_condition_allocate (objc_condition_t condition _GLIBCXX_UNUSED)
179 /* Deallocate a condition. */
181 __gthread_objc_condition_deallocate (objc_condition_t condition _GLIBCXX_UNUSED)
186 /* Wait on the condition */
188 __gthread_objc_condition_wait (objc_condition_t condition _GLIBCXX_UNUSED,
194 /* Wake up all threads waiting on this condition. */
196 __gthread_objc_condition_broadcast (objc_condition_t condition _GLIBCXX_UNUSED)
201 /* Wake up one thread waiting on this condition. *
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/mips/include/bits/
gthr-single.h 170 /* Backend condition mutex functions */
172 /* Allocate a condition. */
174 __gthread_objc_condition_allocate (objc_condition_t condition _GLIBCXX_UNUSED)
179 /* Deallocate a condition. */
181 __gthread_objc_condition_deallocate (objc_condition_t condition _GLIBCXX_UNUSED)
186 /* Wait on the condition */
188 __gthread_objc_condition_wait (objc_condition_t condition _GLIBCXX_UNUSED,
194 /* Wake up all threads waiting on this condition. */
196 __gthread_objc_condition_broadcast (objc_condition_t condition _GLIBCXX_UNUSED)
201 /* Wake up one thread waiting on this condition. *
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/mips32r6/include/bits/
gthr-single.h 170 /* Backend condition mutex functions */
172 /* Allocate a condition. */
174 __gthread_objc_condition_allocate (objc_condition_t condition _GLIBCXX_UNUSED)
179 /* Deallocate a condition. */
181 __gthread_objc_condition_deallocate (objc_condition_t condition _GLIBCXX_UNUSED)
186 /* Wait on the condition */
188 __gthread_objc_condition_wait (objc_condition_t condition _GLIBCXX_UNUSED,
194 /* Wake up all threads waiting on this condition. */
196 __gthread_objc_condition_broadcast (objc_condition_t condition _GLIBCXX_UNUSED)
201 /* Wake up one thread waiting on this condition. *
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/mips64/include/bits/
gthr-single.h 170 /* Backend condition mutex functions */
172 /* Allocate a condition. */
174 __gthread_objc_condition_allocate (objc_condition_t condition _GLIBCXX_UNUSED)
179 /* Deallocate a condition. */
181 __gthread_objc_condition_deallocate (objc_condition_t condition _GLIBCXX_UNUSED)
186 /* Wait on the condition */
188 __gthread_objc_condition_wait (objc_condition_t condition _GLIBCXX_UNUSED,
194 /* Wake up all threads waiting on this condition. */
196 __gthread_objc_condition_broadcast (objc_condition_t condition _GLIBCXX_UNUSED)
201 /* Wake up one thread waiting on this condition. *
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/x86/include/bits/
gthr-single.h 170 /* Backend condition mutex functions */
172 /* Allocate a condition. */
174 __gthread_objc_condition_allocate (objc_condition_t condition _GLIBCXX_UNUSED)
179 /* Deallocate a condition. */
181 __gthread_objc_condition_deallocate (objc_condition_t condition _GLIBCXX_UNUSED)
186 /* Wait on the condition */
188 __gthread_objc_condition_wait (objc_condition_t condition _GLIBCXX_UNUSED,
194 /* Wake up all threads waiting on this condition. */
196 __gthread_objc_condition_broadcast (objc_condition_t condition _GLIBCXX_UNUSED)
201 /* Wake up one thread waiting on this condition. *
    [all...]
  /prebuilts/ndk/current/sources/cxx-stl/gnu-libstdc++/4.9/libs/x86_64/include/bits/
gthr-single.h 170 /* Backend condition mutex functions */
172 /* Allocate a condition. */
174 __gthread_objc_condition_allocate (objc_condition_t condition _GLIBCXX_UNUSED)
179 /* Deallocate a condition. */
181 __gthread_objc_condition_deallocate (objc_condition_t condition _GLIBCXX_UNUSED)
186 /* Wait on the condition */
188 __gthread_objc_condition_wait (objc_condition_t condition _GLIBCXX_UNUSED,
194 /* Wake up all threads waiting on this condition. */
196 __gthread_objc_condition_broadcast (objc_condition_t condition _GLIBCXX_UNUSED)
201 /* Wake up one thread waiting on this condition. *
    [all...]
  /external/libchrome/base/
logging.h 58 // The CHECK(condition) macro is active in both debug and release builds and
103 // There's also VLOG_IS_ON(n) "verbose level" condition macro. To be used as
110 // There is also a VLOG_IF "verbose level" condition macro for sample
126 // PCHECK(condition) << "Couldn't do foo";
127 // DPCHECK(condition) << "Couldn't do foo";
246 // values, and there is a race condition that may leak a critical section
387 // the condition doesn't hold. Condition is evaluated once and only once.
388 #define LAZY_STREAM(stream, condition) \
389 !(condition) ? (void) 0 : ::logging::LogMessageVoidify() & (stream
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/dynamodb/
condition.py 27 class Condition(object):
30 is to test if something is a Condition instance or not.
34 if isinstance(other, Condition):
37 class ConditionNoArgs(Condition):
50 class ConditionOneArg(Condition):
67 class ConditionTwoArgs(Condition):
86 class ConditionSeveralArgs(Condition):
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRenderSwitchTests.cpp 146 params["CONDITION"] = type == SWITCHTYPE_STATIC ? "2" :
220 << "switch (${CONDITION})"
231 << "switch (${CONDITION})"
241 << "switch (${CONDITION})"
251 << "switch (${CONDITION})"
262 << "switch (${CONDITION})"
271 << "switch (${CONDITION})"
282 << "switch (${CONDITION})"
294 << "switch (${CONDITION})"
302 << " if (${CONDITION} != 3)
    [all...]

Completed in 1026 milliseconds

<<11121314151617181920>>