Home
last modified time | relevance | path

Searched refs:kSuffix (Results 1 – 7 of 7) sorted by relevance

/external/google-breakpad/src/common/android/testing/
Dmkdtemp.h63 const char kSuffix[] = "XXXXXX"; in breakpad_mkdtemp() local
64 const size_t kSuffixLen = strlen(kSuffix); in breakpad_mkdtemp()
68 memcmp(path_end - kSuffixLen, kSuffix, kSuffixLen) != 0) { in breakpad_mkdtemp()
/external/libchrome/base/
Dos_compat_android.cc125 const base::StringPiece kSuffix("XXXXXX"); in mkdtemp() local
126 const int kSuffixLen = kSuffix.length(); in mkdtemp()
127 if (!base::StringPiece(path, path_len).ends_with(kSuffix)) { in mkdtemp()
/external/angle/src/compiler/translator/
DTextureFunctionHLSL.cpp777 static const ImmutableString kSuffix(")))"); in OutputIntegerTextureSampleFunctionComputations() local
779 kSuffix.length()); in OutputIntegerTextureSampleFunctionComputations()
780 texCoordXBuilder << kXPrefix << *texCoordX << kSuffix; in OutputIntegerTextureSampleFunctionComputations()
783 kSuffix.length()); in OutputIntegerTextureSampleFunctionComputations()
784 texCoordYBuilder << kYPrefix << *texCoordY << kSuffix; in OutputIntegerTextureSampleFunctionComputations()
/external/tensorflow/tensorflow/core/grappler/optimizers/
Dlayout_optimizer.cc45 const char kSuffix[] = "LayoutOptimizer"; variable
235 const string suffix = kSuffix; in IsNodeByLayoutOptimizer()
240 const string suffix = strings::StrCat(type, "-", kSuffix); in IsNodeType()
467 return strings::StrCat(base_name, "-", kSuffix); in LayoutOptimizerNode()
Dauto_mixed_precision.cc54 const char kSuffix[] = "AutoMixedPrecision"; variable
1027 cast_string, "-", kSuffix); in BuildCastNode()
1059 strings::StrCat("_", preop ? "preop" : kSuffix, "_", id_, "_", timestamp); in PrintDebugLogs()
/external/protobuf/src/google/protobuf/compiler/
Dparser.cc95 static const char kSuffix[] = "Entry"; in MapEntryName() local
96 result.reserve(field_name.size() + sizeof(kSuffix)); in MapEntryName()
113 result.append(kSuffix); in MapEntryName()
/external/protobuf/python/google/protobuf/pyext/
Dmessage.cc435 static const char kSuffix[] = "_FIELD_NUMBER"; in GetClassAttribute() local
437 strings::EndsWith(StringPiece(attr, attr_size), kSuffix)) { in GetClassAttribute()
438 string field_name(attr, attr_size - sizeof(kSuffix) + 1); in GetClassAttribute()