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

1 2 3 4 5 6 7 8 91011>>

  /libcore/ojluni/src/main/java/java/time/temporal/
Temporal.java 18 * 2 along with this work; if not, write to the Free Software Foundation,
36 * Redistribution and use in source and binary forms, with or without
44 * and/or other materials provided with the distribution.
77 * These are modeled using {@code TemporalField} with the number held using
155 * Returns an adjusted object of the same type as this object with the adjustment made.
168 * date = date.with(Month.JULY); // most key classes implement TemporalAdjuster
169 * date = date.with(lastDayOfMonth()); // static import from Adjusters
170 * date = date.with(next(WEDNESDAY)); // static import from Adjusters and DayOfWeek
185 * @return an object of the same type with the specified adjustment made, not null
189 default Temporal with(TemporalAdjuster adjuster) method in interface:Temporal
225 Temporal with(TemporalField field, long newValue); method in interface:Temporal
    [all...]
  /libcore/luni/src/test/java/libcore/java/time/
YearMonthTest.java 5 * you may not use this file except in compliance with the License.
45 assertEquals(YearMonth.of(1000, Month.JANUARY), ym.with(ChronoField.YEAR, 1000));
46 assertEquals(YearMonth.of(-1, Month.JANUARY), ym.with(ChronoField.YEAR, -1));
47 assertEquals(YearMonth.of(2000, Month.FEBRUARY), ym.with(ChronoField.MONTH_OF_YEAR, 2));
49 bceYm.with(ChronoField.MONTH_OF_YEAR, 12));
50 assertSame(ym, ym.with(ChronoField.ERA, IsoEra.CE.getValue()));
51 assertSame(bceYm, bceYm.with(ChronoField.ERA, IsoEra.BCE.getValue()));
53 assertEquals(bceYm, ym.with(ChronoField.ERA, IsoEra.BCE.getValue()));
54 assertEquals(ym, bceYm.with(ChronoField.ERA, IsoEra.CE.getValue()));
55 assertEquals(YearMonth.of(1, Month.JANUARY), ym.with(ChronoField.YEAR_OF_ERA, 1))
    [all...]
  /bionic/libc/kernel/uapi/linux/netfilter_ipv4/
ipt_REJECT.h 33 enum ipt_reject_with with; member in struct:ipt_reject_info
  /bionic/libc/kernel/uapi/linux/netfilter_ipv6/
ip6t_REJECT.h 34 __u32 with; member in struct:ip6t_reject_info
  /external/iptables/include/linux/netfilter_ipv4/
ipt_REJECT.h 17 enum ipt_reject_with with; /* reject type */ member in struct:ipt_reject_info
  /external/iptables/include/linux/netfilter_ipv6/
ip6t_REJECT.h 19 __u32 with; /* reject type */ member in struct:ip6t_reject_info
  /external/kernel-headers/original/uapi/linux/netfilter_ipv4/
ipt_REJECT.h 1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
18 enum ipt_reject_with with; /* reject type */ member in struct:ipt_reject_info
  /external/kernel-headers/original/uapi/linux/netfilter_ipv6/
ip6t_REJECT.h 1 /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
20 __u32 with; /* reject type */ member in struct:ip6t_reject_info
  /external/v8/src/
runtime-profiler.cc 62 // "kMaxSizeOpt" with which we would need to normalize. This constant is
118 int with = 0, gen = 0, type_vector_ic_count = 0; variable
121 vector->ComputeCounts(&with, &gen, &type_vector_ic_count, is_interpreted);
123 *ic_with_type_info_count += with;
146 PrintF(", ICs with typeinfo: %d/%d (%d%%)", typeinfo, total,
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter_ipv4/
ipt_REJECT.h 17 enum ipt_reject_with with; /* reject type */ member in struct:ipt_reject_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter_ipv6/
ip6t_REJECT.h 17 __u32 with; /* reject type */ member in struct:ip6t_reject_info
  /external/guice/extensions/servlet/src/com/google/inject/servlet/
ServletsModuleBuilder.java 5 * you may not use this file except in compliance with the License.
31 * Builds the guice module that binds configured servlets, with their
65 public void with(Class<? extends HttpServlet> servletKey) { method in class:ServletsModuleBuilder.ServletKeyBindingBuilderImpl
66 with(Key.get(servletKey));
69 public void with(Key<? extends HttpServlet> servletKey) { method in class:ServletsModuleBuilder.ServletKeyBindingBuilderImpl
70 with(servletKey, new HashMap<String, String>()); method
73 public void with(HttpServlet servlet) { method in class:ServletsModuleBuilder.ServletKeyBindingBuilderImpl
74 with(servlet, new HashMap<String, String>()); method
77 public void with(Class<? extends HttpServlet> servletKey, method in class:ServletsModuleBuilder.ServletKeyBindingBuilderImpl
79 with(Key.get(servletKey), initParams)
82 public void with(Key<? extends HttpServlet> servletKey, method in class:ServletsModuleBuilder.ServletKeyBindingBuilderImpl
84 with(servletKey, initParams, null); method
87 private void with(Key<? extends HttpServlet> servletKey, Map<String, String> initParams, method in class:ServletsModuleBuilder.ServletKeyBindingBuilderImpl
101 public void with(HttpServlet servlet, method in class:ServletsModuleBuilder.ServletKeyBindingBuilderImpl
105 with(servletKey, initParams, servlet); method
    [all...]
ServletModule.java 5 * you may not use this file except in compliance with the License.
66 * and filters with guice-servlet. Think of this as an in-code replacement for web.xml.
75 * <b>serve("*.html").with(MyServlet.class)</b>
85 * <b>serve("/my/*").with(MyServlet.class)</b>
108 * serve("*.html").with(MyServlet.class);
109 * serve("/my/*").with(MyServlet.class);
110 * serve("*.jpg").with(new MyServlet());
120 * serve("*.html").with(MyServlet.class);
125 * serve("/my/*").with(MyServlet.class);
132 * serve(<b>"*.html", "/my/*"</b>).with(MyServlet.class)
316 void with(Class<? extends HttpServlet> servletKey); method in interface:ServletModule.ServletKeyBindingBuilder
317 void with(Key<? extends HttpServlet> servletKey); method in interface:ServletModule.ServletKeyBindingBuilder
319 void with(HttpServlet servlet); method in interface:ServletModule.ServletKeyBindingBuilder
320 void with(Class<? extends HttpServlet> servletKey, Map<String, String> initParams); method in interface:ServletModule.ServletKeyBindingBuilder
321 void with(Key<? extends HttpServlet> servletKey, Map<String, String> initParams); method in interface:ServletModule.ServletKeyBindingBuilder
323 void with(HttpServlet servlet, Map<String, String> initParams); method in interface:ServletModule.ServletKeyBindingBuilder
    [all...]
  /external/hamcrest/hamcrest-core/src/test/java/org/hamcrest/core/
IsInstanceOfTest.java 55 Integer anInteger = (Integer)with(instanceOf(Integer.class));
61 Integer anInteger = with(any(Integer.class));
65 private static <T> T with(@SuppressWarnings("unused") Matcher<T> matcher) { method in class:IsInstanceOfTest
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
Match.java 5 * you may not use this file except in compliance with the License.
26 /** A match is a potential pairing of two segments with a given {@link ConstraintType}. */
29 public final Segment with; field in class:Match
31 /** the "other" edge that the dragged edge is matched with */
50 * @param edge the "other" edge that the dragged edge is matched with
51 * @param with the edge of the dragged node that is matched
55 public Match(GuidelineHandler handler, Segment edge, Segment with,
60 this.with = with;
  /system/ca-certificates/
Android.mk 5 # you may not use this file except in compliance with the License.
32 define include-prebuilt-with-destination-directory
47 $(foreach cacert, $(cacerts), $(eval $(call include-prebuilt-with-destination-directory,target-cacert-$(notdir $(cacert)),$(cacert),$(cacerts_target_directory))))
56 $(foreach cacert, $(cacerts), $(eval $(call include-prebuilt-with-destination-directory,host-cacert-$(notdir $(cacert)),$(cacert),$(cacerts_host_directory))))
  /art/tools/ahat/src/main/com/android/ahat/
Query.java 5 * you may not use this file except in compliance with the License.
52 * Return the value of a query parameter with the given name.
53 * If there is no query parameter with that name, returns the default value.
54 * If there are multiple query parameters with that name, the value of the
56 * If the parameter is defined with an empty value, "" is returned.
64 * Return the long value of a query parameter with the given name.
72 * Return the int value of a query parameter with the given name.
81 * page, except with the named query parameter set to the new value.
86 public URI with(String name, String value) { method in class:Query
106 * page, except with the named query parameter set to the new long value
108 public URI with(String name, long value) { method in class:Query
    [all...]
SubsetSelector.java 5 * you may not use this file except in compliance with the License.
41 * LimitSelector can add a link to the same page with modified limit
90 menu.appendLink(mQuery.with(mId, 0), DocString.text("show none"));
92 menu.appendLink(mQuery.with(mId, less), DocString.text("show less"));
99 menu.appendLink(mQuery.with(mId, more), DocString.text("show more"));
101 menu.appendLink(mQuery.with(mId, all), DocString.text("show all"));
  /build/soong/android/
neverallow.go 4 // you may not use this file except in compliance with the License.
36 // - it has all "with" properties matched
39 // - - nested properties are separated with a '.'
51 with("vndk.enabled", "true").
55 with("vndk.enabled", "true").
59 neverallow().notIn("libcore").with("no_standard_libs", "true"),
64 with("product_variables.enforce_vintf_manifest.cflags", "*").
70 with("product_variables.treble_linker_namespaces.cflags", "*").
74 // *neverallow().with("Srcs", "main.cpp"),
126 func (r *rule) with(properties, value string) *rule func
    [all...]
  /external/guice/extensions/servlet/test/com/google/inject/servlet/
ServletModuleTest.java 5 * you may not use this file except in compliance with the License.
40 serve("/*").with(DummyServlet.class);
71 serve("/sam/*").with(new DummyServlet()); method
  /external/icu/android_icu4j/src/main/java/android/icu/number/
NumberFormatter.java 21 * NumberFormatter.with()
36 * private static final UnlocalizedNumberFormatter template = NumberFormatter.with()
50 * UnlocalizedNumberFormatter formatter = UnlocalizedNumberFormatter.with().notation(Notation.scientific());
131 * option is currently undefined for use with measure units.
143 * monetary symbols and formats as with SHORT, but omit the currency symbol. For measure units, the behavior is
273 public static UnlocalizedNumberFormatter with() { method in class:NumberFormatter
311 return NumberFormatter.with().macros(macros);
  /external/icu/icu4j/
Android.mk 5 # you may not use this file except in compliance with the License.
36 define all-subdir-with-subdir
42 $(call all-subdir-with-subdir,main/classes/*/src,com/ibm/icu))
46 $(call all-subdir-with-subdir,main/tests/*/src,com/ibm/icu/dev))
103 # Run the tests using the ICU4J test framework with the following command:
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
NumberFormatter.java 20 * NumberFormatter.with()
35 * private static final UnlocalizedNumberFormatter template = NumberFormatter.with()
49 * UnlocalizedNumberFormatter formatter = UnlocalizedNumberFormatter.with().notation(Notation.scientific());
134 * option is currently undefined for use with measure units.
147 * monetary symbols and formats as with SHORT, but omit the currency symbol. For measure units, the behavior is
288 public static UnlocalizedNumberFormatter with() { method in class:NumberFormatter
328 return NumberFormatter.with().macros(macros);
  /external/iptables/extensions/
libip6t_REJECT.c 16 enum ip6t_reject_with with; member in struct:reject_names
22 enum ip6t_reject_with with; member in struct:reject_names_xlate
68 "--reject-with type drop input packet and send back\n"
75 {.name = "reject-with", .id = O_REJECT_WITH, .type = XTTYPE_STRING},
84 reject->with = IP6T_ICMP6_PORT_UNREACH;
99 reject->with = reject_table[i].with;
114 if (reject_table[i].with == reject->with)
116 printf(" reject-with %s", reject_table[i].name)
    [all...]
libipt_REJECT.c 23 enum ipt_reject_with with; member in struct:reject_names
29 enum ipt_reject_with with; member in struct:reject_names_xlate
77 "--reject-with type drop input packet and send back\n"
86 {.name = "reject-with", .id = O_REJECT_WITH, .type = XTTYPE_STRING},
95 reject->with = IPT_ICMP_PORT_UNREACHABLE;
110 reject->with = reject_table[i].with;
116 fprintf(stderr, "--reject-with echo-reply no longer"
130 if (reject_table[i].with == reject->with)
    [all...]

Completed in 1691 milliseconds

1 2 3 4 5 6 7 8 91011>>