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

1234

/external/ceres-solver/docs/
H A Dbuild.tex8 Ceres relies on a number of open source libraries, some of which are optional. For details on customizing the build process, please see Section~\ref{sec:custom}.
40 Currently we support building on Linux and MacOS X. Support for other
43 \section{Building on Linux}
60 or via the \texttt{deb} or \texttt{rpm} packages available on the \gflags\ website.
81 This should automatically bring in the necessary \blas\ and \lapack\ dependencies. By co-incidence on Ubuntu, this also installs \texttt{CXSparse}.
149 \section{Building on OS X}
189 \section{Building on Windows with Visual Studio}
200 \item Eigen 3.1 from eigen.tuxfamily.org (needed on Windows; 3.0.x will not
241 \item The solvers supported on Window
[all...]
H A Dintroduction.tex12 While there is some debate as to who invented of the method of Least Squares~\cite{stigler1981gauss}. There is no debate that it was Carl Friedrich Gauss's prediction of the orbit of the newly discovered asteroid Ceres based on just 41 days of observations that brought it to the attention of the world~\cite{tennenbaum-director}. We named our solver after Ceres to celebrate this seminal event in the history of astronomy, statistics and optimization.
16 We welcome contributions to Ceres, whether they are new features, bug fixes or tests. The Ceres mailing list\footnote{\url{http://groups.google.com/group/ceres-solver}} is the best place for all development related discussions. Please consider joining it. If you have ideas on how you would like to contribute to Ceres, it is a good idea to let us know on the mailinglist before you start development. We may have suggestions that will save effort when trying to merge your work into the main branch. If you are looking for ideas, please let us know about your interest and skills and we will be happy to make a suggestion or three.
36 Amongst Ceres' users at Google two deserve special mention: William Rucklidge and James Roseborough. William was the first user of Ceres. He bravely took on the task of porting production code to an as-yet unproven optimization library, reporting bugs and helping fix them along the way. James is perhaps the most sophisticated user of Ceres at Google. He has reported and fixed bugs and helped evolve the API for the better.
70 profits; or business interruption) however caused and on any theory of
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1ObjectIdentifier.java30 * @return true if the branch is on the passed in stem, false otherwise.
32 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/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/chromium/chrome/browser/ui/toolbar/
H A Dencoding_menu_controller_unittest.cc56 // 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/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/chrome/browser/ui/views/location_bar/
H A Dstar_view.cc28 void StarView::SetToggled(bool on) { argument
30 on ? IDS_TOOLTIP_STARRED : IDS_TOOLTIP_STAR)));
32 on ? IDR_STAR_LIT : IDR_STAR));
49 // We want to show the bubble on mouse release; that is the standard behavior
/external/chromium/third_party/libjingle/source/talk/examples/call/
H A Dconsole.cc85 void Console::SetEcho(bool on) { argument
95 if (on) {
104 if (on)
/external/webkit/Source/WebCore/platform/qt/
H A DContextMenuItemQt.cpp117 void ContextMenuItem::setChecked(bool on) argument
119 m_platformDescription.checked = on;
128 void ContextMenuItem::setEnabled(bool on) argument
130 m_platformDescription.enabled = on;
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqwkpreferences.cpp150 void QWKPreferences::setAttribute(WebAttribute attr, bool on) argument
154 WKPreferencesSetLoadsImagesAutomatically(d->ref, on);
157 WKPreferencesSetJavaScriptEnabled(d->ref, on);
160 WKPreferencesSetPluginsEnabled(d->ref, on);
163 WKPreferencesSetOfflineWebApplicationCacheEnabled(d->ref, on);
166 WKPreferencesSetLocalStorageEnabled(d->ref, on);
169 WKPreferencesSetXSSAuditorEnabled(d->ref, on);
172 WKPreferencesSetFrameFlatteningEnabled(d->ref, on);
175 WKPreferencesSetPrivateBrowsingEnabled(d->ref, on);
178 WKPreferencesSetDeveloperExtrasEnabled(d->ref, on);
[all...]
/external/chromium/net/tools/flip_server/
H A Dacceptor_thread.cc85 int on = 1; local
89 reinterpret_cast<char*>(&on), sizeof(on));
H A Dcreate_listener.cc88 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 local
[all...]
/external/grub/stage2/
H A Dhercules.c173 hercules_setcursor (int on) argument
179 outb (HERCULES_DATA_REG, on ? 0 : (1 << 5));
181 herc_cursor_state = on;
/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/kernel-headers/original/linux/
H A Dcpcap_audio.h35 int on; /* enable/disable for output, unmute/mute for input */ member in struct:cpcap_audio_stream
/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::__anon13605
/external/wpa_supplicant_8/hostapd/src/ap/
H A Daccounting.c417 static void accounting_report_state(struct hostapd_data *hapd, int on) argument
427 on ? RADIUS_ACCT_STATUS_TYPE_ACCOUNTING_ON :
448 * Returns: 0 on success, -1 on failure
/external/wpa_supplicant_8/src/ap/
H A Daccounting.c417 static void accounting_report_state(struct hostapd_data *hapd, int on) argument
427 on ? RADIUS_ACCT_STATUS_TYPE_ACCOUNTING_ON :
448 * Returns: 0 on success, -1 on failure
/external/wpa_supplicant_8/wpa_supplicant/src/ap/
H A Daccounting.c417 static void accounting_report_state(struct hostapd_data *hapd, int on) argument
427 on ? RADIUS_ACCT_STATUS_TYPE_ACCOUNTING_ON :
448 * Returns: 0 on success, -1 on failure

Completed in 627 milliseconds

1234