Searched refs:flags (Results 526 - 550 of 6194) sorted by relevance

<<21222324252627282930>>

/external/libcxx/test/input.output/iostreams.base/std.ios.manip/basefield.manip/
H A Ddec.pass.cpp28 assert(ios.flags() & std::ios::dec);
H A Dhex.pass.cpp28 assert(ios.flags() & std::ios::hex);
H A Doct.pass.cpp28 assert(ios.flags() & std::ios::oct);
/external/libcxx/test/input.output/iostreams.base/std.ios.manip/floatfield.manip/
H A Dfixed.pass.cpp28 assert(ios.flags() & std::ios::fixed);
H A Dscientific.pass.cpp28 assert(ios.flags() & std::ios::scientific);
/external/libcxx/test/input.output/iostreams.base/std.ios.manip/fmtflags.manip/
H A Dboolalpha.pass.cpp28 assert(ios.flags() & std::ios::boolalpha);
H A Dnoboolalpha.pass.cpp29 assert(!(ios.flags() & std::ios::boolalpha));
H A Dnoshowbase.pass.cpp29 assert(!(ios.flags() & std::ios::showbase));
H A Dnoshowpoint.pass.cpp29 assert(!(ios.flags() & std::ios::showpoint));
H A Dnoshowpos.pass.cpp29 assert(!(ios.flags() & std::ios::showpos));
H A Dnoskipws.pass.cpp29 assert(!(ios.flags() & std::ios::skipws));
H A Dnounitbuf.pass.cpp29 assert(!(ios.flags() & std::ios::unitbuf));
H A Dnouppercase.pass.cpp29 assert(!(ios.flags() & std::ios::uppercase));
H A Dshowbase.pass.cpp28 assert(ios.flags() & std::ios::showbase);
H A Dshowpoint.pass.cpp28 assert(ios.flags() & std::ios::showpoint);
H A Dshowpos.pass.cpp28 assert(ios.flags() & std::ios::showpos);
H A Dskipws.pass.cpp28 assert(ios.flags() & std::ios::skipws);
H A Dunitbuf.pass.cpp28 assert(ios.flags() & std::ios::unitbuf);
H A Duppercase.pass.cpp28 assert(ios.flags() & std::ios::uppercase);
/external/libcxx/test/re/re.regex/re.regex.assign/
H A Dassign.pass.cpp24 assert(r2.flags() == std::regex::ECMAScript);
H A Dassign_iter_iter_flag.pass.cpp32 assert(r2.flags() == std::regex::ECMAScript);
36 assert(r2.flags() == std::regex::extended);
40 assert(r2.flags() == std::regex::ECMAScript);
44 assert(r2.flags() == std::regex::extended);
/external/libcxx/test/re/re.regex/re.regex.construct/
H A Dptr.pass.cpp24 assert(r.flags() == std::regex_constants::ECMAScript);
/external/lldb/include/lldb/Core/
H A DFlags.h22 /// @brief A class to manage flags.
31 /// The value type for flags is a 32 bit unsigned integer type.
39 /// of the flags.
42 /// The initial value for all flags.
44 Flags (ValueType flags = 0) :
45 m_flags (flags)
52 /// Construct and copy the flags from \a rhs.
70 /// Get accessor for all flags.
73 /// Returns all of the flags as a Flags::ValueType.
82 /// Return the number of flags tha
101 Reset(ValueType flags) argument
[all...]
/external/mesa3d/src/gallium/drivers/r300/
H A Dr300_screen.h43 /** Combination of DBG_xxx flags */
61 * Debug flags to disable/enable certain groups of debugging outputs.
65 * of these flags would be beneficial, just feel free to change them
98 static INLINE boolean SCREEN_DBG_ON(struct r300_screen * screen, unsigned flags) argument
100 return (screen->debug & flags) ? TRUE : FALSE;
103 static INLINE void SCREEN_DBG(struct r300_screen * screen, unsigned flags, argument
106 if (SCREEN_DBG_ON(screen, flags)) {
/external/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_flush.h40 unsigned flags,

Completed in 335 milliseconds

<<21222324252627282930>>