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

1 2 3

  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-apache-oro.jar 
ant-stylebook.jar 
ant-jai.jar 
ant-commons-net.jar 
ant-jmf.jar 
ant-weblogic.jar 
ant-junit.jar 
ant-apache-bsf.jar 
ant-jsch.jar 
ant-starteam.jar 
ant-nodeps.jar 
ant-jdepend.jar 
ant-swing.jar 
ant-netrexx.jar 
ant-antlr.jar 
ant-trax.jar 
  /external/clang/test/SemaCXX/
cxx0x-nontrivial-union.cpp 68 namespace optional { namespace
69 template<typename T> struct optional { struct in namespace:optional
73 optional() : has(false) {} function in struct:optional::optional
75 optional(U &&...u) : has(true), value(forward<U>(u)...) {} function in struct:optional::optional
77 optional(const optional &o) : has(o.has) { function in struct:optional::optional
80 optional(optional &&o) : has(o.has) { function in struct:optional::optional
84 optional &operator=(const optional &o)
    [all...]
  /external/guava/guava/src/com/google/common/base/
Optional.java 37 * <p>A non-null {@code Optional<T>} reference can be used as a replacement for a nullable
48 * have no value" (present in the map, with value {@code Optional.absent()})
62 * @param <T> the type of instance that can be contained. {@code Optional} is naturally
63 * covariant on this type, so it is safe to cast an {@code Optional<T>} to {@code
64 * Optional<S>} for any supertype {@code S} of {@code T}.
71 public abstract class Optional<T> implements Serializable {
73 * Returns an {@code Optional} instance with no contained reference.
76 public static <T> Optional<T> absent() {
77 return (Optional<T>) Absent.INSTANCE;
81 * Returns an {@code Optional} instance containing the given non-null reference
184 Optional<T> optional = iterator.next(); local
    [all...]
  /external/webkit/Source/WebCore/inspector/
generate-inspector-idl 128 if ("optional" in in_param):
129 optional = " [optional]" variable
131 optional = "" variable
132 params.append("in%s %s %s" % (optional, param_type(domain_name, in_param), in_param["name"]))
143 if ("optional" in in_param):
144 optional = " [optional]" variable
146 optional = "" variable
147 params.append("out%s %s %s" % (optional, param_type(domain_name, in_param), in_param["name"])
    [all...]
  /external/guava/guava-tests/test/com/google/common/base/
OptionalTest.java 34 * Unit test for {@link Optional}.
41 Optional<String> optionalName = Optional.absent();
46 assertEquals("training", Optional.of("training").get());
51 Optional.of(null);
58 Optional<String> optionalName = Optional.fromNullable("bob");
64 assertSame(Optional.absent(), Optional.fromNullable(null));
68 assertFalse(Optional.absent().isPresent())
76 Optional<String> optional = Optional.absent(); local
    [all...]
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/
openid.php 31 * To use them, specify $openid->required and/or $openid->optional.
35 * $openid->optional = array('namePerson/first');
51 , $optional = array();
321 if ($this->optional) {
322 $params['openid.sreg.optional'] = array();
323 foreach ($this->optional as $optional) {
324 if (!isset(self::$ax_to_sreg[$optional])) continue;
325 $params['openid.sreg.optional'][] = self::$ax_to_sreg[$optional];
340 $optional = array(); variable
    [all...]
  /packages/experimental/LoaderApp/src/com/android/loaderapp/model/
ContactsSource.java 299 public boolean optional; field in class:ContactsSource.EditField
311 public EditField setOptional(boolean optional) {
312 this.optional = optional;
  /external/chromium/chrome/browser/search_engines/
template_url.cc 26 // brace is a ?, it indicates the term is optional and can be replaced with
67 // Used if the count parameter is not optional. Indicates we want 10 search
108 bool optional = false; local
110 optional = true;
120 if (!optional)
123 if (!optional) {
127 if (!optional) {
135 if (!optional)
  /packages/apps/Contacts/src/com/android/contacts/model/
AccountType.java 140 * Returns an optional custom edit activity.
151 * Returns an optional custom new contact activity.
162 * Returns an optional custom invite contact activity.
173 * Returns an optional service that can be launched whenever a contact is being looked at.
194 /** Returns an optional Activity string that can be used to view the group. */
199 /** Returns an optional Activity string that can be used to view the stream item. */
204 /** Returns an optional Activity string that can be used to view the stream item photo. */
246 * Returns an optional custom label for the "invite contact" action, which will be shown on
446 public boolean optional; field in class:AccountType.EditField
460 public EditField setOptional(boolean optional) {
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/46/1/.cp/lib/
repository-tools-ant.jar 

Completed in 172 milliseconds

1 2 3