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

1 2 3 4

  /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;
  /external/guava/guava/src/com/google/common/base/
Joiner.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
39 * Joiner joiner = Joiner.on("; ").skipNulls();
50 * useForNull} has no effect on the instance it is invoked on! You must store and use the new joiner
55 * Joiner joiner = Joiner.on(',');
67 public static Joiner on(String separator) { method in class:Joiner
74 public static Joiner on(char separator) { method in class:Joiner
332 * <p>In addition to operating on {@code Map} instances, {@code MapJoiner} can operate on {@code
Splitter.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
44 * Splitter.on(',').split("foo,bar")}</pre>
51 * Splitter.on(',').split("foo,,bar, quux")}</pre>
58 * private static final Splitter MY_SPLITTER = Splitter.on(',')
70 * method such as {@code omitEmptyStrings} has no effect on the instance it
71 * is invoked on! You must store and use the new splitter instance returned by
76 * Splitter splitter = Splitter.on('/');
82 * #on(String)}, {@link #on(Pattern)} and {@link #on(CharMatcher)} for example
124 public static Splitter on(char separator) { method in class:Splitter
138 public static Splitter on(final CharMatcher separatorMatcher) { method in class:Splitter
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Splitter.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
41 * Splitter.on(',').split("foo,bar")}</pre>
48 * Splitter.on(',').split("foo,,bar, quux")}</pre>
55 * private static final Splitter MY_SPLITTER = Splitter.on(',')
67 * method such as {@code omitEmptyStrings} has no effect on the instance it
68 * is invoked on! You must store and use the new splitter instance returned by
73 * Splitter splitter = Splitter.on('/');
79 * #on(String)}, {@link #on(Pattern)} and {@link #on(CharMatcher)} for example
121 public static Splitter on(char separator) { method in class:Splitter
135 public static Splitter on(final CharMatcher separatorMatcher) { method in class:Splitter
    [all...]
  /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,
99 int on = passcred; local
112 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 34 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))
  /external/kernel-headers/original/linux/
cpcap_audio.h 35 int on; /* enable/disable for output, unmute/mute for input */ member in struct:cpcap_audio_stream
  /external/netperf/
netserver.c 56 /* way, we insure that it can be installed on systems with or without */
99 /* if you are trying to compile on Windows 2000 or NT 4 you will */
192 /* "schedule" performance tests on the server. */
425 user has specified a port number on the command line or we believe we
442 int on=1; local
476 fprintf(stderr,"Sleeping on getaddrinfo EAI_AGAIN\n");
519 (char *)&on ,
520 sizeof(on)) == SOCKET_ERROR) {
703 /* go away on their own timeframe. */
729 /* we should try to "reap" some of our children. on some *
    [all...]
  /external/stlport/src/
cxa.c 21 significant on unloading (for only few calls, ~10) - ptr */
49 } on; member in union:exit_function::__anon12761
  /frameworks/native/opengl/tests/gl_jni/jni/
gl_code.cpp 115 const unsigned int on = 0xff0000ff; local
119 on, off, on, off, on, off, on, off,
120 off, on, off, on, off, on, off, on,
121 on, off, on, off, on, off, on, off
    [all...]
  /gdk/samples/PhotoEditor/src/com/android/photoeditor/
EffectsBar.java 11 * distributed under the License is distributed on an "AS IS" BASIS,
151 // Disable hardware acceleration on this view to make alpha animations work for idle fading.
159 if (effect.on) {
172 if (effect.on) {
184 private boolean on; field in class:EffectsBar.Effect
198 if (on) {
201 // Have other effects done turning off first and then turn on itself.
217 button.setMode("on");
218 on = true;
229 if (on) {
    [all...]
  /ndk/sources/cxx-stl/stlport/src/
cxa.c 21 significant on unloading (for only few calls, ~10) - ptr */
49 } on; member in union:exit_function::__anon19526
  /development/tools/jdwpspy/
Net.cpp 225 * Returns 0 on success.
352 int cc, on = 1; local
354 cc = setsockopt(fd, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on));
584 * Returns "false" on error (indicating that the connection has been severed).
608 fprintf(stderr, "+++ EINTR on select\n");
621 fprintf(stderr, "+++ EINTR on read\n");
646 fprintf(stderr, "+++ EINTR on read\n");
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/
debug.rb 30 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
53 # and tree-related code are autloaded on-demand
679 def on( event_name, &block ) method in class:ANTLR3.Debug.EventListener

Completed in 514 milliseconds

1 2 3 4