OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getBool
(Results
1 - 25
of
90
) sorted by null
1
2
3
4
/external/clang/test/Analysis/
svalbuilder-logic.c
13
extern int
getBool
();
14
_Bool a =
getBool
();
live-variables.cpp
9
int
getBool
();
18
if (p != 0 &&
getBool
() && foo().m &&
getBool
()) {
/external/clang/test/PCH/
thread-safety-attrs.cpp
104
bool
getBool
();
162
if (
getBool
())
169
if (
getBool
())
177
if (
getBool
()) {
180
if (
getBool
()) {
181
getBool
(); // EMPTY
183
getBool
(); // EMPTY
192
while (
getBool
()) {
194
if (
getBool
()) {
195
if (
getBool
()) {
[
all
...]
/external/google-fruit/include/fruit/impl/data_structures/
packed_pointer_and_bool.h
52
bool
getBool
() const;
packed_pointer_and_bool.defn.h
56
inline bool PackedPointerAndBool<T>::
getBool
() const {
/external/clang/test/SemaCXX/
warn-logical-not-compare.cpp
4
bool
getBool
();
117
ret = !
getBool
() == b1;
warn-thread-safety-analysis.cpp
147
bool
getBool
();
203
if (
getBool
())
210
if (
getBool
())
218
if (
getBool
()) {
221
if (
getBool
()) {
222
getBool
(); // EMPTY
224
getBool
(); // EMPTY
233
while (
getBool
()) {
235
if (
getBool
()) {
236
if (
getBool
()) {
[
all
...]
/external/deqp/modules/egl/
teglChooseConfigTests.cpp
373
static EGLint
getBool
(de::Random& rnd)
375
return rnd.
getBool
() ? EGL_TRUE : EGL_FALSE;
393
api |= rnd.
getBool
() ? EGL_OPENGL_BIT : 0;
394
api |= rnd.
getBool
() ? EGL_OPENGL_ES_BIT : 0;
395
api |= rnd.
getBool
() ? EGL_OPENGL_ES2_BIT : 0;
396
api |= rnd.
getBool
() ? EGL_OPENVG_BIT : 0;
403
bits |= rnd.
getBool
() ? EGL_WINDOW_BIT : 0;
404
bits |= rnd.
getBool
() ? EGL_PIXMAP_BIT : 0;
405
bits |= rnd.
getBool
() ? EGL_PBUFFER_BIT : 0;
426
{ EGL_BIND_TO_TEXTURE_RGB, ChooseConfigRandomCase::
getBool
, },
[
all
...]
/external/deqp/modules/gles2/functional/
es2fDebugMarkerTests.cpp
128
const bool nullTerminate = rnd.
getBool
();
129
const bool passLength = rnd.
getBool
();
130
const bool complexMsg = rnd.
getBool
();
/external/deqp/framework/delibs/decpp/
deRingBuffer.cpp
56
bool doRead = canRead && (!canWrite || rnd.
getBool
());
deBlockBuffer.cpp
148
if (rnd.
getBool
())
250
if (rnd.
getBool
())
313
if (rnd.
getBool
())
deRandom.cpp
51
//
getBool
()
57
DE_TEST_ASSERT(expected[i] == rnd.
getBool
());
deRandom.hpp
46
bool
getBool
(void) { return deRandom_getBool(&m_rnd) == DE_TRUE; }
/external/deqp/framework/opengl/
gluContextInfo.hpp
81
virtual bool
getBool
(int param) const;
gluContextInfo.cpp
223
bool ContextInfo::
getBool
(int param) const
/external/deqp/framework/randomshaders/
rsgPrettyPrinter.cpp
166
m_line += (token.
getBool
() ? "true" : "false");
rsgToken.hpp
150
bool
getBool
(void) const;
217
inline bool Token::
getBool
(void) const
rsgUtils.cpp
195
bool minVal = rnd.
getBool
();
196
bool maxVal = minVal ? true : rnd.
getBool
();
/external/libtextclassifier/java/com/google/android/textclassifier/
NamedVariant.java
97
public boolean
getBool
() {
/cts/tests/tests/os/src/android/os/cts/
HwBinderTest.java
82
assertEquals(true, blob.
getBool
(offset));
114
assertEquals(true, blob.
getBool
(offset));
115
assertEquals(false, blob.
getBool
(offset + 1));
/external/deqp/modules/glshared/
glsInteractionTestUtil.cpp
240
bool flipX = rnd.
getBool
();
241
bool flipY = rnd.
getBool
();
/external/deqp/modules/gles31/functional/
es31fSeparateShaderTests.cpp
197
return rnd.
getBool
() ? BINDING_LOCATION : BINDING_NAME;
431
oss << (rnd.
getBool
() ? "true" : "false");
878
params.initSingle = rnd.
getBool
();
879
params.switchVtx = rnd.
getBool
();
880
params.switchFrg = rnd.
getBool
();
881
params.useUniform = rnd.
getBool
();
882
params.useProgramUniform = params.useUniform && rnd.
getBool
();
883
params.useCreateHelper = rnd.
getBool
();
884
params.useSameName = rnd.
getBool
();
[
all
...]
es31fDrawBuffersIndexedTests.cpp
[
all
...]
/external/deqp/external/vulkancts/modules/vulkan/geometry/
vktGeometryInstancedRenderingTests.cpp
211
const float flipX = rng.
getBool
() ? 1.0f : -1.0f;
212
const float flipY = rng.
getBool
() ? 1.0f : -1.0f;
/art/tools/ahat/src/main/com/android/ahat/heapdump/
Parser.java
446
data[i] = hprof.
getBool
();
[
all
...]
Completed in 2122 milliseconds
1
2
3
4