HomeSort by relevance Sort by last modified time
    Searched refs:Prefix (Results 26 - 50 of 184) sorted by null

12 3 4 5 6 7 8

  /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))
  /art/runtime/base/
hex_dump_test.cc 63 TEST(HexDump, Prefix) {
66 oss << HexDump(test_text, strlen(test_text), false, "test prefix: ");
68 "test prefix: " ZEROPREFIX "00000000: 30 31 32 33 34 35 36 37 38 39 61 62 63 64 65 66 "
  /external/clang/lib/Basic/
Warnings.cpp 34 StringRef Prefix, StringRef Opt,
40 << (Prefix.str() += Opt) << (Prefix.str() += Suggestion);
44 << (Prefix.str() += Opt);
  /external/compiler-rt/lib/ubsan/
ubsan_type_hash.cc 201 VtablePrefix *Prefix = *VptrPtr - 1;
202 if (Prefix->Offset > 0 || !Prefix->TypeInfo)
205 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/llvm/include/llvm/IR/
Intrinsics.h 73 ID getIntrinsicForGCCBuiltin(const char *Prefix, const char *BuiltinName);
76 ID getIntrinsicForMSBuiltin(const char *Prefix, const char *BuiltinName);
  /external/llvm/utils/FileCheck/
FileCheck.cpp 46 CheckPrefixes("check-prefix",
47 cl::desc("Prefix to use from check file (defaults to 'CHECK')"));
108 /// ParsePattern - Parse the given string into the Pattern. Prefix provides
109 /// which prefix is being matched, SM provides the SourceMgr used for error
114 StringRef Prefix,
161 StringRef Prefix,
175 "found empty check string with prefix '" +
176 Prefix + ":'");
582 /// Prefix - Which prefix name this check matched
    [all...]
  /frameworks/compile/mclinker/tools/mcld/lib/
TripleOptions.cpp 42 llvm::cl::Prefix);
63 llvm::StringRef Prefix;
73 llvm::StringRef Prefix = ProgNameRef.slice(0, LastComponent);
75 if (!mcld::TargetRegistry::lookupTarget(Prefix, IgnoredError))
77 return Prefix.str();
137 // 2. Use the triple from the program name prefix.
  /external/clang/lib/Format/
BreakableToken.h 99 unsigned StartColumn, StringRef Prefix,
106 // The prefix a line needs after a break in the token.
107 StringRef Prefix;
110 // The token text excluding the prefix and postfix.
121 unsigned StartColumn, StringRef Prefix,
153 // The prefix without an additional space if one was added.
209 // regard as whitespace when all lines have a "*" prefix.
214 // a "*" prefix.
ContinuationIndenter.cpp     [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/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/Frontend/
TextDiagnosticPrinter.cpp 128 // file+line+column number prefix is.
131 if (!Prefix.empty())
132 OS << Prefix << ": ";
InitPreprocessor.cpp 131 static void DefineFloatMacros(MacroBuilder &Builder, StringRef Prefix,
159 DefPrefix += Prefix;
226 const char *Prefix = IsSigned ? "__INT" : "__UINT";
228 DefineType(Prefix + Twine(TypeWidth) + "_TYPE__", Ty, Builder);
232 Builder.defineMacro(Prefix + Twine(TypeWidth) + "_C_SUFFIX__", ConstSuffix);
247 const char *Prefix = IsSigned ? "__INT" : "__UINT";
248 DefineTypeSize(Prefix + Twine(TypeWidth) + "_MAX__", Ty, TI, Builder);
258 const char *Prefix = IsSigned ? "__INT_LEAST" : "__UINT_LEAST";
259 DefineType(Prefix + Twine(TypeWidth) + "_TYPE__", Ty, Builder);
260 DefineTypeSize(Prefix + Twine(TypeWidth) + "_MAX__", Ty, TI, Builder)
    [all...]
  /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 -target x86_64-unknown-unknown %s 2>&1 | FileCheck -check-prefix=CHECK-tokens %s
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
wsdxmldom.h 66 WCHAR *Prefix;
  /external/llvm/lib/Option/
OptTable.cpp 28 // beginning (thus options precede any other options which prefix them).
40 if (a == '\0') // A is a prefix of B.
42 if (b == '\0') // B is a prefix of A.
145 // Build prefix chars.
148 StringRef Prefix = I->getKey();
149 for (StringRef::const_iterator C = Prefix.begin(), CE = Prefix.end();
182 StringRef Prefix(*Pre);
183 if (Str.startswith(Prefix)) {
184 StringRef Rest = Str.substr(Prefix.size())
    [all...]
  /external/llvm/include/llvm/ADT/
StringRef.h 148 // Check the prefix for a mismatch.
213 /// Check if this string starts with the given \p Prefix.
214 bool startswith(StringRef Prefix) const {
215 return Length >= Prefix.Length &&
216 compareMemory(Data, Prefix.Data, Prefix.Length) == 0;
219 /// Check if this string starts with the given \p Prefix, ignoring case.
220 bool startswith_lower(StringRef Prefix) const;
  /external/llvm/tools/bugpoint/
Miscompilation.cpp 51 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/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
cmsnamed.c 507 cmsNAMEDCOLORLIST* CMSEXPORT cmsAllocNamedColorList(cmsContext ContextID, cmsUInt32Number n, cmsUInt32Number ColorantCount, const char* Prefix, const char* Suffix)
520 strncpy(v ->Prefix, Prefix, sizeof(v ->Prefix)-1);
522 v->Prefix[32] = v->Suffix[32] = 0;
543 NewNC= cmsAllocNamedColorList(v ->ContextID, v -> nColors, v ->ColorantCount, v ->Prefix, v ->Suffix);
550 memmove(NewNC ->Prefix, v ->Prefix, sizeof(v ->Prefix));
602 char* Prefix,
    [all...]
  /external/clang/tools/libclang/
IndexTypeSourceInfo.cpp 122 if (NestedNameSpecifierLoc Prefix = NNS.getPrefix())
123 indexNestedNameSpecifierLoc(Prefix, Parent, DC);
  /external/libexif/
libexif.spec 12 Prefix: %{_prefix}

Completed in 734 milliseconds

12 3 4 5 6 7 8