/external/mesa3d/src/gtest/include/gtest/ |
gtest-typed-test.h | 73 // prefix. 77 // TestFixture::" prefix. 137 // argument to the INSTANTIATE_* macro is a prefix that will be added 250 # define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \ 251 bool gtest_##Prefix##_##CaseName GTEST_ATTRIBUTE_UNUSED_ = \ 255 #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))
|
/ndk/sources/third_party/googletest/googletest/include/gtest/ |
gtest-typed-test.h | 73 // prefix. 77 // TestFixture::" prefix. 137 // argument to the INSTANTIATE_* macro is a prefix that will be added 250 # define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \ 251 bool gtest_##Prefix##_##CaseName GTEST_ATTRIBUTE_UNUSED_ = \ 255 #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))
|
/external/clang/lib/Frontend/ |
Warnings.cpp | 37 StringRef Prefix, StringRef Opt, 43 << (Prefix.str() += Opt) << (Prefix.str() += Suggestion); 47 << (Prefix.str() += Opt);
|
TextDiagnosticPrinter.cpp | 124 // file+line+column number prefix is. 127 if (!Prefix.empty()) 128 OS << Prefix << ": ";
|
/external/compiler-rt/lib/ubsan/ |
ubsan_type_hash.cc | 199 VtablePrefix *Prefix = *VptrPtr - 1; 200 if (Prefix->Offset > 0 || !Prefix->TypeInfo) 203 return Prefix;
|
/external/giflib/ |
gif_lib_private.h | 52 GifPrefixType Prefix[LZ_MAX_CODE + 1];
|
dgif_lib.c | 39 static int DGifGetPrefixChar(GifPrefixType *Prefix, int Code, int ClearCode); 126 /* Check for GIF prefix at start of file */ 200 /* Check for GIF prefix at start of file */ 748 GifPrefixType *Prefix; 766 Prefix = Private->Prefix; 768 Prefix[i] = NO_SUCH_CODE; 785 GifPrefixType *Prefix; 789 Prefix = Private->Prefix; [all...] |
/external/chromium/chrome/browser/autocomplete/ |
history_url_provider.cc | 32 using history::Prefix; 99 return GURL(); // User typing is no longer a prefix. 210 // for more results than we need, of every prefix type, in hopes this will 213 db->AutocompleteForPrefix(i->prefix + params->input.text(), 217 const Prefix* best_prefix = BestPrefix(j->url(), string16()); 219 history_matches.push_back(HistoryMatch(*j, i->prefix.length(), 329 // This relies on match.destination_url being the non-prefix-trimmed version 332 const Prefix* best_prefix = BestPrefix(match.destination_url, input.text()); 337 string16::npos : best_prefix->prefix.length() - offset; 445 prefixes.push_back(Prefix(ASCIIToUTF16("https://www."), 2)) [all...] |
/external/lzma/CPP/7zip/UI/Common/ |
Update.h | 18 UString Prefix; // path(folder) prefix including slash
33 SplitPathToParts(path, Prefix, Name);
54 return Prefix + Name;
|
/external/open-vcdiff/gtest/include/gtest/ |
gtest-typed-test.h | 73 // prefix. 77 // TestFixture::" prefix. 137 // argument to the INSTANTIATE_* macro is a prefix that will be added 244 #define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \ 245 bool gtest_##Prefix##_##CaseName = \ 249 #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))
|
/external/protobuf/gtest/include/gtest/ |
gtest-typed-test.h | 73 // prefix. 77 // TestFixture::" prefix. 137 // argument to the INSTANTIATE_* macro is a prefix that will be added 244 #define INSTANTIATE_TYPED_TEST_CASE_P(Prefix, CaseName, Types) \ 245 bool gtest_##Prefix##_##CaseName = \ 249 #Prefix, #CaseName, GTEST_REGISTERED_TEST_NAMES_(CaseName))
|
/external/bison/src/ |
complain.c | 42 * \param prefix put before the message (e.g., "warning"). 52 const char *prefix, 72 if (prefix) 73 fprintf (stderr, "%s: ", prefix); 90 #define ERROR_MESSAGE(Loc, Prefix, Message) \ 94 error_message (Loc, Prefix, Message, args); \
|
/external/clang/lib/Format/ |
BreakableToken.h | 90 StringRef Prefix, StringRef Postfix, 95 // The prefix a line needs after a break in the token. 96 StringRef Prefix; 99 // The token text excluding the prefix and postfix. 135 // The prefix without an additional space if one was added. 191 // regard as whitespace when all lines have a "*" prefix. 196 // a "*" prefix.
|
/external/clang/test/Index/ |
recursive-cxx-member-calls.cpp | 52 bool startswith(StringRef Prefix) const { 53 return Length >= Prefix.Length && 54 memcmp(Data, Prefix.Data, Prefix.Length) == 0; 188 // RUN: c-index-test -test-annotate-tokens=%s:1:1:186:1 %s 2>&1 | FileCheck -check-prefix=CHECK-tokens %s [all...] |
/external/llvm/include/llvm/IR/ |
Intrinsics.h | 73 ID getIntrinsicForGCCBuiltin(const char *Prefix, const char *BuiltinName);
|
/external/llvm/lib/Option/ |
OptTable.cpp | 24 // the beginning (thus options precede any other options which prefix 39 if (a == '\0') // A is a prefix of B. 41 if (b == '\0') // B is a prefix of A. 140 // Build prefix chars. 143 StringRef Prefix = I->getKey(); 144 for (StringRef::const_iterator C = Prefix.begin(), CE = Prefix.end(); 176 StringRef Prefix(*Pre); 177 if (Str.startswith(Prefix) && Str.substr(Prefix.size()).startswith(I->Name) [all...] |
/external/clang/utils/TableGen/ |
NeonEmitter.cpp | 725 std::string &Prefix, 733 // Thus we grab our instruction name via computation of said Prefix. 735 // If InstName is passed in, we use that instead of our name Prefix. 736 Prefix = InstName.size() == 0? Name.slice(0, PrefixEnd).str() : InstName; 1039 // Instruction Prefix. 1040 std::string Prefix; 1059 PreprocessInstruction(NameRef, InstName, Prefix, 1072 // hidden LOp just return the current Prefix. 1074 Result.push_back(Prefix + " " + RegisterSuffix); 1085 if (Prefix == "vmov") [all...] |
/external/llvm/tools/bugpoint/ |
Miscompilation.cpp | 51 virtual TestResult doTest(std::vector<std::string> &Prefix, 61 ReduceMiscompilingPasses::doTest(std::vector<std::string> &Prefix, 65 // with JUST the kept passes, discard the prefix passes. 95 if (Prefix.empty()) return NoFailure; 97 // Next, see if the program is broken if we run the "prefix" passes first, 99 outs() << "Checking to see if '" << getPassesString(Prefix) 102 // If it is not broken with the kept passes, it's possible that the prefix 104 // WORKS after the prefix passes, but then fails if running the prefix AND 106 // prefix passes, then discard the prefix passes [all...] |
/external/clang/tools/libclang/ |
IndexTypeSourceInfo.cpp | 122 if (NestedNameSpecifierLoc Prefix = NNS.getPrefix()) 123 indexNestedNameSpecifierLoc(Prefix, Parent, DC);
|
/external/llvm/include/llvm/ADT/ |
SmallString.h | 132 /// startswith - Check if this string starts with the given \p Prefix. 133 bool startswith(StringRef Prefix) const { 134 return str().startswith(Prefix);
|
StringRef.h | 142 // Check the prefix for a mismatch. 207 /// Check if this string starts with the given \p Prefix. 208 bool startswith(StringRef Prefix) const { 209 return Length >= Prefix.Length && 210 compareMemory(Data, Prefix.Data, Prefix.Length) == 0;
|
/external/llvm/lib/TableGen/ |
Main.cpp | 47 cl::value_desc("directory"), cl::Prefix);
|
/external/llvm/utils/TableGen/ |
X86RecognizableInstr.h | 40 /// The prefix field from the record 41 uint8_t Prefix; 63 /// Inferred from the operands; indicates whether the L bit in the VEX prefix is set 145 /// mandatory OpSize prefix. 147 /// prefix. If it does, 32-bit register operands stay 150 /// prefix. If it does not, then 16-bit register 164 /// prefix. If it does not, then 16-bit immediate
|
/external/qemu/distrib/sdl-1.2.15/acinclude/ |
alsa.m4 | 9 dnl enables arguments --with-alsa-prefix= 10 dnl --with-alsa-enc-prefix= 26 AC_ARG_WITH(alsa-prefix, 27 [ --with-alsa-prefix=PFX Prefix where Alsa library is installed(optional)], 30 AC_ARG_WITH(alsa-inc-prefix, 31 [ --with-alsa-inc-prefix=PFX Prefix where include libraries are (optional)],
|
/external/llvm/lib/CodeGen/ |
TargetLoweringObjectFileImpl.cpp | 71 StringRef Prefix = ".data."; 72 NameData.insert(NameData.begin(), Prefix.begin(), Prefix.end()); 216 /// getSectionPrefixForGlobal - Return the section prefix name used by options 251 const char *Prefix; 252 Prefix = getSectionPrefixForGlobal(Kind); 254 SmallString<128> Name(Prefix, Prefix+strlen(Prefix)); 611 // Check whether the mangled name has the "Private" or "LinkerPrivate" prefix [all...] |