HomeSort by relevance Sort by last modified time
    Searched full:getbool (Results 1 - 25 of 280) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/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()) {
live-variables.m 8 int getBool();
19 if ((p != 0) && (getBool()) && ([filename lastPathComponent]) && (getBool())) {
  /external/clang/test/CodeGenCXX/
catch-undef-behavior2.cpp 4 bool GetBool(bool default_value) {
  /external/llvm/test/Transforms/Util/MemorySSA/
multiple-backedges-hal.ll 32 declare i1 @getBool() readnone
64 %KeepGoing = call i1 @getBool()
68 %KeepGoing.Tail = call i1 @getBool()
many-doms.ll 6 declare i1 @getBool() readnone
many-dom-backedge.ll 7 declare i1 @getBool() readnone
  /external/llvm/test/CodeGen/ARM/
2011-08-25-ldmia_ret.ll 13 declare i1 @getbool()
19 %call = tail call zeroext i1 @getbool() nounwind
23 %cmp = tail call zeroext i1 @getbool() nounwind
27 %cmp13 = tail call zeroext i1 @getbool() nounwind
82 %cmp42 = tail call zeroext i1 @getbool() nounwind
  /external/swiftshader/third_party/LLVM/test/CodeGen/ARM/
2011-08-25-ldmia_ret.ll 13 declare i1 @getbool()
19 %call = tail call zeroext i1 @getbool() nounwind
23 %cmp = tail call zeroext i1 @getbool() nounwind
27 %cmp13 = tail call zeroext i1 @getbool() nounwind
82 %cmp42 = tail call zeroext i1 @getbool() nounwind
  /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...]
  /frameworks/native/services/surfaceflinger/
main_surfaceflinger.cpp 38 using android::hardware::configstore::getBool;
40 if (!getBool<ISurfaceFlingerConfigs,
  /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/
deBlockBuffer.cpp 148 if (rnd.getBool())
250 if (rnd.getBool())
313 if (rnd.getBool())
deRingBuffer.cpp 56 bool doRead = canRead && (!canWrite || rnd.getBool());
deRandom.cpp 51 // getBool()
57 DE_TEST_ASSERT(expected[i] == rnd.getBool());
  /external/deqp/framework/randomshaders/
rsgToken.hpp 150 bool getBool (void) const;
217 inline bool Token::getBool (void) const
  /external/flatbuffers/go/
encode.go 26 // GetBool decodes a little-endian bool from a byte slice.
27 func GetBool(buf []byte) bool {
table.go 67 // GetBool retrieves a bool at the given offset.
68 func (t *Table) GetBool(off UOffsetT) bool {
69 return GetBool(t.Bytes[off:])
151 return t.GetBool(t.Pos + UOffsetT(off))
  /packages/apps/Test/connectivity/sl4n/rapidjson/example/tutorial/
tutorial.cpp 52 printf("t = %s\n", document["t"].GetBool() ? "true" : "false");
55 printf("f = %s\n", document["f"].GetBool() ? "true" : "false");
  /external/libchrome/base/
values_unittest.cc 41 EXPECT_TRUE(true_value.GetBool());
45 EXPECT_FALSE(false_value.GetBool());
125 EXPECT_EQ(true_value.GetBool(), copied_true_value.GetBool());
130 EXPECT_EQ(false_value.GetBool(), copied_false_value.GetBool());
136 EXPECT_EQ(true_value.GetBool(), blank.GetBool());
140 EXPECT_EQ(false_value.GetBool(), blank.GetBool());
    [all...]
  /external/clang/test/SemaCXX/
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/libmojo/third_party/jinja2/
ext.py 590 def getbool(options, key, default=False): function in function:babel_extract
594 silent = getbool(options, 'silent', True)
604 getbool(options, 'trim_blocks', TRIM_BLOCKS),
605 getbool(options, 'lstrip_blocks', LSTRIP_BLOCKS),
607 getbool(options, 'keep_trailing_newline', KEEP_TRAILING_NEWLINE),
613 if getbool(options, 'newstyle_gettext'):
  /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...]

Completed in 684 milliseconds

1 2 3 4 5 6 7 8 91011>>