Searched defs:set (Results 26 - 50 of 843) sorted by relevance

1234567891011>>

/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DAnimationSetTest.java19 private AnimationSet set; field in class:AnimationSetTest
24 set = new AnimationSet(true);
25 shadow = shadowOf(set);
34 set.addAnimation(alpha);
35 set.addAnimation(translate);
36 set.addAnimation(rotate);
/external/skia/src/pathops/
H A DSkPathOpsLine.h18 const SkDLine& set(const SkPoint pts[2]) { function in struct:SkDLine
/external/smali/util/src/main/java/org/jf/util/
H A DImmutableUtils.java49 @Nonnull public static <T> ImmutableSet<T> nullToEmptySet(@Nullable ImmutableSet<T> set) { argument
50 if (set == null) {
53 return set;
56 @Nonnull public static <T> ImmutableSortedSet<T> nullToEmptySortedSet(@Nullable ImmutableSortedSet<T> set) { argument
57 if (set == null) {
60 return set;
/external/strace/tests/
H A Dnet-accept-connect.c58 sigset_t set; local
59 sigemptyset(&set);
60 sigaddset(&set, SIGUSR1);
62 assert(sigprocmask(SIG_BLOCK, &set, NULL) == 0);
67 assert(sigprocmask(SIG_UNBLOCK, &set, NULL) == 0);
/external/v8/test/perf-test/Collections/
H A Dset.js14 var set; variable
19 set = new Set;
21 set.add(i);
39 if (!set.has(i)) {
44 if (set.has(i)) {
55 set.delete(i);
61 set.forEach(function(v, k) {
/external/valgrind/coregrind/
H A Dm_vki.c58 sets for this platform is right. A signal set consists of some
60 itself has some indexing scheme to set/clear individual bits in the
61 set, we must make sure we use the same layout/scheme: where this
69 vki_sigset_t set; local
71 vg_assert( 8 * sizeof(set) == _VKI_NSIG );
73 vg_assert( 8 * sizeof(set.sig[0]) == _VKI_NSIG_BPW );
74 // The set elements are 32- or 64-bit
/external/vogar/src/vogar/target/
H A DPackage.java44 Set<Class<?>> set = new TreeSet<Class<?>>(ClassPathScanner.ORDER_CLASS_BY_NAME);
45 addTopLevelClassesTo(set);
46 return set;
57 private void addTopLevelClassesTo(Set<Class<?>> set) throws IOException { argument
58 set.addAll(topLevelClasses);
60 info.addTopLevelClassesTo(set);
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
H A DLayoutMetric.java31 set(value, layoutType);
44 public void set(float value, LayoutType layoutType) { method in class:LayoutMetric
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DSetExtensions.cs45 public static bool add<T>( this HashSet<T> set, T item ) argument
47 return set.Add( item );
51 public static void addAll<T>( this HashSet<T> set, IEnumerable<T> items ) argument
54 set.Add( item );
59 public static void clear<T>( this HashSet<T> set )
61 set.Clear();
65 public static bool contains<T>( this HashSet<T> set, T value ) argument
67 return set.Contains( value );
71 public static bool remove<T>( this HashSet<T> set, T item ) argument
73 return set
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/cms/
H A DAttributes.java29 private Attributes(ASN1Set set) argument
31 attributes = set;
40 * Return an Attribute set object from the given object.
/external/chromium-trace/trace-viewer/tracing/third_party/components/webcomponentsjs/
H A DHTMLImports.min.js5 * The complete set of authors may be found at http://polymer.github.io/AUTHORS.txt
6 * The complete set of contributors may be found at http://polymer.github.io/CONTRIBUTORS.txt
11 "undefined"==typeof WeakMap&&!function(){var e=Object.defineProperty,t=Date.now()%1e9,n=function(){this.name="__st"+(1e9*Math.random()>>>0)+(t++ +"__")};n.prototype={set:function(t,n){var r=t[this.name];return r&&r[0]===t?r[1]=n:e(t,this.name,{value:[t,n],writable:!0} (…)
/external/compiler-rt/test/asan/TestCases/
H A Dintra-object-overflow.cc15 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);
H A Duse-after-scope-dtor-order.cc13 void set(int *val) { val_ = val; } function in struct:IntHolder
24 holder.set(&x);
/external/dexmaker/src/dx/java/com/android/dx/rop/annotation/
H A DAnnotationsList.java52 result.set(i, Annotations.combine(a1, a2));
70 * this with the index for an element which was never set; if you
85 * @param a {@code null-ok;} the element to set at {@code n}
87 public void set(int n, Annotations a) { method in class:AnnotationsList
/external/dexmaker/src/dx/java/com/android/dx/rop/cst/
H A DStdConstantPool.java96 public void set(int n, Constant cst) { method in class:StdConstantPool
/external/elfutils/src/libdwfl/
H A Ddwfl_module_build_id.c32 found_build_id (Dwfl_Module *mod, bool set, argument
35 if (!set)
57 __libdwfl_find_build_id (Dwfl_Module *mod, bool set, Elf *elf) argument
73 return found_build_id (mod, set, build_id_bits, build_id_len, build_id_vaddr);
/external/emma/ant/ant14/com/vladium/emma/ant/
H A DFileTask.java51 public final void addInfileset (final XFileSet set) argument
53 if (set != null) m_dataFileSets.add (set);
56 public final void addFileset (final XFileSet set) argument
58 if (set != null) m_dataFileSets.add (set);
93 final FileSet set = (FileSet) i.next ();
94 final DirectoryScanner ds = set.getDirectoryScanner (project);
/external/emma/core/java12/com/vladium/jcd/cls/
H A DIInterfaceCollection.java78 int set (int offset, int interface_index); method in interface:IInterfaceCollection
/external/emma/core/java12/com/vladium/jcd/cls/attribute/
H A DIDeclaredExceptionTable.java81 int set (int offset, int exception_index); method in interface:IDeclaredExceptionTable
H A DIExceptionHandlerTable.java80 Exception_info set (int offset, Exception_info exception); method in interface:IExceptionHandlerTable
/external/fonttools/Lib/fontTools/ttLib/tables/
H A DT_S_I__0.py42 def set(self, indices, extra_indices): member in class:table_T_S_I__0
H A D_l_o_c_a.py35 self.set([])
49 def set(self, locations): member in class:table__l_o_c_a
/external/fonttools/Tools/fontTools/ttLib/tables/
H A DT_S_I__0.py42 def set(self, indices, extra_indices): member in class:table_T_S_I__0
H A D_l_o_c_a.py35 self.set([])
49 def set(self, locations): member in class:table__l_o_c_a
/external/glide/library/src/main/java/com/bumptech/glide/util/
H A DMultiClassKey.java15 set(first, second);
18 public void set(Class<?> first, Class<?> second) { method in class:MultiClassKey

Completed in 1226 milliseconds

1234567891011>>