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

<<11121314151617181920>>

  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
BenchmarkCreator.java 36 private static final String BENCHMARK_NO_PUBLIC_DEFAULT_CONSTRUCTOR =
40 private final ImmutableSortedMap<String, String> parameters;
46 @Running.Benchmark ImmutableSortedMap<String, String> parameters) {
63 String.format(BENCHMARK_NO_PUBLIC_DEFAULT_CONSTRUCTOR, benchmarkClass), null);
  /external/desugar/java/com/google/devtools/common/options/
ShellQuotedParamsFilePreProcessor.java 31 * ({@code '}) if it contains any special characters or is an empty string.
40 protected List<String> parse(Path paramsFile) throws IOException {
41 List<String> args = new ArrayList<>();
44 String arg;
84 public String readArg() throws IOException {
133 String.format(UNFINISHED_QUOTE_MESSAGE_FORMAT, "'", quoteStart));
  /external/golang-protobuf/proto/
message_set.go 56 // required string message = 3;
138 func (ms *messageSet) String() string { return CompactTextString(ms) }
302 name string
306 func RegisterMessageSetType(m Message, fieldNum int32, name string) {
text_test.go 58 if string(bytes) != "custom" {
65 func (*textMessage) String() string { return "" }
71 Name: proto.String("Dave"),
72 Quote: proto.String(`"I didn't want to go."`),
73 Pet: []string{"bunny", "kitty", "horsey"},
75 Host: proto.String("footrest.syd"),
87 Host: proto.String("lesha.mtv"),
101 Data: proto.String("Big gobs for big rats"),
106 greetings := []string{"adg", "easy", "cow"
    [all...]
  /external/golang-protobuf/protoc-gen-go/plugin/
plugin.pb.go 40 Suffix *string `protobuf:"bytes,4,opt,name=suffix" json:"suffix,omitempty"`
45 func (m *Version) String() string { return proto.CompactTextString(m) }
70 func (m *Version) GetSuffix() string {
82 FileToGenerate []string `protobuf:"bytes,1,rep,name=file_to_generate,json=fileToGenerate" json:"file_to_generate,omitempty"`
84 Parameter *string `protobuf:"bytes,2,opt,name=parameter" json:"parameter,omitempty"`
106 func (m *CodeGeneratorRequest) String() string { return proto.CompactTextString(m) }
110 func (m *CodeGeneratorRequest) GetFileToGenerate() []string {
117 func (m *CodeGeneratorRequest) GetParameter() string {
    [all...]
  /external/guava/guava/src/com/google/common/base/
Preconditions.java 117 * string using {@link String#valueOf(Object)}
122 throw new IllegalArgumentException(String.valueOf(errorMessage));
136 * are converted to strings using {@link String#valueOf(Object)}.
142 @Nullable String errorMessageTemplate,
168 * string using {@link String#valueOf(Object)}
173 throw new IllegalStateException(String.valueOf(errorMessage));
188 * are converted to strings using {@link String#valueOf(Object)}.
194 @Nullable String errorMessageTemplate
    [all...]
  /external/guava/guava/src/com/google/common/util/concurrent/
ThreadFactoryBuilder.java 46 private String nameFormat = null;
61 * @param nameFormat a {@link String#format(String, Object...)}-compatible
62 * format String, to which a unique integer (0, 1, etc.) will be supplied
70 public ThreadFactoryBuilder setNameFormat(String nameFormat) {
71 String.format(nameFormat, 0); // fail fast if the format is bad or null
150 final String nameFormat = builder.nameFormat;
164 thread.setName(String.format(nameFormat, count.getAndIncrement()));
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/util/
PortParser.java 41 * @param parameter - the single parameter String containing the encoded host and port number
44 public static HostAndPort parseExtendedAddressHostAndPort(String parameter) {
46 throw new CommandSyntaxException("The parameter string must not be empty or null");
49 String delimiter = parameter.substring(0,1);
50 String[] tokens = parameter.split("\\" + delimiter);
70 * Parse a 32-bit IP address and 16-bit port number from the String[] of FTP command parameters.
73 * @param parameters - the String[] of command parameters. It is the concatenation
76 * as a separate parameter whose value is a decimal number (in character string
86 public static HostAndPort parseHostAndPort(String[] parameters) {
112 * suitable for the response String from the PASV command.
    [all...]
  /external/pdfium/fxjs/
cjs_object.h 18 enum Type { Number = 0, String = 1 };
  /external/protobuf/csharp/src/Google.Protobuf/Reflection/
FieldType.cs 73 /// The <c>string</c> field type.
75 String,
  /external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
Util.java 45 static void ALOGD(String message, Object... args) {
47 System.out.println("DEBUG: " + String.format(message, args));
51 static void ALOGW(String message, Object... args) {
52 System.out.println("WARN: " + String.format(message, args));
55 public static void ALOGV(String message, Object... args) {
57 System.out.println("VERBOSE: " + String.format(message, args));
61 public static void ALOGI(String message, Object... args) {
63 System.out.println("INFO: " + String.format(message, args));
67 static void ALOGE(String message, Object... args) {
68 System.out.println("ERROR: " + String.format(message, args))
    [all...]
  /external/slf4j/jcl-over-slf4j/src/main/java/org/apache/commons/logging/impl/
SLF4JLog.java 41 protected String name;
97 * Converts the input parameter to String and then delegates to the debug
101 * the message to log. Converted to {@link String}
104 logger.trace(String.valueOf(message));
108 * Converts the first input parameter to String and then delegates to the
112 * the message to log. Converted to {@link String}
117 logger.trace(String.valueOf(message), t);
121 * Converts the input parameter to String and then delegates to the wrapped
125 * the message to log. Converted to {@link String}
128 logger.debug(String.valueOf(message))
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue102/
BigDataLoadTest.java 44 private String getLongYamlDocument(int size) {
49 List<String> list = new ArrayList<String>();
51 list.add(String.valueOf(i + j));
53 Map<String, Integer> map = new HashMap<String, Integer>();
55 map.put(String.valueOf(j), i + j);
62 String ooo = yaml.dumpAsMap(bean);
63 String[] lines = ooo.split("\n");
71 String data = builder.toString()
    [all...]
  /external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
EDInst.h 11 // instruction class. The instruction is responsible for vending the string
21 #include <string>
59 /// string representation, as well as its operands and tokens
72 /// The string representation of the instruction
73 std::string String;
75 /// in String
116 /// stringify - populates the String and AsmString members of the instruction,
119 /// getString - retrieves a pointer to the string representation of the
123 /// the string representation of the instruction; this string is still owne
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/car/hvac/
TemperatureTextView.java 41 private final String mTempFormat;
48 String format = typedArray.getString(R.styleable.TemperatureView_hvacTempFormat);
66 setText(String.format(mTempFormat, temp));
  /frameworks/base/services/backup/java/com/android/server/backup/transport/
TransportStats.java 74 private static void dumpStats(PrintWriter pw, String prefix, Stats stats) {
76 String.format(
78 pw.println(String.format(Locale.US, "%sMax connection time: %d ms", prefix, stats.max));
79 pw.println(String.format(Locale.US, "%sMin connection time: %d ms", prefix, stats.min));
80 pw.println(String.format(Locale.US, "%sNumber of connections: %d ", prefix, stats.n));
  /frameworks/base/services/core/java/com/android/server/locksettings/recoverablekeystore/
RecoverableKeyGenerator.java 44 private static final String TAG = "PlatformKeyGen";
46 private static final String SECRET_KEY_ALGORITHM = "AES";
95 PlatformEncryptionKey platformKey, int userId, int uid, String alias)
105 String.format(
137 @NonNull PlatformEncryptionKey platformKey, int userId, int uid, @NonNull String alias,
147 String.format(
  /frameworks/base/services/core/java/com/android/server/statusbar/
StatusBarShellCommand.java 35 public int onCommand(String cmd) {
55 pw.println(String.valueOf(TileService.isQuickSettingsSupported()));
101 for (String icon : mInterface.getStatusBarIcons()) {
  /frameworks/base/wifi/java/android/net/wifi/p2p/nsd/
WifiP2pServiceRequest.java 61 * The hex dump string of query data for the requested service information.
66 private String mQuery;
75 protected WifiP2pServiceRequest(int protocolType, String query) {
96 int transId, String query) {
124 * Return wpa_supplicant request string.
133 * @return wpa_supplicant request string.
136 public String getSupplicantQuery() {
139 sb.append(String.format(Locale.US, "%02x", (mLength) & 0xff));
140 sb.append(String.format(Locale.US, "%02x", (mLength >> 8) & 0xff));
141 sb.append(String.format(Locale.US, "%02x", mProtocolType))
    [all...]
  /frameworks/compile/mclinker/include/mcld/Target/
ELFAttributeValue.h 12 #include <string>
30 // The value contains string data.
31 String = 1L << 1,
34 // string for string type) has special meaning for them. That is, the
53 const std::string& getStringValue() const { return m_StringValue; }
55 void setStringValue(const std::string& pStringValue) {
75 inline bool isStringValue() const { return (m_Type & String); }
108 std::string m_StringValue;
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
ExpressionTest.java 125 assertEquals(String.valueOf(var1 << var2), mBinder.textView10.getText().toString());
126 assertEquals(String.valueOf(var1 >> var2), mBinder.textView11.getText().toString());
127 assertEquals(String.valueOf(var1 >>> var2), mBinder.textView12.getText().toString());
138 assertEquals(String.valueOf(var1 + ~var2), mBinder.textView14.getText().toString()); // 2 + ~1
153 String appName = getActivity().getResources().getString(R.string.app_name);
154 String rain = getActivity().getResources().getString(R.string.rain);