Searched defs:on (Results 1 - 25 of 137) sorted by relevance

123456

/external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/standard/
H A Drtp_rtcp_before_streaming_test.cc34 bool on = false; local
35 EXPECT_EQ(0, voe_rtp_rtcp_->GetRTCPStatus(channel_, on));
36 EXPECT_TRUE(on);
38 EXPECT_EQ(0, voe_rtp_rtcp_->GetRTCPStatus(channel_, on));
39 EXPECT_FALSE(on);
41 EXPECT_EQ(0, voe_rtp_rtcp_->GetRTCPStatus(channel_, on));
42 EXPECT_TRUE(on);
/external/chromium_org/chrome/browser/chromeos/accessibility/
H A Dtouch_exploration_controller_browsertest.cc33 void SwitchTouchExplorationMode(bool on) { argument
36 if (on != ad->IsSpokenFeedbackEnabled())
54 // This test turns the touch exploration mode on/off and confirms that events
55 // get rewritten when the touch exploration mode is on, and aren't affected
/external/chromium_org/chrome/browser/ui/views/location_bar/
H A Dtranslate_icon_view.cc27 void TranslateIconView::SetToggled(bool on) { argument
29 on ? IDR_TRANSLATE_ACTIVE : IDR_TRANSLATE));
H A Dstar_view.cc26 void StarView::SetToggled(bool on) { argument
28 on ? IDS_TOOLTIP_STARRED : IDS_TOOLTIP_STAR));
30 on ? IDR_STAR_LIT : IDR_STAR));
/external/chromium_org/tools/android/common/
H A Dnet.cc17 int on = 1; local
18 return setsockopt(socket, IPPROTO_TCP, TCP_NODELAY, &on, sizeof(on));
22 int on = 1; local
23 return setsockopt(socket, IPPROTO_TCP, TCP_DEFER_ACCEPT, &on, sizeof(on));
/external/mockito/src/org/mockito/stubbing/
H A DVoidMethodStubbable.java13 * stubVoid(mock).toThrow(new RuntimeException()).on().someMethod();
20 * .on().someMethod();
31 * stubVoid(mock).toThrow(new RuntimeException()).on().someMethod();
39 * @param throwable to be thrown on method invocation
55 * .on().foo(10);
83 * .on().accept(any());
96 * stubVoid(mock).toThrow(new RuntimeException()).on().someMethod("some arg");
103 T on(); method in interface:VoidMethodStubbable
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1ObjectIdentifier.java35 * @return true if the branch is on the passed in stem, false otherwise.
37 public boolean on(ASN1ObjectIdentifier stem) method in class:ASN1ObjectIdentifier
H A DLimitedInputStream.java25 protected void setParentEofDetect(boolean on) argument
29 ((IndefiniteLengthInputStream)_in).setEofOn00(on);
/external/chromium_org/chrome/browser/ui/toolbar/
H A Dencoding_menu_controller_unittest.cc65 // Make sure that autodetect is the first item on both menus
92 bool on = controller.IsItemChecked(&profile_en, local
96 ASSERT_FALSE(on && encoding_is_enabled);
97 encoding_is_enabled |= on;
/external/libsepol/src/
H A Ddebug.c13 void sepol_debug(int on) argument
15 sepol_compat_handle.msg_callback = (on) ?
/external/mockito/src/org/mockito/internal/stubbing/
H A DVoidMethodStubbableImpl.java36 public T on() { method in class:VoidMethodStubbableImpl
/external/chromium_org/third_party/libjingle/source/talk/examples/call/
H A Dconsole.cc88 void Console::SetEcho(bool on) { argument
98 if (on) {
114 if (on) {
/external/droiddriver/src/com/google/android/droiddriver/
H A DDroidDriver.java11 * distributed under the License is distributed on an "AS IS" BASIS,
37 * looking for UiElements in a scrollable view, whose content varies based on
44 * UiElement el = driver.on(By.anyOf(finder1, finder2, ...));
51 * using a smaller timeout than the default timeout. It's not worth it -- on
67 UiElement on(Finder finder); method in interface:DroidDriver
73 * desired, and {@link #on} is more appropriate.
89 * default timeout is reached. This behaves the same as {@link #on} except
124 * Dumps the UiElement tree to a file to help debug. The tree is based on the
/external/llvm/test/tools/llvm-cov/Inputs/
H A Dtest.cpp4 bool on = false; variable
19 on = true;
42 on = rand() % 2;
43 if (on) {
/external/droiddriver/src/com/google/android/droiddriver/base/
H A DBaseDroidDriver.java11 * distributed under the License is distributed on an "AS IS" BASIS,
65 public UiElement on(Finder finder) { method in class:BaseDroidDriver
66 Logs.call(this, "on", finder);
/external/chromium_org/gpu/tools/compositor_model_bench/
H A Drender_model_utils.cc150 bool on = ((x/8) + (y/8)) % 2; local
151 uint8 v = on ? random_color[c] : ~random_color[c];
/external/chromium_org/net/tools/flip_server/
H A Dacceptor_thread.cc83 int on = 1; local
89 reinterpret_cast<char*>(&on),
90 sizeof(on));
H A Dcreate_listener.cc78 int on = 1; local
81 fd, IPPROTO_TCP, TCP_NODELAY, reinterpret_cast<char*>(&on), sizeof(on));
84 LOG(FATAL) << "setsockopt() TCP_NODELAY: failed on fd " << fd;
143 // set SO_REUSEADDR on the listening socket.
144 int on = 1; local
149 reinterpret_cast<char*>(&on),
150 sizeof(on));
160 // set SO_REUSEADDR on the listening socket.
161 int on local
[all...]
/external/chromium_org/tools/measure_page_load_time/ie_bho/
H A DMeasurePageLoadTimeBHO.cpp16 #define PORT 42492 // port to listen on. Also jhaas's
53 // Create a thread to wait on the socket
96 // even begins, but just to be on the safe side, we won't
110 BOOL on = TRUE; local
112 (const char*)&on, sizeof(on)))
166 // An error on read most likely means that the remote peer
204 // Sending a carriage return on a line by itself means that
254 // Error on send probably means connection reset by peer
/external/guava/guava/src/com/google/common/base/
H A DJoiner.java11 * 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
H A DSplitter.java11 * 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(CharMatche
124 public static Splitter on(char separator) { method in class:Splitter
138 public static Splitter on(final CharMatcher separatorMatcher) { method in class:Splitter
165 public static Splitter on(final String separator) { method in class:Splitter
210 public static Splitter on(final Pattern separatorPattern) { method in class:Splitter
[all...]
/external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
H A DSplitter.java11 * 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(CharMatche
121 public static Splitter on(char separator) { method in class:Splitter
135 public static Splitter on(final CharMatcher separatorMatcher) { method in class:Splitter
162 public static Splitter on(final String separator) { method in class:Splitter
[all...]
/external/qemu/distrib/sdl-1.2.15/src/video/photon/
H A DSDL_ph_modes.c81 SDL_SetError("ph_ListModes(): PgGetVideoModeInfo() function failed on mode: 0x%X.\n", mode_list.modes[i]);
237 int ph_ToggleFullScreen(_THIS, int on) argument
/external/srtp/crypto/kernel/
H A Dcrypto_kernel.c135 /* run FIPS-140 statistical tests on rand_source */
145 /* run FIPS-140 statistical tests on ctr_prng */
182 /* run FIPS-140 statistical tests on rand_source */
224 if (dm->mod->on)
225 printf("(on)\n");
242 if (dm->mod->on)
243 printf("(on)\n");
501 crypto_kernel_set_debug_module(char *name, int on) { argument
508 kdm->mod->on = on;
[all...]
/external/stlport/src/
H A Dcxa.c21 significant on unloading (for only few calls, ~10) - ptr */
49 } on; member in union:exit_function::__anon30358

Completed in 8081 milliseconds

123456