HomeSort by relevance Sort by last modified time
    Searched refs:string (Results 3976 - 4000 of 46739) sorted by null

<<151152153154155156157158159160>>

  /external/deqp/modules/gles2/functional/
es2fShaderIndexingTests.cpp 340 map<string, string> params;
341 params.insert(pair<string, string>("VAR_TYPE", getDataTypeName(varType)));
342 params.insert(pair<string, string>("ARRAY_LEN", "4"));
343 params.insert(pair<string, string>("PRECISION", "mediump"));
346 params.insert(pair<string, string>("PADDING", ", 0.0, 0.0, 1.0"))
    [all...]
  /external/deqp/modules/gles3/functional/
es3fShaderIndexingTests.cpp 314 map<string, string> params;
315 params.insert(pair<string, string>("VAR_TYPE", getDataTypeName(varType)));
316 params.insert(pair<string, string>("ARRAY_LEN", "4"));
317 params.insert(pair<string, string>("PRECISION", "mediump"));
320 params.insert(pair<string, string>("PADDING", ", 0.0, 0.0, 1.0"))
    [all...]
  /external/protobuf/src/google/protobuf/compiler/python/
python_generator.cc 54 #include <string>
80 string StripProto(const string& filename) {
88 string ModuleName(const string& filename) {
89 string basename = StripProto(filename);
100 string ModuleAlias(const string& filename) {
101 string module_name = ModuleName(filename);
113 string ModuleImportStatement(const string& filename)
    [all...]
  /bionic/libc/malloc_debug/
Config.cpp 35 #include <string.h>
38 #include <string>
71 const std::unordered_map<std::string, Config::OptionInfo> Config::kOptions = {
134 bool Config::ParseValue(const std::string& option, const std::string& value, size_t min_value,
175 bool Config::ParseValue(const std::string& option, const std::string& value, size_t default_value,
184 bool Config::SetGuard(const std::string& option, const std::string& value) {
202 bool Config::SetFrontGuard(const std::string& option, const std::string& value)
    [all...]
  /art/dexoptanalyzer/
dexoptanalyzer_test.cc 27 std::string GetDexoptAnalyzerCmd() {
28 std::string file_path = GetTestAndroidRoot();
37 int Analyze(const std::string& dex_file,
40 std::string dexoptanalyzer_cmd = GetDexoptAnalyzerCmd();
41 std::vector<std::string> argv_str;
44 argv_str.push_back("--isa=" + std::string(GetInstructionSetString(kRuntimeISA)));
52 std::string error;
72 void Verify(const std::string& dex_file,
89 std::string dex_location = GetScratchDir() + "/DexNoOat.jar";
100 std::string dex_location = GetScratchDir() + "/OatUpToDate.jar"
    [all...]
  /external/parameter-framework/upstream/parameter/
Element.cpp 40 using std::string;
42 const std::string CElement::gDescriptionPropertyName = "Description";
44 CElement::CElement(const string &strName) : _strName(strName)
53 void CElement::setDescription(const string &strDescription)
58 const string &CElement::getDescription() const
69 bool CElement::init(string &strError)
83 string CElement::dumpContent(utility::ErrorContext &errorContext, const size_t depth) const
85 string output;
86 string strIndent;
105 string strValue = logValue(errorContext)
    [all...]
  /external/tensorflow/tensorflow/contrib/android/
asset_manager_filesystem.cc 26 string RemoveSuffix(const string& name, const string& suffix) {
27 string output(name);
85 RandomAccessFileFromAsset(AAssetManager* asset_manager, const string& name)
117 string file_name_;
123 const string& prefix)
126 Status AssetManagerFileSystem::FileExists(const string& fname) {
127 string path = RemoveAssetPrefix(fname);
137 const string& fname, std::unique_ptr<RandomAccessFile>* result)
    [all...]
  /frameworks/compile/slang/
slang_rs_reflect_utils.cpp 21 #include <string>
33 using std::string;
35 string RSSlangReflectUtils::GetFileNameStem(const char *fileName) {
48 return string(slash, dot - slash);
51 string RSSlangReflectUtils::ComputePackagedPath(const char *prefixPath,
53 string packaged_path(prefixPath);
69 static string InternalFileNameConvert(const char *rsFileName, bool toLower) {
95 return string(ret);
98 std::string
103 std::string RootNameFromRSFileName(const std::string &rsFileName)
    [all...]
  /external/protobuf/src/google/protobuf/compiler/
command_line_interface_unittest.cc 90 bool FileExists(const string& path) {
100 // command is automatically split on spaces, and the string "$tmpdir"
102 void Run(const string& command);
115 void CreateTempFile(const string& name, const string& contents);
118 void CreateTempDir(const string& name);
144 void ExpectErrorText(const string& expected_text);
148 void ExpectErrorSubstring(const string& expected_substring);
152 const string& expected_substring);
155 void ExpectCapturedStdout(const string& expected_text)
    [all...]
  /toolchain/binutils/binutils-2.27/gold/testsuite/
dwp_test_2.s 94 .string "Hello, world"
189 .string "test string constant"
214 .string "t"
215 .string ""
216 .string ""
217 .string "e"
218 .string ""
219 .string ""
220 .string "s
    [all...]
  /art/oatdump/
oatdump_app_test.cc 22 std::string error_msg;
28 std::string error_msg;
34 std::string error_msg;
42 std::string error_msg;
oatdump_image_test.cc 24 std::string error_msg;
29 std::string error_msg;
34 std::string error_msg;
39 std::string error_msg;
  /art/runtime/
dexopt_test.cc 17 #include <string>
38 std::string error_msg;
48 void DexoptTest::GenerateOatForTest(const std::string& dex_location,
49 const std::string& oat_location_in,
55 std::string dalvik_cache = GetDalvikCache(GetInstructionSetString(kRuntimeISA));
56 std::string dalvik_cache_tmp = dalvik_cache + ".redirected";
57 std::string oat_location = oat_location_in;
64 if (pos != std::string::npos) {
69 std::vector<std::string> args;
89 std::string image_location = GetImageLocation()
    [all...]
prebuilt_tools_test.cc 31 static void CheckToolsExist(const std::string& tools_dir) {
35 std::string exec_path = tools_dir + tool;
43 std::string tools_dir = GetAndroidHostToolsDir();
55 std::string tools_dir = GetAndroidTargetToolsDir(isa);
  /art/test/ImageLayoutB/
ImageLayoutB.java 20 public static String string = "ASDF_UNIQUE_STRING"; field in class:MyClass
21 public static HashMap<String, String> map = new HashMap<String, String>();
  /bionic/libc/bionic/
strnlen.c 28 #include <string.h>
  /bionic/libc/upstream-openbsd/lib/libc/gen/
setprogname.c 18 #include <string.h>
  /bionic/libc/upstream-openbsd/lib/libc/string/
memchr.c 34 #include <string.h>
memrchr.c 19 #include <string.h>
strcat.c 32 #include <string.h>
strcpy.c 32 #include <string.h>
strncmp.c 32 #include <string.h>
strncpy.c 35 #include <string.h>
strpbrk.c 31 #include <string.h>
  /bionic/tests/
alloca_test.cpp 19 #include <string.h>

Completed in 954 milliseconds

<<151152153154155156157158159160>>