HomeSort by relevance Sort by last modified time
    Searched defs:Strings (Results 1 - 24 of 24) sorted by null

  /external/emma/core/java12/com/vladium/emma/report/html/doc/
Text.java 11 import com.vladium.util.Strings;
33 out.write (Strings.HTMLEscapeSP (m_text));
35 out.write (Strings.HTMLEscape (m_text));
AttributeSet.java 15 import com.vladium.util.Strings;
75 Strings.HTMLEscape (value, m_buf);
  /external/guava/guava-tests/test/com/google/common/base/
StringsTest.java 26 * Unit test for {@link Strings}.
33 assertEquals("", Strings.nullToEmpty(null));
34 assertEquals("", Strings.nullToEmpty(""));
35 assertEquals("a", Strings.nullToEmpty("a"));
39 assertNull(Strings.emptyToNull(null));
40 assertNull(Strings.emptyToNull(""));
41 assertEquals("a", Strings.emptyToNull("a"));
45 assertTrue(Strings.isNullOrEmpty(null));
46 assertTrue(Strings.isNullOrEmpty(""));
47 assertFalse(Strings.isNullOrEmpty("a"))
    [all...]
  /cts/libs/vogar-expect/src/vogar/util/
Strings.java 36 * Utility methods for strings.
38 public class Strings {
  /external/bouncycastle/src/main/java/org/bouncycastle/util/
Strings.java 6 public final class Strings
  /external/emma/core/java12/com/vladium/util/
Strings.java 7 * $Id: Strings.java,v 1.1.1.1 2004/05/09 16:57:55 vlad_r Exp $
24 abstract class Strings
33 public static String toListForm (final String [] strings, final char delimiter)
35 if (strings == null) return null;
36 if (strings.length == 0) return "";
39 for (int i = 0, iLimit = strings.length; i < iLimit; ++ i)
42 s.append (strings [i]);
48 public static String [] removeDuplicates (final String [] strings, final boolean removeNull)
50 if (strings == null) return strings;
    [all...]
  /external/guava/guava/src/com/google/common/base/
Strings.java 38 public final class Strings {
39 private Strings() {}
69 * direction," converting empty strings to {@code null}, you can use {@link
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
SampleElements.java 44 public static class Strings extends SampleElements<String> {
45 public Strings() {
  /external/chromium/testing/gtest/include/gtest/
gtest-printers.h 381 // types, strings, plain arrays, and pointers).
407 // Overloads for C strings.
434 // Overloads for wide C strings
701 typedef ::std::vector<string> Strings;
725 static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) {
726 TuplePrefixPrinter<N - 1>::TersePrintPrefixToStrings(t, strings);
729 strings->push_back(ss.str());
740 static void TersePrintPrefixToStrings(const Tuple&, Strings*) {}
756 static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings)
    [all...]
  /external/clang/tools/libclang/
CXLoadedDiagnostic.cpp 32 // Extend CXDiagnosticSetImpl which contains strings for diagnostics.
35 typedef llvm::DenseMap<unsigned, llvm::StringRef> Strings;
46 Strings Categories;
47 Strings WarningFlags;
48 Strings FileNames;
223 Strings &strings, llvm::StringRef errorContext,
478 Strings &strings,
488 strings[Record[0]] = RetStr
    [all...]
  /external/gtest/include/gtest/
gtest-printers.h 381 // types, strings, plain arrays, and pointers).
407 // Overloads for C strings.
434 // Overloads for wide C strings
701 typedef ::std::vector<string> Strings;
725 static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) {
726 TuplePrefixPrinter<N - 1>::TersePrintPrefixToStrings(t, strings);
729 strings->push_back(ss.str());
740 static void TersePrintPrefixToStrings(const Tuple&, Strings*) {}
756 static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings)
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/
gtest-printers.h 381 // types, strings, plain arrays, and pointers).
407 // Overloads for C strings.
434 // Overloads for wide C strings
701 typedef ::std::vector<string> Strings;
725 static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) {
726 TuplePrefixPrinter<N - 1>::TersePrintPrefixToStrings(t, strings);
729 strings->push_back(ss.str());
740 static void TersePrintPrefixToStrings(const Tuple&, Strings*) {}
756 static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings)
    [all...]
  /external/clang/utils/TableGen/
ClangAttrEmitter.cpp 28 std::vector<StringRef> Strings;
29 Strings.reserve(List->getSize());
36 Strings.push_back(S->getValue());
41 return Strings;
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/xml/
ReportGenerator.java 24 import com.vladium.util.Strings;
386 m_out.write (Strings.HTMLEscape (item.getName ()));
439 m_out.write (Strings.HTMLEscape (attr.getName ()));
442 m_out.write (Strings.HTMLEscape (buf.toString ()));
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 137 StringTable Strings;
478 size_t StringTableEntry = Strings.insert(S.Name.c_str());
500 size_t StringTableEntry = Strings.insert(S.Name.c_str());
514 // This doesn't seem to be right. Strings referred to from the .data section
889 OS.write((char const *)&Strings.Data.front(), Strings.Data.size());
  /external/clang/lib/Sema/
SemaExprObjC.cpp 35 Expr **strings,
37 StringLiteral **Strings = reinterpret_cast<StringLiteral**>(strings);
39 // Most ObjC strings are formed out of a single piece. However, we *can*
40 // have strings formed out of multiple @ strings with multiple pptokens in
43 StringLiteral *S = Strings[0];
47 // Concatenate objc strings.
52 S = Strings[i];
54 // ObjC strings can't be wide or UTF
    [all...]
  /external/llvm/lib/TableGen/
Record.cpp 37 /// good way to indicate tombstone or empty keys for strings, we want
41 /// that DenseMap is really not appropriate for general strings.
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
term.h 222 #define back_tab CUR Strings[0]
223 #define bell CUR Strings[1]
224 #define carriage_return CUR Strings[2]
225 #define change_scroll_region CUR Strings[3]
226 #define clear_all_tabs CUR Strings[4]
227 #define clear_screen CUR Strings[5]
228 #define clr_eol CUR Strings[6]
229 #define clr_eos CUR Strings[7]
230 #define column_address CUR Strings[8]
231 #define command_character CUR Strings[9
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
term.h 222 #define back_tab CUR Strings[0]
223 #define bell CUR Strings[1]
224 #define carriage_return CUR Strings[2]
225 #define change_scroll_region CUR Strings[3]
226 #define clear_all_tabs CUR Strings[4]
227 #define clear_screen CUR Strings[5]
228 #define clr_eol CUR Strings[6]
229 #define clr_eos CUR Strings[7]
230 #define column_address CUR Strings[8]
231 #define command_character CUR Strings[9
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
term.h 222 #define back_tab CUR Strings[0]
223 #define bell CUR Strings[1]
224 #define carriage_return CUR Strings[2]
225 #define change_scroll_region CUR Strings[3]
226 #define clear_all_tabs CUR Strings[4]
227 #define clear_screen CUR Strings[5]
228 #define clr_eol CUR Strings[6]
229 #define clr_eos CUR Strings[7]
230 #define column_address CUR Strings[8]
231 #define command_character CUR Strings[9
    [all...]
  /frameworks/compile/mclinker/utils/gtest/include/
gtest.h 273 // GetArgvs() - returns the command line as a vector of strings.
352 // strings.h (tracked in
354 # include <strings.h> // Native Client doesn't provide strings.h.
    [all...]
  /external/emma/lib/
emma.jar 
  /prebuilts/tools/common/guava-tools/
guava-10.0.1.jar 
  /prebuilt/common/tradefed/
tradefed-prebuilt.jar 

Completed in 995 milliseconds