HomeSort by relevance Sort by last modified time
    Searched defs:String (Results 51 - 75 of 1088) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/swiftshader/third_party/LLVM/unittests/Support/
RegexTest.cpp 47 std::string String="axxb";
48 String[2] = '\0';
50 EXPECT_TRUE(r4.match(String, &Matches));
52 EXPECT_EQ(String, Matches[0].str());
55 std::string NulPattern="X[0-9]+X([a-f])?:([0-9]+)";
56 String="YX99a:513b";
59 EXPECT_FALSE(r5.match(String));
61 String[3]='\0';
62 EXPECT_TRUE(r5.match(String));
    [all...]
  /external/vogar/src/vogar/target/
PrintStreamDecorator.java 27 print(String.valueOf(l));
31 print(String.valueOf(i));
35 print(String.valueOf(f));
39 print(String.valueOf(d));
43 print(String.valueOf(s));
47 print(String.valueOf(c));
54 @Override public abstract void print(String str);
63 * and we must manually override println(String) to ensure that
66 @Override public final void println(String s) {
71 println(String.valueOf(l))
    [all...]
  /libcore/luni/src/test/java/libcore/java/nio/file/
FileSystemExceptionTest.java 27 public void test_constructor$String() {
35 public void test_constructor$String$String$String() {
43 String hex = "aced0005737200216a6176612e6e696f2e66696c652e46696c6553797374656d4578636570746"
80 String hex1 = SerializationTester.serializeHex(exception).toString();
  /prebuilts/go/darwin-x86/doc/progs/
eff_sequence.go 32 func (s Sequence) String() string {
  /prebuilts/go/darwin-x86/src/cmd/internal/obj/
addrtype_string.go 17 func (i AddrType) String() string {
  /prebuilts/go/darwin-x86/src/net/
file.go 12 type fileAddr string
14 func (fileAddr) Network() string { return "file+net" }
15 func (f fileAddr) String() string { return string(f) }
  /prebuilts/go/linux-x86/doc/progs/
eff_sequence.go 32 func (s Sequence) String() string {
  /prebuilts/go/linux-x86/src/cmd/internal/obj/
addrtype_string.go 17 func (i AddrType) String() string {
  /prebuilts/go/linux-x86/src/net/
file.go 12 type fileAddr string
14 func (fileAddr) Network() string { return "file+net" }
15 func (f fileAddr) String() string { return string(f) }
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/experimental/string.view/string.view.ops/
to_string.pass.cpp 25 typedef std::basic_string<CharT> String ;
28 String str1 = (String) sv1;
42 String str1 = (String) sv1;
  /developers/build/prebuilts/gradle/DocumentCentricApps/Application/src/main/java/com/example/android/documentcentricapps/
NewDocumentActivity.java 50 setDocumentCounterText(R.string.hello_new_document_counter);
59 setDocumentCounterText(R.string.reusing_document_counter);
69 .setText(String.format(getString(resId), String.valueOf(mDocumentCount)));
  /developers/samples/android/ui/activitytasks/DocumentCentricApps/Application/src/main/java/com/example/android/documentcentricapps/
NewDocumentActivity.java 50 setDocumentCounterText(R.string.hello_new_document_counter);
59 setDocumentCounterText(R.string.reusing_document_counter);
69 .setText(String.format(getString(resId), String.valueOf(mDocumentCount)));
  /development/samples/browseable/DocumentCentricApps/src/com.example.android.documentcentricapps/
NewDocumentActivity.java 50 setDocumentCounterText(R.string.hello_new_document_counter);
59 setDocumentCounterText(R.string.reusing_document_counter);
69 .setText(String.format(getString(resId), String.valueOf(mDocumentCount)));
  /libcore/luni/src/test/java/tests/java/lang/String/
Tests.java 17 package tests.java.lang.String;
22 * Tests for the class {@link String}.
43 String s1 = "ABCDEFG";
44 String s2 = "abcdefg";
46 assertTrue(String.CASE_INSENSITIVE_ORDER.compare(s1, s2) == 0);
  /build/blueprint/bootstrap/bpglob/
bpglob.go 30 out = flag.String("o", "", "file to write list of files that match glob")
39 type multiArg []string
41 func (m *multiArg) String() string {
45 func (m *multiArg) Set(s string) error {
  /build/blueprint/proptools/
proptools.go 24 func PropertyNameForField(fieldName string) string {
26 propertyName := string(unicode.ToLower(r))
33 func FieldNameForProperty(propertyName string) string {
35 fieldName := string(unicode.ToUpper(r))
42 func HasTag(field reflect.StructField, name, value string) bool {
58 // StringPtr returns a pointer to a new string containing the given value.
59 func StringPtr(s string) *string {
    [all...]
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
InvalidBenchmarkException.java 24 public InvalidBenchmarkException(String message, Object... args) {
25 super(String.format(message, fixArgs(args)));
InvalidInstrumentException.java 24 public InvalidInstrumentException(String message, Object... args) {
25 super(String.format(message, args));
  /external/clang/tools/libclang/
CXString.h 22 #include <string>
30 /// \brief Create a CXString object for an empty "" string.
33 /// \brief Create a CXString object for an NULL string.
35 /// A NULL string should be used as an "invalid" value in case of errors.
38 /// \brief Create a CXString object from a nul-terminated C string. New
39 /// CXString may contain a pointer to \p String.
41 /// \p String should not be changed by the caller afterwards.
42 CXString createRef(const char *String);
44 /// \brief Create a CXString object from a nul-terminated C string. New
45 /// CXString will contain a copy of \p String
    [all...]
  /external/guava/guava-gwt/src-super/java/nio/charset/
IllegalCharsetNameException.java 25 private final String charsetName;
27 public IllegalCharsetNameException(String charsetName) {
28 super(String.valueOf(charsetName));
32 public String getCharsetName() {
UnsupportedCharsetException.java 25 private final String charsetName;
27 public UnsupportedCharsetException(String charsetName) {
28 super(String.valueOf(charsetName));
32 public String getCharsetName() {
  /external/libcxx/test/std/strings/string.view/string.view.hash/
string_view.pass.cpp 22 #include <string>
37 typedef std::basic_string<char_type> String;
38 typedef std::hash<String> SH;
47 String ss1(s1);
49 String ss2(s2);
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTStringHash.cpp 5 @Title String Hash
14 quick string compares.
22 @Input _Ptr A string
34 @Input _Right A string
53 @Input _Ptr A string
54 @Returns Updated string
55 @Description Appends a string
66 @Input _Str A string
67 @Returns Updated string
68 @Description Appends a string
    [all...]
  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
smbios.c 82 Return SMBIOS string given the string number.
86 StringNumber - String number to return. -1 is used to skip all strings and
90 Pointer to string, or pointer to next SMBIOS strcuture if StringNumber == -1
94 CHAR8 *String;
99 String = (CHAR8 *)(Smbios->Raw + Smbios->Hdr->Length);
106 return String;
110 // Skip string
112 for (; *String != 0; String++)
    [all...]
  /frameworks/base/packages/StatementService/src/com/android/statementservice/retriever/
AssetFactory.java 22 * Factory to create asset from JSON string.
26 private static final String FIELD_NOT_STRING_FORMAT_STRING = "Expected %s to be string.";
37 String namespace = asset.optString(Utils.NAMESPACE_FIELD, null);
39 throw new AssociationServiceException(String.format(

Completed in 1572 milliseconds

1 23 4 5 6 7 8 91011>>