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

1 2 34 5 6 7 8 91011>>

  /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 {
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel2CommandsLib/
Reset.c 41 CONST CHAR16 *String;
120 String = ShellCommandLineGetValue(Package, L"-w");
121 if (String != NULL) {
122 gRT->ResetSystem(EfiResetWarm, EFI_SUCCESS, StrSize(String), (VOID*)String);
132 String = ShellCommandLineGetValue(Package, L"-s");
133 DEBUG_CODE(ShellPrintEx(-1,-1,L"Reset with %s (%d bytes)", String, String!=NULL?StrSize(String):0););
134 if (String != NULL) {
    [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/conscrypt/common/src/main/java/org/conscrypt/
Preconditions.java 34 static <T> T checkNotNull(T reference, String errorMessage) {
48 static void checkArgument(boolean condition, String errorMessage) {
58 * @param errorMessageTemplate the format string to be passed to {@link String#format(String,
60 * @param arg the format argument to be passed to {@link String#format(String, Object...)}
63 static void checkArgument(boolean condition, String errorMessageTemplate, Object arg) {
65 throw new IllegalArgumentException(String.format(errorMessageTemplate, arg));
71 * or string of size {@code size}, and are in order. A position index may range from zero t
    [all...]
  /external/golang-protobuf/ptypes/empty/
empty.pb.go 43 func (m *Empty) String() string { return proto.CompactTextString(m) }
46 func (*Empty) XXX_WellKnownType() string { return "Empty" }
  /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>
39 typedef std::basic_string<char_type> String;
40 typedef std::hash<String> SH;
50 String ss1(s1);
52 String ss2(s2);
  /external/mockito/src/main/java/org/mockito/internal/session/
MockitoLoggerAdapter.java 20 logger.log(String.valueOf(what));
  /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...]
  /external/tensorflow/tensorflow/go/
shape.go 93 func (s Shape) String() string {
status.go 46 func (s *status) String() string {
65 func (s *statusError) Error() string {
66 return (*status)(s).String()
  /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(
  /libcore/luni/src/test/java/libcore/java/nio/file/
FileSystemAlreadyExistsExceptionTest.java 25 public void test_constructor$String() {
26 String message = "message";
ProviderNotFoundExceptionTest.java 25 public void test_constructor$String() {
26 String message = "message";
  /libcore/ojluni/src/main/java/java/lang/
AssertionError.java 36 * has as its detail message the <i>string conversion</i> of
53 * This internal constructor does no processing on its string argument,
57 private AssertionError(String detailMessage) {
63 * from the specified object, which is converted to a string as
74 this(String.valueOf(detailMessage));
82 * a string as defined in section 15.18.1.1 of
88 this(String.valueOf(detailMessage));
94 * string as defined in section 15.18.1.1 of
100 this(String.valueOf(detailMessage));
106 * string as defined in section 15.18.1.1 o
    [all...]
  /libcore/ojluni/src/main/java/java/nio/charset/
IllegalCharsetNameException.java 34 * Unchecked exception thrown when a string that is not a
46 private String charsetName;
54 public IllegalCharsetNameException(String charsetName) {
55 super(String.valueOf(charsetName));
64 public String getCharsetName() {
UnsupportedCharsetException.java 46 private String charsetName;
54 public UnsupportedCharsetException(String charsetName) {
55 super(String.valueOf(charsetName));
64 public String getCharsetName() {
  /prebuilts/go/darwin-x86/doc/codewalk/
markov.go 60 type Prefix []string
62 // String returns the Prefix as a string (for use as a map key).
63 func (p Prefix) String() string {
68 func (p Prefix) Shift(word string) {
74 // A prefix is a string of prefixLen words joined with spaces.
77 chain map[string][]string
83 return &Chain{make(map[string][]string), prefixLen
    [all...]

Completed in 475 milliseconds

1 2 34 5 6 7 8 91011>>