HomeSort by relevance Sort by last modified time
    Searched defs:on (Results 1 - 25 of 69) sorted by null

1 2 3

  /external/guava/src/com/google/common/base/
Splitter.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
39 * Splitter.on(',').split("foo,bar")}</pre>
46 * Splitter.on(',').split("foo,,bar, quux")}</pre>
53 * private static final Splitter MY_SPLITTER = Splitter.on(',')
65 * method such as {@code omitEmptyStrings} has no effect on the instance it
66 * is invoked on! You must store and use the new splitter instance returned by
71 * Splitter splitter = Splitter.on('/');
77 * #on(String)}, {@link #on(Pattern)} and {@link #on(CharMatcher)} for example
115 public static Splitter on(char separator) { method in class:Splitter
129 public static Splitter on(final CharMatcher separatorMatcher) { method in class:Splitter
    [all...]
Joiner.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
37 * Joiner joiner = Joiner.on("; ").skipNulls();
57 public static Joiner on(String separator) { method in class:Joiner
65 public static Joiner on(char separator) { method in class:Joiner
  /external/chromium/chrome/browser/ui/toolbar/
encoding_menu_controller_unittest.cc 56 // Make sure that autodetect is the first item on both menus
83 bool on = controller.IsItemChecked(&profile_en, local
87 ASSERT_FALSE(on && encoding_is_enabled);
88 encoding_is_enabled |= on;
  /libcore/luni/src/main/java/java/security/
DigestInputStream.java 12 * distributed under the License is distributed on an "AS IS" BASIS,
35 // Indicates whether digest functionality is on or off
43 * {@code DigestInputStream}. All operations on such a stream will fail.
76 * for the byte if this function is {@link #on(boolean)}.
89 // - digest functionality is on
101 * {@link #on(boolean)}.
122 // - digest functionality is on
132 * Enables or disables the digest function (default is on).
134 * @param on
139 public void on(boolean on) method in class:DigestInputStream
    [all...]
DigestOutputStream.java 12 * distributed under the License is distributed on an "AS IS" BASIS,
35 // Indicates whether digest functionality is on or off
73 * this function is {@link #on(boolean)}.
82 // update digest only if digest functionality is on
92 * offset. Updates the digest if this function is {@link #on(boolean)}.
105 // update digest only if digest functionality is on
114 * Enables or disables the digest function (default is on).
116 * @param on
121 public void on(boolean on) { method in class:DigestOutputStream
    [all...]
  /system/core/libcutils/
uevent.c 11 * distributed under the License is distributed on an "AS IS" BASIS,
80 int on = passcred; local
93 setsockopt(s, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on));
  /system/netd/
NetlinkManager.cpp 11 * distributed under the License is distributed on an "AS IS" BASIS,
58 int on = 1; local
76 if (setsockopt(*sock, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on)) < 0) {
  /system/vold/
NetlinkManager.cpp 11 * distributed under the License is distributed on an "AS IS" BASIS,
53 int on = 1; local
71 if (setsockopt(mSock, SOL_SOCKET, SO_PASSCRED, &on, sizeof(on)) < 0) {
  /external/chromium/net/tools/flip_server/
acceptor_thread.cc 85 int on = 1; local
89 reinterpret_cast<char*>(&on), sizeof(on));
create_listener.cc 88 int on = 1; local
91 reinterpret_cast<char*>(&on), sizeof(on));
94 LOG(FATAL) << "setsockopt() TCP_NODELAY: failed on fd " << fd;
151 // set SO_REUSEADDR on the listening socket.
152 int on = 1; local
155 reinterpret_cast<char *>(&on), sizeof(on));
165 // set SO_REUSEADDR on the listening socket.
166 int on = 1 local
    [all...]
  /frameworks/base/core/java/com/android/server/
ResettableTimeout.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
24 * Utility class that you can call on with a timeout, and get called back
33 * This is called with the monitor on this method held, so be careful.
37 public abstract void on(boolean alreadyOn); method in class:ResettableTimeout
41 * This is called with the monitor on this method held, so be careful.
47 * <p>1. Call on()</p>
60 // thread to stop it can't start, we don't turn the vibrator on
76 on(alreadyOn);
  /bionic/libc/kernel/common/linux/
cpcap_audio.h 28 int on; member in struct:cpcap_audio_stream
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/x509/
GeneralNameTest.java 12 * distributed under the License is distributed on an "AS IS" BASIS,
76 OtherName on = local
78 byte[] encoding = OtherName.ASN1.encode(on);
81 GeneralName gn = new GeneralName(on);
  /external/emma/core/java12/com/vladium/emma/data/
mergeCommand.java 80 final String on = opt.getCanonicalName (); local
84 if ("in".equals (on))
88 else if ("out".equals (on))
  /external/emma/core/java12/com/vladium/emma/instr/
instrCommand.java 82 final String on = opt.getCanonicalName (); local
86 if ("ip".equals (on))
90 else if ("d".equals (on))
94 else if ("out".equals (on))
98 else if ("merge".equals (on))
102 else if ("ix".equals (on))
107 else if ("m".equals (on))
  /external/emma/core/java12/com/vladium/emma/report/
reportCommand.java 82 final String on = opt.getCanonicalName (); local
86 if ("in".equals (on))
90 else if ("sp".equals (on))
94 else if ("r".equals (on))