HomeSort by relevance Sort by last modified time
    Searched defs:set (Results 226 - 250 of 5198) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/inject/
Injector.java 88 field.set(mActivity, injectedValue);
  /development/samples/devbytes/animation/ToonGame/src/com/example/android/toongame/
ToonGame.java 203 AnimatorSet set = new AnimatorSet(); local
204 set.playSequentially(downAnim, stretchAnim, upAnim);
205 set.setDuration(getDuration(SHORT_DURATION));
206 set.start();
207 set.addListener(new AnimatorListenerAdapter() {
  /development/tools/bugreport/src/com/android/bugreport/util/
Utils.java 67 * Gets a group from the matcher, and if it was set returns that
95 result.set(Calendar.YEAR, Integer.parseInt(matcher.group(startGroup + 0)));
97 result.set(Calendar.MONTH, Integer.parseInt(matcher.group(startGroup + 1)));
98 result.set(Calendar.DAY_OF_MONTH, Integer.parseInt(matcher.group(startGroup + 2)));
99 result.set(Calendar.HOUR_OF_DAY, Integer.parseInt(matcher.group(startGroup + 3)));
100 result.set(Calendar.MINUTE, Integer.parseInt(matcher.group(startGroup + 4)));
101 result.set(Calendar.SECOND, Integer.parseInt(matcher.group(startGroup + 5)));
103 result.set(Calendar.MILLISECOND, Integer.parseInt(matcher.group(startGroup + 6)));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/dom/
minicompat.py 104 def set(self, value, name=name): function in function:defproperty
109 prop = property(get, set, doc=doc)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_contains.py 9 class set(base_set): class in inherits:base_set
21 b = set(1)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/dom/
minicompat.py 104 def set(self, value, name=name): function in function:defproperty
109 prop = property(get, set, doc=doc)
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
LayoutMetric.java 31 set(value, layoutType); method
44 public void set(float value, LayoutType layoutType) { method in class:LayoutMetric
  /external/annotation-tools/scene-lib/test/annotations/tests/classfile/cases/
TestFieldGeneric.java 5 import java.util.Set;
10 Set<TestFieldGeneric> set; field in class:TestFieldGeneric
17 Set<String> otherSet;
23 Set<TestFieldGeneric<Set<TestFieldGeneric>>> nestedSet;
25 Map<Set<TestFieldGeneric>, TestFieldGeneric<T>> nestedMap;
TestTypecast.java 5 import java.util.Set;
12 public Set set; field in class:TestTypecast
22 set = (HashSet) hset;
23 hset = (HashSet) set;
29 o = (String & Map<String, ? extends Set<String>> & CharSequence) o;
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
ListExtensions.cs 156 public static void set( this IList list, int index, object value ) method in class:Antlr.Runtime.JavaExtensions.ListExtensions
162 public static void set<T>( this IList<T> list, int index, T value ) method in class:Antlr.Runtime.JavaExtensions.ListExtensions
168 public static void set<T>( this List<T> list, int index, T value ) method in class:Antlr.Runtime.JavaExtensions.ListExtensions
  /external/apache-commons-math/src/main/java/org/apache/commons/math/genetics/
BinaryMutation.java 46 newRepr.set(geneIndex, origChrom.getRepresentation().get(geneIndex) == 0 ? 1 : 0);
RandomKeyMutation.java 52 newRepr.set(rInd, GeneticAlgorithm.getRandomGenerator().nextDouble());
  /external/autotest/client/bin/
test_config.py 69 @default: In case the option is not available and raise_errors is set
82 def set(self, section, option, value): member in class:config_loader
84 Set an option.
90 return self.parser.set(section, option, value)
  /external/autotest/frontend/client/src/autotest/common/
JSONArrayList.java 24 backingArray.set(index, object);
  /external/caliper/examples/src/main/java/examples/
ContainsBenchmark.java 29 import java.util.Set;
35 /** the set under test */
36 private final Set<String> set = new HashSet<String>(); field in class:ContainsBenchmark
42 set.addAll(Arrays.asList("str1", "str2", "str3", "str4"));
56 set.contains(query);
  /external/clang/include/clang/Basic/
Sanitizers.h 37 // Define the set of sanitizer kinds, as well as the set of sanitizers each
59 void set(SanitizerMask K, bool Value) { function in struct:clang::SanitizerSet
78 /// For each sanitizer group bit set in \p Kinds, set the bits for sanitizers
  /external/compiler-rt/test/asan/TestCases/
intra-object-overflow.cc 15 void set(int i, int val) { a[i] = val; } function in class:Foo
17 // CHECK: #0 {{.*}}Foo::set{{.*}}intra-object-overflow.cc:[[@LINE-2]]
27 foo->set(idx, 42);
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/
BoundedGenericModule.java 24 import java.util.Set;
76 Set<Double> provideSetOfDouble() {
77 Set<Double> set = new HashSet<>(); local
78 set.add(4d);
79 return set;
  /external/dagger2/compiler/src/it/functional-tests/src/main/java/test/builder/
TestChildComponentWithBuilderAbstractClass.java 35 abstract SharedBuilder<B, C, M1, M2> set(FloatModule floatModule); // Test returning supertype. method in class:TestChildComponentWithBuilderAbstractClass.SharedBuilder
43 abstract void set(ByteModule byteModule); method in class:TestChildComponentWithBuilderAbstractClass.Builder
TestChildComponentWithBuilderInterface.java 35 SharedBuilder<B, C, M1, M2> set(FloatModule floatModule); // Test return type is supertype. method in interface:TestChildComponentWithBuilderInterface.SharedBuilder
43 void set(ByteModule byteModule); method in interface:TestChildComponentWithBuilderInterface.Builder
TestComponentWithGenericBuilderInterface.java 35 SharedBuilder<B, C, M1, M2> set(FloatModule floatModule); // Test return type is supertype. method in interface:TestComponentWithGenericBuilderInterface.SharedBuilder
  /external/dagger2/producers/src/main/java/dagger/producers/internal/
SetOfProducedProducer.java 27 import java.util.Set;
31 * A {@link Producer} implementation used to implement {@link Set} bindings. This producer returns a
32 * future {@code Set<Produced<T>>} whose elements are populated by subsequent calls to the delegate
38 public final class SetOfProducedProducer<T> extends AbstractProducer<Set<Produced<T>>> {
40 * Returns a new producer that creates {@link Set} futures from the union of the given
44 public static <T> Producer<Set<Produced<T>>> create(Producer<Set<T>>... producers) {
48 private final ImmutableSet<Producer<Set<T>>> contributingProducers;
50 private SetOfProducedProducer(ImmutableSet<Producer<Set<T>>> contributingProducers) {
55 * Returns a future {@link Set} of {@link Produced} values whose iteration order is that of th
86 Set<T> set = producedSet.get(); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/memory/
vktMemoryMappingTests.cpp 117 void set (size_t ndx, bool value) function in class:vkt::memory::__anon17724::BitVector
133 set(ndx, value);
150 set(ndx, value);
162 set(ndx, other.get(ndx) && get(ndx));
178 set(ndx, other.get(ndx) && get(ndx));
201 m_defined.set(pos, true);
202 m_flushed.set(pos / m_atomSize, false);
211 m_defined.set(pos, true);
222 m_defined.set(pos, true);
223 m_flushed.set(pos / m_atomSize, false)
    [all...]
  /external/devlib/devlib/module/
hwmon.py 38 self.items = set()
53 def set(self, item, value): member in class:HwmonSensor
  /external/dexmaker/dexmaker/src/main/java/com/android/dx/
TypeList.java 35 ropTypes.set(i, types[i].ropType);

Completed in 753 milliseconds

1 2 3 4 5 6 7 8 91011>>