HomeSort by relevance Sort by last modified time
    Searched defs:Strings (Results 76 - 100 of 245) sorted by null

1 2 34 5 6 7 8 910

  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/include/gtest/
gtest-printers.h 381 // types, strings, plain arrays, and pointers).
407 // Overloads for C strings.
434 // Overloads for wide C strings
760 typedef ::std::vector<string> Strings;
784 static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings) {
785 TuplePrefixPrinter<N - 1>::TersePrintPrefixToStrings(t, strings);
788 strings->push_back(ss.str());
799 static void TersePrintPrefixToStrings(const Tuple&, Strings*) {}
815 static void TersePrintPrefixToStrings(const Tuple& t, Strings* strings)
    [all...]
  /prebuilts/tools/common/fest/
fest-util-1.1.3.jar 
  /build/soong/android/
paths.go 21 "strings"
253 if !strings.HasPrefix(path, prefix) {
274 // Strings returns the Paths in string form
275 func (p Paths) Strings() []string {
289 // Strings returns the string forms of the writable paths.
290 func (p WritablePaths) Strings() []string {
345 if strings.HasPrefix(abs, buildroot) {
370 if strings.HasPrefix(abs, buildroot) {
405 if strings.HasPrefix(abs, buildroot) {
714 if path == ".." || strings.HasPrefix(path, "../") || strings.HasPrefix(path, "/")
    [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/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 324 STRINGIFY_CODE(METADATA, STRINGS)
433 outs() << " num-strings = " << NumStrings << " {\n";
443 StringRef Strings = Blob.drop_front(StringsOffset);
449 if (Strings.size() < Size)
453 outs().write_escaped(Strings.slice(0, Size), /*hex=*/true);
455 Strings = Strings.drop_front(Size);
    [all...]
  /external/llvm/tools/llvm-readobj/
ARMAttributeParser.cpp 122 static const char *const Strings[] = {
130 (Value < array_lengthof(Strings)) ? Strings[Value] : nullptr;
153 static const char *const Strings[] = { "Not Permitted", "Permitted" };
157 (Value < array_lengthof(Strings)) ? Strings[Value] : nullptr;
163 static const char *const Strings[] = { "Not Permitted", "Thumb-1", "Thumb-2" };
167 (Value < array_lengthof(Strings)) ? Strings[Value] : nullptr;
173 static const char *const Strings[] =
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
DefaultRequestDirectorTest.java 8 import com.xtremelabs.robolectric.util.Strings;
70 assertThat(Strings.fromStream(response.getEntity().getContent()), equalTo("a happy response body"));
84 assertThat(Strings.fromStream(response.getEntity().getContent()), equalTo("a happy response body"));
96 assertThat(Strings.fromStream(response.getEntity().getContent()), equalTo("a cheery response body"));
118 assertThat(Strings.fromStream(getResponse.getEntity().getContent()), equalTo("a cheery response body"));
123 assertThat(Strings.fromStream(postResponse.getEntity().getContent()), equalTo("a cheery response body"));
135 assertThat(Strings.fromStream(getResponseStream), equalTo("a cheery response body"));
140 assertThat(Strings.fromStream(postResponseStream), equalTo("a cheery response body"));
158 assertThat(Strings.fromStream(response.getEntity().getContent()), equalTo("a cheery response body"));
171 assertThat(Strings.fromStream(response.getEntity().getContent()), equalTo("a gloomy response body"))
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/
WinCOFFObjectWriter.cpp 136 StringTable Strings;
476 size_t StringTableEntry = Strings.insert(S.Name.c_str());
504 size_t StringTableEntry = Strings.insert(S.Name.c_str());
518 // This doesn't seem to be right. Strings referred to from the .data section
883 OS.write((char const *)&Strings.Data.front(), Strings.Data.size());
  /external/swiftshader/third_party/subzero/src/
IceGlobalContext.h 486 return LockedPtr<StringPool>(Strings.get(), &StringsLock);
521 std::unique_ptr<StringPool> Strings;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
batclass.h 110 WCHAR Strings[1];
  /art/test/021-string2/src/
Main.java 83 String[] strings = test.split("/"); local
84 Assert.assertEquals(4, strings.length);
89 Class<?> Strings = Class.forName("com.android.org.bouncycastle.util.Strings");
90 Method fromUTF8ByteArray = Strings.getDeclaredMethod("fromUTF8ByteArray", byte[].class);
136 String[] strings = { local
139 // Category 0, ASCII strings:
157 // Category 1, ASCII strings:
175 // Category 2, ASCII strings,
194 // Category 3, ASCII strings
    [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...]
  /external/r8/src/test/java/com/android/tools/r8/
ToolHelper.java 42 import joptsimple.internal.Strings;
156 result.add(Strings.join(classpaths, ":"));
  /prebuilts/go/darwin-x86/src/encoding/xml/
marshal_test.go 14 "strings"
295 type Strings struct {
1232 ExpectXML: `<Strings><A></A></Strings>`,
1233 Value: &Strings{},
    [all...]
  /prebuilts/go/linux-x86/src/encoding/xml/
marshal_test.go 14 "strings"
295 type Strings struct {
1232 ExpectXML: `<Strings><A></A></Strings>`,
1233 Value: &Strings{},
    [all...]
  /external/swiftshader/third_party/LLVM/lib/TableGen/
Record.cpp 34 /// good way to indicate tombstone or empty keys for strings, we want
38 /// that DenseMap is really not appropriate for general strings.
    [all...]
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/robolectric/v3/
robolectric-utils-3.1-SNAPSHOT.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
yjp-controller-api-redist.jar 
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
term.h 226 #define back_tab CUR Strings[0]
227 #define bell CUR Strings[1]
228 #define carriage_return CUR Strings[2]
229 #define change_scroll_region CUR Strings[3]
230 #define clear_all_tabs CUR Strings[4]
231 #define clear_screen CUR Strings[5]
232 #define clr_eol CUR Strings[6]
233 #define clr_eos CUR Strings[7]
234 #define column_address CUR Strings[8]
235 #define command_character CUR Strings[9
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
term.h 226 #define back_tab CUR Strings[0]
227 #define bell CUR Strings[1]
228 #define carriage_return CUR Strings[2]
229 #define change_scroll_region CUR Strings[3]
230 #define clear_all_tabs CUR Strings[4]
231 #define clear_screen CUR Strings[5]
232 #define clr_eol CUR Strings[6]
233 #define clr_eos CUR Strings[7]
234 #define column_address CUR Strings[8]
235 #define command_character CUR Strings[9
    [all...]
  /external/r8/deps/
jopt-simple-4.6.jar 
  /prebuilts/misc/common/robolectric/lib/
robolectric-utils-3.1.1.jar 
  /prebuilts/tools/common/m2/repository/com/beust/jcommander/1.27/
jcommander-1.27.jar 
  /prebuilts/tools/common/m2/repository/net/sf/jopt-simple/jopt-simple/4.9/
jopt-simple-4.9.jar 

Completed in 819 milliseconds

1 2 34 5 6 7 8 910