/device/generic/opengl-transport/host/commands/emugen/ |
D | Parser_unittest.cpp | 34 std::string text = "When parsing '"; in TEST() local 35 text += kData[n].input; in TEST() 36 text += "'"; in TEST() 39 EXPECT_STREQ(kData[n].expected, result.c_str()) << text; in TEST() 65 std::string text = "When parsing '"; in TEST() local 66 text += kData[n].input; in TEST() 67 text += "'"; in TEST() 72 &error)) << text; in TEST() 74 EXPECT_STREQ(kData[n].expectedType, vartype.c_str()) << text; in TEST() 76 EXPECT_STREQ(kData[n].expectedError, error.c_str()) << text; in TEST() [all …]
|
/device/generic/vulkan-cereal/protocols/generic-apigen/ |
D | Parser_unittest.cpp | 34 std::string text = "When parsing '"; in TEST() local 35 text += kData[n].input; in TEST() 36 text += "'"; in TEST() 39 EXPECT_STREQ(kData[n].expected, result.c_str()) << text; in TEST() 65 std::string text = "When parsing '"; in TEST() local 66 text += kData[n].input; in TEST() 67 text += "'"; in TEST() 72 &error)) << text; in TEST() 74 EXPECT_STREQ(kData[n].expectedType, vartype.c_str()) << text; in TEST() 76 EXPECT_STREQ(kData[n].expectedError, error.c_str()) << text; in TEST() [all …]
|
/device/google/cuttlefish/host/commands/modem_simulator/ |
D | stk_service.cpp | 75 auto text = setup_menu->FindAttribute("text"); in HandleReportStkServiceIsRunning() local 78 unsol_command += text ? text->Value() : ""; in HandleReportStkServiceIsRunning() 141 auto text = select_item->FindAttribute("text"); in HandleSendEnvelope() local 142 std::string text_value = text ? text->Value() : ""; in HandleSendEnvelope() 235 auto text = select_item->FindAttribute("text"); in OnUnsolicitedCommandForTR() local 236 if (text) { in OnUnsolicitedCommandForTR() 238 unsol_command += text->Value(); in OnUnsolicitedCommandForTR() 246 auto text = select_item->FindAttribute("text"); in OnUnsolicitedCommandForTR() local 247 if (text) { in OnUnsolicitedCommandForTR() 249 unsol_command += text->Value(); in OnUnsolicitedCommandForTR() [all …]
|
D | sim_service.cpp | 170 XMLElement* parent, const char* name, const char* text) { in AppendNewElementWithText() argument 172 auto xml_text = doc.NewText(text); in AppendNewElementWithText() 532 const char* text = "PINSTATE_UNKNOWN"; in SavePinStateToIccProfile() local 535 text = "PINSTATE_ENABLED_BLOCKED"; in SavePinStateToIccProfile() 540 text = "PINSTATE_ENABLED_NOT_VERIFIED"; in SavePinStateToIccProfile() 548 pin_state = sim_file_system_.AppendNewElementWithText(pin_profile, "PINSTATE", text); in SavePinStateToIccProfile() 550 pin_state->SetText(text); in SavePinStateToIccProfile() 648 const char* text = "DISABLE"; in SaveFacilityLockToIccProfile() local 652 text = "ENABLE"; in SaveFacilityLockToIccProfile() 654 text = "DISABLE"; in SaveFacilityLockToIccProfile() [all …]
|
/device/google/cuttlefish/host/commands/metrics/ |
D | host_receiver.cc | 64 std::string text(msg.mesg_text); in ServerLoop() local 65 LOG(INFO) << "Metrics host received: " << text; in ServerLoop() 67 if (text == "VMStart") { in ServerLoop() 69 } else if (text == "VMStop") { in ServerLoop() 71 } else if (text == "DeviceBoot") { in ServerLoop() 73 } else if (text == "LockScreen") { in ServerLoop() 77 LOG(ERROR) << "Message failed to send to ClearCut: " << text; in ServerLoop()
|
/device/google/cuttlefish/host/frontend/webrtc/html_client/ |
D | style.css | 192 text-align: center; 225 .bluetooth-text, .bluetooth-text-bold, .bluetooth-text-field input { 228 .bluetooth-text, .bluetooth-text-bold { 231 .bluetooth-text-bold { 235 text-align: center; 245 .bluetooth-text-field input { 258 .location-text, .location-text-bold, .location-text-field input { 261 .location-text, .location-text-bold { 264 .location-text-bold { 268 text-align: center; [all …]
|
/device/google/cuttlefish/host/commands/modem_simulator/unittest/ |
D | iccfile.txt | 159 <SETUPMENU cmd="25" text="D0388103012500820281820509804E2D56FD79FB52A88F10508000530049004D5FEB63777… 160 …<SELECTITEM id="1" cmd="24" menuId="50" text="D02D8103012400820281828F0A018053E34EE48BBE7F6E8F0A02… 161 …<SELECTITEM id="1" cmd="24" menuId="01" text="D0218103012400820281828F0A01806DFB52A083DC53558F0A02… 162 …<DISPLAYTEXT id="1" cmd="21" menuId="01" text="D0228103012181820281028D1708662F542666F465B04E0B8F7… 163 …<DISPLAYTEXT id="2" cmd="21" menuId="02" text="D01A8103012101820281028D0F0883DC5355522096646210529… 165 …<DISPLAYTEXT id="2" cmd="21" menuId="02" text="D081BB8103012181820281028D81AF08201C00530049004D5FE… 166 …<DISPLAYTEXT id="3" cmd="21" menuId="03" text="D02E8103012181820281028D23084E2D56FD79FB52A8901A4FE… 169 …<SELECTITEM id="2" cmd="24" menuId="4E" text="D04E810301240082028182850F80005500530049004D53614FE1… 170 …<DISPLAYTEXT id="1" cmd="21" menuId="01" text="D03A8103012181820281028D2F08666E901A005500530049004… 171 …<DISPLAYTEXT id="2" cmd="21" menuId="02" text="D05C8103012181820281028D510875358BDD53F77801672C5B5… [all …]
|
/device/google/atv/libraries/BluetoothServices/src/com/google/android/tv/btservices/pairing/ |
D | BluetoothScannerFragment.java | 34 import android.text.Spannable; 35 import android.text.SpannableStringBuilder; 36 import android.text.style.ImageSpan; 195 String text; in updatePairingStatus() local 202 text = String.format(resStr, device.getName()); in updatePairingStatus() 203 Toast.makeText(getActivity(), text, Toast.LENGTH_LONG).show(); in updatePairingStatus() local 212 text = String.format(resStr, device.getName()); in updatePairingStatus() 213 Toast.makeText(getActivity(), text, Toast.LENGTH_LONG).show(); in updatePairingStatus() local
|
/device/google/atv/libraries/BluetoothServices/src/com/google/android/tv/btservices/settings/ |
D | BluetoothDevicePreferenceFragment.java | 31 import android.text.TextUtils; 200 String text; in updatePairingStatusImpl() local 213 text = String.format(resStr, mDevice.getName()); in updatePairingStatusImpl() 214 Toast.makeText(getActivity(), text, Toast.LENGTH_LONG).show(); in updatePairingStatusImpl() local 220 text = String.format(resStr, mDevice.getName()); in updatePairingStatusImpl() 221 Toast.makeText(getActivity(), text, Toast.LENGTH_LONG).show(); in updatePairingStatusImpl() local 275 public void onText(String key, String text) { in onText() argument 283 provider.renameDevice(mDevice, text); in onText()
|
/device/generic/vulkan-cereal/fake-android-guest/androidImpl/ |
D | RefBase.cpp | 233 String8 text; in printRefs() local 240 text.append(buf); in printRefs() 241 printRefsLocked(&text, mStrongRefs); in printRefs() 245 text.append(buf); in printRefs() 246 printRefsLocked(&text, mWeakRefs); in printRefs() 254 (void)write(rc, text.string(), text.length()); in printRefs()
|
/device/google/cuttlefish/host/commands/cvd_import_locations/unittest/ |
D | gpx_parser_test.cc | 27 bool ParseGpxFile(GpsFixArray* locations, char* text, std::string* error) { in ParseGpxFile() argument 34 myfile << text; in ParseGpxFile() 40 bool ParseGpxString(GpsFixArray* locations, char* text, std::string* error) { in ParseGpxString() argument 42 result = GpxParser::parseString(text, strlen(text), locations, error); in ParseGpxString()
|
D | kml_parser_test.cc | 26 bool ParseKmlFile(GpsFixArray* locations, char* text, std::string* error) { in ParseKmlFile() argument 33 myfile << text; in ParseKmlFile() 39 bool ParseKmlString(GpsFixArray* locations, char* text, std::string* error) { in ParseKmlString() argument 41 result = KmlParser::parseString(text, strlen(text), locations, error); in ParseKmlString()
|
/device/google/atv/TvSampleLeanbackLauncher/src/main/java/com/example/sampleleanbacklauncher/notifications/ |
D | TvNotification.java | 62 public TvNotification(String key, String packageName, String title, String text, in TvNotification() argument 69 mText = text; in TvNotification() 149 String text = cursor.getString(index++); in fromCursor() local 165 return new TvNotification(key, packageName, title, text, dismissible, ongoing, in fromCursor()
|
/device/google/cuttlefish/host/libs/confui/ |
D | cbor.cc | 61 Cbor::Error Cbor::CheckUTF8Copy(const std::string& text) { in CheckUTF8Copy() argument 62 auto begin = text.cbegin(); in CheckUTF8Copy() 63 auto end = text.cend(); in CheckUTF8Copy()
|
D | host_renderer.cc | 127 auto SetText(const std::string& text) { in SetText() argument 129 {text.c_str(), text.c_str() + text.size()}); in SetText()
|
/device/google/cuttlefish/common/libs/utils/ |
D | flag_parser.cpp | 363 Flag HelpFlag(const std::vector<Flag>& flags, const std::string& text) { in HelpFlag() argument 365 if (text.size() > 0) { in HelpFlag() 366 LOG(INFO) << text; in HelpFlag() 417 const std::string& text) { in HelpXmlFlag() argument 419 auto setter = [name, &out, &value, &text, &flags](const FlagMatch& match) { in HelpXmlFlag() 428 if (!text.empty()) { in HelpXmlFlag() 429 out << text << std::endl; in HelpXmlFlag()
|
/device/google/contexthub/firmware/os/platform/stm32/lkr/ |
D | stm32f4xx.os.lkr | 20 .text : { 22 *(.text) *(.text.*) ;
|
/device/sample/apps/tv/SetupCustomizationSample/app/src/main/java/com/google/android/tv/setup/customizationsample/ |
D | BaseActivity.java | 101 protected void showText1(String text) { in showText1() argument 102 tv1.setText(text); in showText1() 105 protected void showText2(String text) { in showText2() argument 106 tv2.setText(text); in showText2()
|
/device/sample/apps/tv/SetupValidation/app/src/main/java/com/google/android/tv/setup/customizationsample/ |
D | BaseActivity.java | 101 protected void showText1(String text) { in showText1() argument 102 tv1.setText(text); in showText1() 105 protected void showText2(String text) { in showText2() argument 106 tv2.setText(text); in showText2()
|
/device/google/cuttlefish/host/frontend/webrtc/html_client/js/ |
D | app.js | 100 setHardwareDetailsText(text) { argument 101 this.#element.dataset.hardwareDetailsText = text; 105 setDeviceStateDetailsText(text) { argument 106 this.#element.dataset.deviceStateDetailsText = text; 603 let text = `Display ${displayId} `; 617 text += `${streamWidth}x${streamHeight}`; 622 text += ` (Rotated ${this.#currentRotation}deg)` 625 l.textContent = text;
|
/device/google/cuttlefish/shared/minidroid/sample/ |
D | server.cpp | 36 ndk::ScopedAStatus printText(const std::string& text) override { in start_test_service() argument 37 ALOGI("%s\n", text.c_str()); in start_test_service()
|
/device/generic/vulkan-cereal/fake-android-guest/android/ |
D | log.h | 109 int __android_log_write(int prio, const char* tag, const char* text); 177 const char* text);
|
/device/google/cuttlefish/host/libs/web/http_client/ |
D | http_client.cc | 152 std::string UrlEscape(const std::string& text) override { in UrlEscape() argument 153 char* escaped_str = curl_easy_escape(curl_, text.c_str(), text.size()); in UrlEscape() 344 std::string UrlEscape(const std::string& text) override { in UrlEscape() argument 345 return inner_client_.UrlEscape(text); in UrlEscape()
|
/device/google/trout/hal/dumpstate/aidl/1.0/ |
D | DumpstateDevice.cpp | 126 bool DumpstateDevice::dumpString(const std::string& text, const fs::path& dumpPath) { in dumpString() argument 134 logFile.write(text.c_str(), text.size()); in dumpString()
|
/device/google/cuttlefish/guest/monitoring/cuttlefish_service/java/com/android/google/gce/gceservice/ |
D | EventReporter.java | 23 import java.text.DateFormat; 24 import java.text.SimpleDateFormat;
|