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

<<221222223224225226227228229230>>

  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/tic54x/
cons.s 23 .global string, pstring
24 string .string "abcd" label
25 .string "abc","defg"
26 .string 36 + 12
  /art/cmdline/
cmdline_types.h 30 #include <string>
46 // The default specialization will always fail parsing the type from a string.
59 Result Parse(const std::string& args) {
73 Result Parse(const std::string& option) {
89 return Result::Failure(std::string("not a valid jdwp provider: ") + option);
99 Result Parse(const std::string& arg) {
105 return Result::Failure(std::string("not a valid memory value, or not divisible by ")
112 // Parse a string of the form /[0-9]+[kKmMgG]?/, which is used to specify
116 // "s" should point just past the "-Xm?" part of the string.
128 // so make sure our string starts with a decimal digit
    [all...]
  /external/libchrome/base/test/
trace_event_analyzer.h 9 // - Get trace events JSON string from base::trace_event::TraceLog.
10 // - Create TraceAnalyzer with JSON string.
26 // with the json trace string retrieved from TraceLog and construct an event
38 // Query q = (Query(EVENT_NAME) == Query::String("my_event") &&
58 // Query begin(Query(EVENT_NAME) == Query::String("timing1_begin"));
59 // Query end(Query(EVENT_NAME) == Query::String("timing1_end"));
64 // Query q = (Query(EVENT_NAME) == Query::String("timing1_begin") &&
132 // Return the argument value if it exists and it is a string.
133 bool GetArgAsString(const std::string& name, std::string* arg) const
    [all...]
  /frameworks/native/cmds/installd/
otapreopt.cpp 25 #include <string.h>
149 const std::string* prop_value = system_properties_.GetProperty(key);
164 std::string GetOTADataDirectory() const {
168 const std::string& GetTargetSlot() const {
191 // For simplicity, don't respect string quotation. The values we are interested in can be
194 bool parse_result = ParseFile("/init.environ.rc", [&](const std::string& line) {
204 std::string name = export_match[1].str();
205 std::string value = export_match[2].str();
238 const std::string& GetAndroidData() const {
242 const std::string& GetAndroidRoot() const
    [all...]
utils.cpp 53 * Check that given string is valid filename, and that it attempts no
56 bool is_valid_filename(const std::string& name) {
58 || (name.find('/') != std::string::npos)) {
75 std::string create_data_app_package_path(const char* volume_uuid,
87 std::string create_data_user_ce_package_path(const char* volume_uuid,
101 std::string create_data_user_ce_package_path_as_user_link(
104 std::string data(create_data_path(volume_uuid));
108 std::string create_data_user_ce_package_path(const char* volume_uuid, userid_t user,
143 std::string create_data_user_de_package_path(const char* volume_uuid,
150 std::string create_data_path(const char* volume_uuid)
    [all...]
  /system/tpm/attestation/server/
pkcs11_key_store.cc 20 #include <string>
39 std::string Sha1(const std::string& input) {
43 return std::string(reinterpret_cast<char*>(output), SHA_DIGEST_LENGTH);
94 bool Pkcs11KeyStore::Read(const std::string& username,
95 const std::string& key_name,
96 std::string* key_data) {
130 bool Pkcs11KeyStore::Write(const std::string& username,
131 const std::string& key_name,
132 const std::string& key_data)
    [all...]
  /test/vts/utils/native/trace_processor/
VtsTraceProcessor.cpp 26 #include <string>
43 bool VtsTraceProcessor::ParseBinaryTrace(const string& trace_file,
77 bool VtsTraceProcessor::ParseTextTrace(const string& trace_file,
81 string record_str, line;
105 void VtsTraceProcessor::ParseTrace(const string& trace_file) {
117 const string& output_file, const VtsProfilingMessage& profiling_msg) {
135 void VtsTraceProcessor::ConvertTrace(const string& trace_file) {
141 string tmp_file = trace_file + "_binary";
149 void VtsTraceProcessor::CleanupTraceFile(const string& trace_file) {
158 string package
    [all...]
  /art/test/954-invoke-polymorphic-verifier/smali/
Main.smali 30 .method public static main([Ljava/lang/String;)V
33 const-string v0, "MethodHandleNotInvoke"
34 invoke-static {v0}, LMain;->test(Ljava/lang/String;)V
35 const-string v0, "MethodHandleToString"
36 invoke-static {v0}, LMain;->test(Ljava/lang/String;)V
37 const-string v0, "NonReference"
38 invoke-static {v0}, LMain;->test(Ljava/lang/String;)V
39 const-string v0, "TooFewArguments"
40 invoke-static {v0}, LMain;->test(Ljava/lang/String;)V
41 const-string v0, "TooManyArguments
    [all...]
  /build/blueprint/bootstrap/
config.go 26 func bootstrapVariable(name string, value func() string) blueprint.Variable {
27 return pctx.VariableFunc(name, func(config interface{}) (string, error) {
35 srcDir = bootstrapVariable("srcDir", func() string {
38 buildDir = bootstrapVariable("buildDir", func() string {
41 ninjaBuildDir = bootstrapVariable("ninjaBuildDir", func() string {
44 goRoot = bootstrapVariable("goRoot", func() string {
56 compileCmd = bootstrapVariable("compileCmd", func() string {
59 linkCmd = bootstrapVariable("linkCmd", func() string {
75 RemoveAbandonedFilesUnder() []string
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleEncryptedClientBaseActivity.java 59 setInfoResources(R.string.ble_encrypted_client_name,
60 R.string.ble_encrypted_client_info, -1);
128 testList.add(R.string.ble_read_authenticated_characteristic_name);
129 testList.add(R.string.ble_write_authenticated_characteristic_name);
130 testList.add(R.string.ble_read_authenticated_descriptor_name);
131 testList.add(R.string.ble_write_authenticated_descriptor_name);
135 private void showErrorDialog(String title, String message, boolean finish) {
163 dialog.setTitle(R.string.ble_test_running);
165 dialog.setMessage(getString(R.string.ble_test_running_message));
    [all...]
  /external/mdnsresponder/mDNSWindows/ControlPanel/
SecondPage.cpp 204 // If we haven't seen this string before, add the string to the box and
209 CString string; local
213 err = RegQueryString( key, L"UserDefined", string );
216 if ( string.GetLength() )
218 string += L"," + selected;
222 string = selected;
225 err = RegSetValueEx( key, L"UserDefined", 0, REG_SZ, (LPBYTE) (LPCTSTR) string, ( string.GetLength() + 1) * sizeof( TCHAR ) );
384 CString string; local
508 TCHAR * string; local
    [all...]
  /external/webrtc/talk/app/webrtc/
peerconnection.h 31 #include <string>
92 const std::string& kind,
93 const std::string& stream_id) override;
101 const std::string& label,
148 TrackInfo(const std::string& stream_label,
149 const std::string track_id,
156 std::string stream_label;
157 std::string track_id;
207 const std::string& error);
210 const std::string& error)
    [all...]
  /external/webrtc/talk/media/devices/
linuxdevicemanager.cc 131 static const std::string kVideoMetaPathK2_4("/proc/video/dev/");
132 static const std::string kVideoMetaPathK2_6("/sys/class/video4linux/");
136 static void ScanDeviceDirectory(const std::string& devdir,
143 std::string filename = directoryIterator->Name();
144 std::string device_name = devdir + filename;
155 static std::string GetVideoDeviceNameK2_6(const std::string& device_meta_path) {
156 std::string device_name;
171 static std::string Trim(const std::string& s, const std::string& drop = " \t")
    [all...]
  /hardware/qcom/data/ipacfg-mgr/msm8998/hal/src/
PrefixParser.cpp 33 #include <string.h>
46 using ::std::string;
55 bool PrefixParser::add(vector<string> in) {
59 bool PrefixParser::add(string in) {
63 bool PrefixParser::addV4(string in) {
67 bool PrefixParser::addV4(vector<string> in) {
71 bool PrefixParser::addV6(string in) {
75 bool PrefixParser::addV6(vector<string> in) {
114 string PrefixParser::getLastErrAsStr() {
120 bool PrefixParser::add(vector<string> in, IP_FAM famHint)
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/vendor/github.com/google/pprof/driver/
driver.go 67 Open(name string) (io.WriteCloser, error)
73 // Bool, Int, Float64, and String define new flags,
75 Bool(name string, def bool, usage string) *bool
76 Int(name string, def int, usage string) *int
77 Float64(name string, def float64, usage string) *float64
78 String(name string, def string, usage string) *strin
    [all...]
  /prebuilts/go/linux-x86/src/cmd/vendor/github.com/google/pprof/driver/
driver.go 67 Open(name string) (io.WriteCloser, error)
73 // Bool, Int, Float64, and String define new flags,
75 Bool(name string, def bool, usage string) *bool
76 Int(name string, def int, usage string) *int
77 Float64(name string, def float64, usage string) *float64
78 String(name string, def string, usage string) *strin
    [all...]
  /system/extras/simpleperf/
utils.cpp 30 #include <string>
49 const char* OneTimeFreeAllocator::AllocateString(const std::string& s) {
65 FileHelper FileHelper::OpenReadOnly(const std::string& filename) {
70 FileHelper FileHelper::OpenWriteOnly(const std::string& filename) {
81 ArchiveHelper::ArchiveHelper(int fd, const std::string& debug_filename) : valid_(false) {
116 std::vector<std::string> GetEntriesInDir(const std::string& dirpath) {
117 std::vector<std::string> result;
134 std::vector<std::string> GetSubDirs(const std::string& dirpath)
    [all...]
  /external/deqp/external/openglcts/modules/common/
glcShaderLoopTests.cpp 309 string iterMaxStr;
318 iterMaxStr = string(getIntUniformName(numLoopIters)) + "*one";
335 string initValue = isIntCounter ? "0" : "0.05";
336 string loopCountDeclStr = "${COUNTER_PRECISION} ${LOOP_VAR_TYPE} ndx = " + initValue;
337 string loopCmpStr = ("ndx < " + iterMaxStr);
338 string incrementStr;
344 incrementStr = string("ndx += ") + de::toString(1.0f / static_cast<float>(numLoopIters));
346 incrementStr = string("ndx += ") + getFloatFractionUniformName(numLoopIters);
348 incrementStr = string("ndx += ") + getFloatFractionUniformName(numLoopIters) + "*one";
353 string loopPrefix
    [all...]
  /system/vold/
Utils.cpp 69 status_t CreateDeviceNode(const std::string& path, dev_t dev) {
98 status_t DestroyDeviceNode(const std::string& path) {
107 status_t PrepareDir(const std::string& path, mode_t mode, uid_t uid, gid_t gid) {
132 status_t ForceUnmount(const std::string& path) {
162 status_t KillProcessesUsingPath(const std::string& path) {
187 status_t BindMount(const std::string& source, const std::string& target) {
195 bool FindValue(const std::string& raw, const std::string& key, std::string* value)
    [all...]
  /toolchain/binutils/binutils-2.27/gold/testsuite/
dwp_test_1.s 408 .string "test string constant"
470 .string "t"
471 .string ""
472 .string ""
473 .string "e"
474 .string ""
475 .string ""
476 .string "s"
477 .string ""
    [all...]
  /cts/tests/accessibilityservice/src/android/accessibilityservice/cts/
AccessibilityViewTreeReportingTest.java 89 AccessibilityNodeInfo firstFrameLayout = getNodeByText(R.string.firstFrameLayout);
94 AccessibilityNodeInfo firstTextView = getNodeByText(R.string.firstTextView);
98 AccessibilityNodeInfo firstEditText = getNodeByText(R.string.firstEditText);
102 AccessibilityNodeInfo firstButton = getNodeByText(R.string.firstButton);
108 AccessibilityNodeInfo secondFrameLayout = getNodeByText(R.string.secondFrameLayout);
113 AccessibilityNodeInfo secondTextView = getNodeByText(R.string.secondTextView);
117 AccessibilityNodeInfo secondEditText = getNodeByText(R.string.secondEditText);
121 AccessibilityNodeInfo secondButton = getNodeByText(R.string.secondButton);
128 getNodeByText(R.string.rootLinearLayout);
134 getNodeByText(R.string.firstFrameLayout)
    [all...]
  /external/libcxx/test/support/
filesystem_test_helper.hpp 7 #include <string>
118 fs::path make_env_path(std::string p) { return sanitize_path(p); }
120 std::string sanitize_path(std::string raw) {
121 assert(raw.find("..") == std::string::npos);
122 std::string const& root = test_root.native();
127 return std::move(const_cast<std::string&>(tmp.native()));
132 std::string create_file(std::string filename, std::size_t size = 0) {
134 std::string out_str(size, 'a')
    [all...]
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/support/
filesystem_test_helper.hpp 7 #include <string>
118 fs::path make_env_path(std::string p) { return sanitize_path(p); }
120 std::string sanitize_path(std::string raw) {
121 assert(raw.find("..") == std::string::npos);
122 std::string const& root = test_root.native();
127 return std::move(const_cast<std::string&>(tmp.native()));
132 std::string create_file(std::string filename, std::size_t size = 0) {
134 std::string out_str(size, 'a')
    [all...]
  /system/bt/btif/src/
btif_config.cc 26 #include <string.h>
29 #include <string>
94 std::string addrstr = bda.ToString();
107 std::string addrstr = bda.ToString();
128 std::string file_source;
165 const std::string* time_str;
241 bool btif_config_exist(const std::string& section, const std::string& key) {
248 bool btif_config_get_int(const std::string& section, const std::string& key
    [all...]
  /test/vts/drivers/hal/common/driver_manager/
VtsHalDriverManager.cpp 21 #include <string>
36 VtsHalDriverManager::VtsHalDriverManager(const string& spec_dir,
38 const string& callback_socket_name)
44 const string& dll_file_name, const string& spec_lib_file_path,
46 const string& package_name, const string& component_name,
47 const string& hw_binder_service_name) {
64 string driver_lib_path = "";
94 string VtsHalDriverManager::CallFunction(FunctionCallMessage* call_msg)
    [all...]

Completed in 1467 milliseconds

<<221222223224225226227228229230>>