HomeSort by relevance Sort by last modified time
    Searched defs:of (Results 426 - 450 of 1403) sorted by null

<<11121314151617181920>>

  /prebuilts/tools/common/m2/repository/com/hannesdorfmann/mosby/mvp-common/2.0.1/
mvp-common-2.0.1.jar 
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
BaseViewRule.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
75 /** List of recently edited properties */
78 /** Maximum number of recent properties to track and list */
90 // Cache of attributes. Key is FQCN of a node mixed with its view hierarchy
123 * - List of all other simple toggle attributes.
244 // case of toggle
253 // case of a flag
284 // case of an enu
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
ViewMetadataRepository.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
92 * List of categories (which contain views); constructed lazily so use
126 * views. The FQN of each view can be obtained via the
155 * @return the fqcn of the view the element represents a preview for
201 /** Returns an ordered list of categories and views, parsed from a metadata file */
318 * @return a list of pairs where each pair contains of the category label and an
319 * ordered list of elements to be included in that category
331 // First record map of FQCN to ViewElementDescriptor such that we can quickl
    [all...]
  /libcore/ojluni/src/test/java/time/tck/java/time/
TCKYearMonth.java 6 * under the terms of the GNU General Public License version 2 only, as
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 * You should have received a copy of the GNU General Public License version
27 * However, the following notice accompanied the original version of this
37 * * Redistributions of source code must retain the above copyright notice,
38 * this list of conditions and the following disclaimer.
41 * this list of conditions and the following disclaimer in the documentation
44 * * Neither the name of JSR-310 nor the names of its contributors
50 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FO
    [all...]
  /prebuilts/misc/common/robolectric/3.4.2/lib/
supportv4-3.4.2.jar 
  /prebuilts/misc/common/robolectric/3.5.1/lib/
shadows-supportv4-3.5.1.jar 
  /prebuilts/misc/common/robolectric/3.6.1/lib/
shadows-supportv4-3.6.1.jar 
  /prebuilts/misc/common/truth/
truth-0.28.jar 
  /prebuilts/tools/common/m2/repository/com/google/truth/truth/0.28/
truth-0.28.jar 
  /build/make/core/
main.mk 29 # Absolute path of the present working direcotry.
31 # the top of the source tree, for example when "make -C" is used in m/mm/mmm.
114 # change the behavior of the build.
125 # Adding the jacoco library can cause the inclusion of
224 Code should be written to work regardless of a device being Treble or \
229 # of actionable compatible properties is enabled or not.
325 # To speedup startup of non-preopted builds, don't verify or compile the boot image.
362 # Define a function that, given a list of module tags, returns
393 # Before we go and include all of the module makefiles, mark the PRODUCT_*
410 # defined by this makefile; this will install all of thos
    [all...]
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/
AbstractComponentWriter.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
145 private ImmutableMap<TypeElement, FieldWriter> builderFields = ImmutableMap.of();
151 * any requirement that is reused from a subcomponent of this component.
179 * Returns an expression snippet that evaluates to an instance of the contribution, looking for
215 return Optional.of(fieldSelect.getSnippetFor(name));
231 * Returns the initialization state of the factory field for a binding key in this component.
288 builderName = Optional.of(builderWriter.name());
307 * Adds fields for each of the {@linkplain BindingGraph#componentRequirements component
308 * requirements}. Regardless of builder spec, there is always one field per requirement
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
MapsTest.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
317 Map<Integer, String> left = ImmutableMap.of(
319 Map<Integer, String> right = ImmutableMap.of(
324 assertEquals(ImmutableMap.of(2, "b", 4, "d"), diff1.entriesOnlyOnLeft());
325 assertEquals(ImmutableMap.of(6, "z"), diff1.entriesOnlyOnRight());
326 assertEquals(ImmutableMap.of(1, "a"), diff1.entriesInCommon());
327 assertEquals(ImmutableMap.of(3,
336 assertEquals(ImmutableMap.of(6, "z"), diff2.entriesOnlyOnLeft());
337 assertEquals(ImmutableMap.of(2, "b", 4, "d"), diff2.entriesOnlyOnRight())
    [all...]
MultimapsTest.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
84 ImmutableListMultimap.of("a", 1, "b", 2, "a", 3);
97 ImmutableSetMultimap.of("a", 1, "b", 2, "a", 3);
109 ImmutableMultimap<String, Integer> immutable = ImmutableMultimap.of("a", 1, "b", 2, "a", 3);
216 * of the map.
263 ImmutableMultimap<Integer, String> empty = ImmutableMultimap.of();
712 multimap, Predicates.in(ImmutableSet.of("foo", "bar")));
715 ImmutableSet.of(),
716 filtered.replaceValues("baz", ImmutableSet.<Integer>of()));
    [all...]
  /external/guava/guava-tests/test/com/google/common/collect/
FluentIterableTest.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
62 assertEquals(ImmutableList.of(1, 2, 3, 4),
63 Lists.newArrayList(FluentIterable.from(ImmutableList.of(1, 2, 3, 4))));
66 @SuppressWarnings("deprecation") // test of deprecated method
73 assertEquals(ImmutableList.of("1", "2", "3", "4"),
74 Lists.newArrayList(FluentIterable.of(new Object[] {"1", "2", "3", "4"})));
107 Iterable<String> set = ImmutableSortedSet.of("a", "b");
253 assertEquals(Optional.of("cool"), iterable.firstMatch(Predicates.equalTo("cool")));
254 assertEquals(Optional.of("pants"), iterable.firstMatch(Predicates.equalTo("pants")))
    [all...]
ImmutableSortedSetTest.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
162 @Override protected SortedSet<String> of() { method in class:ImmutableSortedSetTest
163 return ImmutableSortedSet.of();
166 @Override protected SortedSet<String> of(String e) { method in class:ImmutableSortedSetTest
167 return ImmutableSortedSet.of(e);
170 @Override protected SortedSet<String> of(String e1, String e2) { method in class:ImmutableSortedSetTest
171 return ImmutableSortedSet.of(e1, e2);
174 @Override protected SortedSet<String> of(String e1, String e2, String e3) { method in class:ImmutableSortedSetTest
175 return ImmutableSortedSet.of(e1, e2, e3)
178 @Override protected SortedSet<String> of( method in class:ImmutableSortedSetTest
183 @Override protected SortedSet<String> of( method in class:ImmutableSortedSetTest
188 @Override protected SortedSet<String> of(String e1, String e2, String e3, method in class:ImmutableSortedSetTest
268 assertSame(of(), set.headSet("c")); method
269 assertSame(of(), set.headSet("e")); method
277 assertSame(of(), set.tailSet("g")); method
285 assertSame(of(), set.subSet("f", "g")); method
286 assertSame(of(), set.subSet("c", "e")); method
287 assertSame(of(), set.subSet("c", "d")); method
371 assertSame(of(), set.headSet("a")); method
372 assertSame(of(), set.headSet("b")); method
380 assertSame(of(), set.tailSet("g")); method
388 assertSame(of(), set.subSet("a", "b")); method
389 assertSame(of(), set.subSet("g", "h")); method
390 assertSame(of(), set.subSet("c", "c")); method
    [all...]
MultimapsTest.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
88 ImmutableListMultimap.of("a", 1, "b", 2, "a", 3);
101 ImmutableSetMultimap.of("a", 1, "b", 2, "a", 3);
113 ImmutableMultimap<String, Integer> immutable = ImmutableMultimap.of("a", 1, "b", 2, "a", 3);
308 * of the map.
355 ImmutableMultimap<Integer, String> empty = ImmutableMultimap.of();
833 ImmutableSetMultimap.of("a", 2, "b", -3, "b", 3, "a", 4, "c", 6);
    [all...]
  /external/guice/extensions/multibindings/test/com/google/inject/multibindings/
MapBinderTest.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
85 private static final Set<Key<?>> FRAMEWORK_KEYS = ImmutableSet.of(
618 .addBinding("null").toProvider(Providers.<String>of(null));
684 assertEquals(ImmutableSet.<Dependency<?>>of(Dependency.get(setKey)), method
688 assertEquals(ImmutableSet.of("A", "B"), elements);
720 assertEquals(ImmutableSet.<Dependency<?>>of(Dependency.get(setKey)), method
761 * With overrides, we should get the union of all map bindings.
    [all...]
  /external/guice/extensions/throwingproviders/test/com/google/inject/throwingproviders/
CheckedProviderTest.java 6 * You may obtain a copy of the License at
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
573 assertEquals(ImmutableSet.<Key<?>>of(Key.get(String.class), Key.get(Integer.class), method
605 assertEquals(ImmutableSet.<Key<?>>of(Key.get(String.class), Key.get(Integer.class), method
644 assertEquals(ImmutableSet.<Key<?>>of(Key.get(String.class), Key.get(Integer.class), method
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
XLocaleDistance.java 3 // License & terms of use: http://www.unicode.org/copyright.html#License
45 * @hide Only a subset of ICU is exposed in Android
74 Row.of(
198 // end of data from CLDR
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
MeasureUnit.java 3 // License & terms of use: http://www.unicode.org/copyright.html#License
42 // Cache of MeasureUnits.
44 // i.e. from synchronized static methods. Beware of non-static methods.
125 * Get all of the available units' types. Returned set is unmodifiable.
147 * Get all of the available units. Returned set is unmodifiable.
203 return unitPerUnitToSingleUnit.get(Pair.of(unit, perUnit));
292 * or other API that expects to see all of the MeasureUnits.
296 * Adding of others is deferred until later to avoid circular static init
368 * Constant for unit of acceleration: g-force
373 * Constant for unit of acceleration: meter-per-second-square
1055 unitPerUnitToSingleUnit.put(Pair.<MeasureUnit, MeasureUnit>of(MeasureUnit.LITER, MeasureUnit.KILOMETER), MeasureUnit.LITER_PER_KILOMETER); method
1056 unitPerUnitToSingleUnit.put(Pair.<MeasureUnit, MeasureUnit>of(MeasureUnit.POUND, MeasureUnit.SQUARE_INCH), MeasureUnit.POUND_PER_SQUARE_INCH); method
1057 unitPerUnitToSingleUnit.put(Pair.<MeasureUnit, MeasureUnit>of(MeasureUnit.MILE, MeasureUnit.HOUR), MeasureUnit.MILE_PER_HOUR); method
1058 unitPerUnitToSingleUnit.put(Pair.<MeasureUnit, MeasureUnit>of(MeasureUnit.MILLIGRAM, MeasureUnit.DECILITER), MeasureUnit.MILLIGRAM_PER_DECILITER); method
1059 unitPerUnitToSingleUnit.put(Pair.<MeasureUnit, MeasureUnit>of(MeasureUnit.MILE, MeasureUnit.GALLON_IMPERIAL), MeasureUnit.MILE_PER_GALLON_IMPERIAL); method
1060 unitPerUnitToSingleUnit.put(Pair.<MeasureUnit, MeasureUnit>of(MeasureUnit.KILOMETER, MeasureUnit.HOUR), MeasureUnit.KILOMETER_PER_HOUR); method
1061 unitPerUnitToSingleUnit.put(Pair.<MeasureUnit, MeasureUnit>of(MeasureUnit.MILE, MeasureUnit.GALLON), MeasureUnit.MILE_PER_GALLON); method
1062 unitPerUnitToSingleUnit.put(Pair.<MeasureUnit, MeasureUnit>of(MeasureUnit.METER, MeasureUnit.SECOND), MeasureUnit.METER_PER_SECOND); method
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
XLocaleDistance.java 2 // License & terms of use: http://www.unicode.org/copyright.html#License
70 Row.of(
194 // end of data from CLDR
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
MeasureUnit.java 2 // License & terms of use: http://www.unicode.org/copyright.html#License
42 // Cache of MeasureUnits.
44 // i.e. from synchronized static methods. Beware of non-static methods.
132 * Get all of the available units' types. Returned set is unmodifiable.
157 * Get all of the available units. Returned set is unmodifiable.
213 return unitPerUnitToSingleUnit.get(Pair.of(unit, perUnit));
300 * or other API that expects to see all of the MeasureUnits.
304 * Adding of others is deferred until later to avoid circular static init
375 * Constant for unit of acceleration: g-force
381 * Constant for unit of acceleration: meter-per-second-square
1197 unitPerUnitToSingleUnit.put(Pair.<MeasureUnit, MeasureUnit>of(MeasureUnit.LITER, MeasureUnit.KILOMETER), MeasureUnit.LITER_PER_KILOMETER); method
1198 unitPerUnitToSingleUnit.put(Pair.<MeasureUnit, MeasureUnit>of(MeasureUnit.POUND, MeasureUnit.SQUARE_INCH), MeasureUnit.POUND_PER_SQUARE_INCH); method
1199 unitPerUnitToSingleUnit.put(Pair.<MeasureUnit, MeasureUnit>of(MeasureUnit.MILE, MeasureUnit.HOUR), MeasureUnit.MILE_PER_HOUR); method
1200 unitPerUnitToSingleUnit.put(Pair.<MeasureUnit, MeasureUnit>of(MeasureUnit.MILLIGRAM, MeasureUnit.DECILITER), MeasureUnit.MILLIGRAM_PER_DECILITER); method
1201 unitPerUnitToSingleUnit.put(Pair.<MeasureUnit, MeasureUnit>of(MeasureUnit.MILE, MeasureUnit.GALLON_IMPERIAL), MeasureUnit.MILE_PER_GALLON_IMPERIAL); method
1202 unitPerUnitToSingleUnit.put(Pair.<MeasureUnit, MeasureUnit>of(MeasureUnit.KILOMETER, MeasureUnit.HOUR), MeasureUnit.KILOMETER_PER_HOUR); method
1203 unitPerUnitToSingleUnit.put(Pair.<MeasureUnit, MeasureUnit>of(MeasureUnit.MILE, MeasureUnit.GALLON), MeasureUnit.MILE_PER_GALLON); method
1204 unitPerUnitToSingleUnit.put(Pair.<MeasureUnit, MeasureUnit>of(MeasureUnit.METER, MeasureUnit.SECOND), MeasureUnit.METER_PER_SECOND); method
    [all...]
  /external/javassist/src/main/javassist/
CtBehavior.java 5 * The contents of this file are subject to the Mozilla Public License Version
7 * the License. Alternatively, the contents of this file may be used under
8 * the terms of the GNU Lesser General Public License Version 2.1 or later.
11 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
26 * It is the abstract super class of
124 * Obtains the modifiers of the method/constructor.
135 * Sets the encoded modifiers of the method/constructor.
145 methodInfo.setAccessFlags(AccessFlag.of(mod));
192 * @return an array of annotation-type objects.
205 * @return an array of annotation-type objects
    [all...]
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
GeneratedMessageLite.java 9 // * Redistributions of source code must retain the above copyright
10 // notice, this list of conditions and the following disclaimer.
12 // copyright notice, this list of conditions and the following disclaimer
15 // * Neither the name of Google Inc. nor the names of its
21 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
25 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE US
1157 public static SerializedForm of(MessageLite message) { method in class:GeneratedMessageLite.SerializedForm
    [all...]
  /external/valgrind/VEX/priv/
guest_x86_helpers.c 7 This file is part of Valgrind, a dynamic binary instrumentation
14 modify it under the terms of the GNU General Public License as
15 published by the Free Software Foundation; either version 2 of the
19 WITHOUT ANY WARRANTY; without even the implied warranty of
23 You should have received a copy of the GNU General Public License
30 Neither the names of the U.S. Department of Energy nor the
31 University of California nor the names of its contributors may be
51 These calls are of course in the host machine code and
647 UInt of,sf,zf,cf,pf; local
1968 UInt tempCOUNT = rot_amt & 0x1F, cf=0, of=0, tempcf; local
2023 UInt tempCOUNT = rot_amt & 0x1F, cf=0, of=0, tempcf; local
    [all...]

Completed in 470 milliseconds

<<11121314151617181920>>