Home
last modified time | relevance | path

Searched refs:OPT_B (Results 1 – 5 of 5) sorted by relevance

/external/llvm-project/llvm/unittests/Option/
DOptionParsingTest.cpp74 EXPECT_TRUE(AL.hasArg(OPT_B)); in TEST()
82 EXPECT_EQ("hi", AL.getLastArgValue(OPT_B)); in TEST()
130 EXPECT_TRUE(AL.hasArg(OPT_B)); in TEST()
157 EXPECT_TRUE(AL.hasArg(OPT_B)); in TEST()
158 EXPECT_EQ("foo", AL.getAllArgValues(OPT_B)[0]); in TEST()
159 EXPECT_EQ("bar", AL.getAllArgValues(OPT_B)[1]); in TEST()
169 EXPECT_TRUE(AL.hasArg(OPT_B)); in TEST()
179 EXPECT_FALSE(AL.hasArg(OPT_B)); in TEST()
201 EXPECT_FALSE(AL.hasArg(OPT_B)); in TEST()
268 EXPECT_TRUE(AL.hasArg(OPT_B)); in TEST()
[all …]
/external/llvm/unittests/Option/
DOptionParsingTest.cpp74 EXPECT_TRUE(AL.hasArg(OPT_B)); in TEST()
82 EXPECT_EQ("hi", AL.getLastArgValue(OPT_B)); in TEST()
126 EXPECT_TRUE(AL.hasArg(OPT_B)); in TEST()
153 EXPECT_TRUE(AL.hasArg(OPT_B)); in TEST()
154 EXPECT_EQ("foo", AL.getAllArgValues(OPT_B)[0]); in TEST()
155 EXPECT_EQ("bar", AL.getAllArgValues(OPT_B)[1]); in TEST()
165 EXPECT_TRUE(AL.hasArg(OPT_B)); in TEST()
175 EXPECT_FALSE(AL.hasArg(OPT_B)); in TEST()
197 EXPECT_FALSE(AL.hasArg(OPT_B)); in TEST()
264 EXPECT_TRUE(AL.hasArg(OPT_B)); in TEST()
[all …]
/external/toybox/toys/pending/
Dsh.c307 #define OPT_B 0x100 macro
1026 if (TT.options&OPT_B) *ss++ = 'B'; in getvar_special()
1876 if ((TT.options&OPT_B) && !(flags&NO_BRACE)) for (i = 0; ; i++) { in expand_arg()
3721 TT.options = OPT_B; in sh_main()
3868 if (dd==1) TT.options |= OPT_B<<kk; in set_main()
3869 else TT.options &= ~(OPT_B<<kk); in set_main()
3876 printf("%s\t%s\n", ostr[jj], TT.options&(OPT_B<<jj) ? "on" : "off"); in set_main()
3882 if (*cc == '-') TT.options |= OPT_B<<kk; in set_main()
3883 else TT.options &= ~(OPT_B<<kk); in set_main()
/external/clang/lib/Driver/
DDriver.cpp513 for (const Arg *A : Args.filtered(options::OPT_B)) { in BuildCompilation()
/external/llvm-project/clang/lib/Driver/
DDriver.cpp1104 for (const Arg *A : Args.filtered(options::OPT_B)) { in BuildCompilation()