HomeSort by relevance Sort by last modified time
    Searched refs:Trim (Results 1 - 25 of 227) sorted by null

1 2 3 4 5 6 7 8 910

  /art/test/596-monitor-inflation/
monitor_inflation.cc 27 Runtime::Current()->GetHeap()->Trim(Thread::Current());
  /system/vold/
IdleMaint.h 25 void Trim(const android::sp<android::os::IVoldTaskListener>& listener);
  /external/ImageMagick/PerlMagick/demo/
settings.pl 28 $e = $im->Trim();
  /external/dng_sdk/source/
dng_simple_image.h 27 /// dng_image derived class with simple Trim and Rotate functionality.
55 /// Trim image data outside of given bounds. Memory is not reallocated or freed.
57 virtual void Trim (const dng_rect &r);
  /prebuilts/go/darwin-x86/src/cmd/go/internal/cache/
cache_test.go 253 // Trim should leave everything alone: it's all too new.
254 c.Trim()
259 data, err := ioutil.ReadFile(filepath.Join(dir, "trim.txt"))
265 // Trim less than a day later should not do any work at all.
267 c.Trim()
272 data2, err := ioutil.ReadFile(filepath.Join(dir, "trim.txt"))
277 t.Fatalf("second trim did work: %q -> %q", data, data2)
280 // Fast forward and do another trim just before the 5 day cutoff.
287 c.Trim()
294 t.Fatalf("Trim did not remove dummyID(2)"
    [all...]
  /prebuilts/go/linux-x86/src/cmd/go/internal/cache/
cache_test.go 253 // Trim should leave everything alone: it's all too new.
254 c.Trim()
259 data, err := ioutil.ReadFile(filepath.Join(dir, "trim.txt"))
265 // Trim less than a day later should not do any work at all.
267 c.Trim()
272 data2, err := ioutil.ReadFile(filepath.Join(dir, "trim.txt"))
277 t.Fatalf("second trim did work: %q -> %q", data, data2)
280 // Fast forward and do another trim just before the 5 day cutoff.
287 c.Trim()
294 t.Fatalf("Trim did not remove dummyID(2)"
    [all...]
  /system/core/base/
errors_windows.cpp 57 msg = android::base::Trim(msg);
strings_test.cpp 87 ASSERT_EQ("", android::base::Trim(""));
91 ASSERT_EQ("foo", android::base::Trim("foo"));
95 ASSERT_EQ("foo", android::base::Trim(" foo"));
99 ASSERT_EQ("foo", android::base::Trim("foo "));
103 ASSERT_EQ("foo", android::base::Trim(" foo "));
107 ASSERT_EQ("foo bar", android::base::Trim("foo bar"));
111 ASSERT_EQ("foo", android::base::Trim("\v\tfoo\n\f"));
  /system/core/property_service/libpropertyinfoserializer/
property_info_file.cpp 26 using android::base::Trim;
104 auto trimmed_line = Trim(line);
  /frameworks/native/services/vr/performanced/
task.cpp 105 return Trim(line.substr(offset + field.size() + 1));
126 std::string value = Trim(line.substr(offset + 1));
159 return Trim(line);
string_trim.h 32 inline std::string Trim(std::string subject) {
  /hardware/nxp/secure_element/libese-spi/p73/utils/
config.cpp 97 line = Trim(line);
105 string key(Trim(line.substr(0, search)));
106 string value_string(Trim(line.substr(search + 1, string::npos)));
  /system/nfc/utils/
config.cc 122 line = Trim(line);
130 string key(Trim(line.substr(0, search)));
131 string value_string(Trim(line.substr(search + 1, string::npos)));
  /system/connectivity/wificond/tests/integration/
process_utils.cpp 34 using android::base::Trim;
48 output = Trim(output);
  /bootable/recovery/otautil/
ThermalUtil.cpp 72 if (!android::base::ParseInt(android::base::Trim(content), &temperature)) {
  /external/llvm/tools/llvm-cov/
CoverageReport.cpp 29 TrimKind Trim;
33 : Str(Str), Width(Width), Trim(WidthTrim), Alignment(LeftAlignment) {}
36 Trim = Value;
66 switch (Trim) {
  /external/lzma/CPP/7zip/UI/Console/
UserInputUtils.cpp 35 scannedString.Trim();
  /system/core/fs_mgr/
fs_mgr_boot_config.cpp 34 for (const auto& entry : android::base::Split(android::base::Trim(cmdline), " ")) {
  /system/tools/aidl/
type_namespace.h 230 using android::base::Trim;
232 string name = Trim(aidl_type.GetName());
250 using android::base::Trim;
252 std::string name = Trim(raw_name);
325 using android::base::Trim;
328 std::string name = Trim(aidl_type.GetName());
344 std::string container = Trim(name.substr(0, opening_brace));
  /device/linaro/bootloader/edk2/BaseTools/Source/
BinaryFiles.txt 57 Trim.exe
  /system/core/libsuspend/
autosuspend_wakeup_count.cpp 44 using android::base::Trim;
80 wakeup_count = Trim(wakeup_count);
  /device/google/marlin/health/
LearnedCapacityBackupRestore.cpp 74 buffer = android::base::Trim(buffer);
  /device/google/wahoo/health/
LearnedCapacityBackupRestore.cpp 74 buffer = android::base::Trim(buffer);
  /system/core/base/include/android-base/
strings.h 36 std::string Trim(const std::string& s);
  /system/core/init/test_service/
test_service.cpp 54 std::string value = android::base::Trim(tokens[1]);

Completed in 726 milliseconds

1 2 3 4 5 6 7 8 910