HomeSort by relevance Sort by last modified time
    Searched defs:stripped (Results 1 - 25 of 198) sorted by null

1 2 3 4 5 6 7 8

  /external/elfutils/tests/
test-flag-nobits.c 34 Elf *stripped = elf_begin (fd, ELF_C_READ, NULL); local
37 while ((scn = elf_nextscn (stripped, scn)) != NULL)
40 elf_end (stripped);
  /external/mockito/src/main/java/org/mockito/internal/configuration/plugins/
PluginFileReader.java 15 String stripped = stripCommentAndWhitespace(line); local
16 if (stripped.length() > 0) {
17 return stripped;
  /frameworks/base/tools/aapt2/link/
AutoVersioner.cpp 89 std::vector<Style::Entry> stripped; local
100 stripped.emplace_back(std::move(*iter));
116 if (min_sdk_stripped && !stripped.empty()) {
131 // Move the previously stripped attributes into this style.
134 std::make_move_iterator(stripped.begin()),
135 std::make_move_iterator(stripped.end()));
  /external/protobuf/src/google/protobuf/compiler/csharp/
csharp_helpers.cc 269 std::string stripped = TryRemovePrefix(enum_name, enum_value_name); local
270 std::string result = ShoutyToPascalCase(stripped);
  /external/toybox/toys/posix/
file.c 50 int stripped = 1; local
133 // We need to read the shdrs for stripped/unstripped and any notes.
144 stripped = 0;
177 printf(", %sstripped", stripped ? "" : "not ");
  /frameworks/base/core/java/android/text/method/
DigitsKeyListener.java 387 SpannableStringBuilder stripped = null; local
411 return ""; // Only one character, and it was stripped.
414 if (stripped == null) {
415 stripped = new SpannableStringBuilder(source, start, end);
418 stripped.delete(i - start, i + 1 - start);
422 if (stripped != null) {
423 return stripped;
  /external/robolectric/v3/libs/
sqlite4java-0.282.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
sqlite4java-0.282.jar 
  /prebuilts/misc/common/robolectric/3.4.2/lib/
sqlite4java-0.282.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
sqlite4java-0.282.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
sqlite4java-0.282.jar 
  /prebuilts/tools/common/m2/repository/com/almworks/sqlite4java/sqlite4java/0.282/
sqlite4java-0.282.jar 
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
cgi.py 873 def stripped(self, key): member in class:FormContent
    [all...]
  /external/python/cpython2/Lib/
cgi.py 881 def stripped(self, key): member in class:FormContent
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
cgi.py 872 def stripped(self, key): member in class:FormContent
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
cgi.py 872 def stripped(self, key): member in class:FormContent
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cgi.py 872 def stripped(self, key): member in class:FormContent
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cgi.py 872 def stripped(self, key): member in class:FormContent
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/map/
BluetoothMapMessageListingElement.java 275 String stripped = BluetoothMapUtils.stripInvalidChars(mSubject); local
280 stripped = stripped.replaceAll("[\\P{ASCII}&\"><]", "");
281 if (stripped.isEmpty()) {
282 stripped = "---";
287 stripped.substring(0, stripped.length() < 256 ? stripped.length() : 256));
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
HttpUrl.java 339 * <li>Whitespace and control characters in the fragment will be stripped.
352 String stripped = uri.replaceAll("[\\u0000-\\u001F\\u007F-\\u009F\\p{javaWhitespace}]", ""); local
353 return URI.create(stripped);
    [all...]
  /external/python/cpython3/Modules/
zipimport.c 1403 PyObject *toc_entry, *stripped; local
    [all...]
  /external/elfutils/src/
unstrip.c 1 /* Combine stripped files with separate symbols and debug information.
351 Because of this, the related sections can shrink in the stripped
2079 Elf *stripped = elf_begin (stripped_fd, ELF_C_READ, NULL); local
2126 Elf *stripped = dwfl_module_getelf (mod, &bias); local
    [all...]
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
StringUtil.java 529 * @return the stripped string
598 * @return the stripped string or <code>null</code> if the string
614 * @return the stripped string or <code>null</code> if the string
630 * @return the stripped string or <code>null</code> if the string
646 * @return the stripped string or <code>null</code> if the string
1430 String stripped = htmlTagPattern.matcher(string).replaceAll(""); local
    [all...]
  /build/make/core/
definitions.mk 65 # The list of dynamic binaries that haven't been stripped/compressed/etc.
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/psdk_inc/
_dbg_common.h 601 WINBOOL stripped; member in struct:_SYMSRV_INDEX_INFO
614 WINBOOL stripped; member in struct:_SYMSRV_INDEX_INFOW
    [all...]

Completed in 1763 milliseconds

1 2 3 4 5 6 7 8