Searched defs:set (Results 101 - 125 of 843) sorted by relevance

1234567891011>>

/external/javassist/src/main/javassist/compiler/ast/
H A DIntConst.java32 public void set(long v) { value = v; } method in class:IntConst
/external/javassist/src/main/javassist/util/proxy/
H A DSecurityActions.java113 static void set(final Field fld, final Object target, final Object value) method in class:SecurityActions
117 fld.set(target, value);
122 fld.set(target, value);
/external/jetty/src/java/org/eclipse/jetty/util/statistic/
H A DSampleStatistic.java53 _max.set(0);
54 _total.set(0);
55 _count.set(0);
56 _totalVariance100.set(0);
59 public void set(final long sample) method in class:SampleStatistic
/external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/strip/
H A DVertexCache.java88 public void set(int index, int value) { method in class:VertexCache
96 inVcache.set(i, entries[i]);
/external/libcxx/test/std/containers/sequences/vector/
H A Dasan_throw.pass.cc34 void set(char arg) { a = arg; } function in class:X
/external/lldb/source/Plugins/Process/Utility/
H A DDynamicRegisterInfo.cpp88 PythonString set_pystr("set");
97 // { 'name':'rcx' , 'bitsize' : 64, 'offset' : 16, 'encoding':'uint' , 'format':'hex' , 'set': 0, 'gcc' : 2, 'dwarf' : 2, 'generic':'arg4', 'alt-name':'arg4', },
143 const int64_t set = reg_info_dict.GetItemForKeyAsInteger(set_pystr, -1); local
144 if (set >= m_sets.size())
160 m_set_reg_nums[set].push_back(i);
187 uint32_t set = GetRegisterSetIndexByName (set_name, true); local
188 assert (set < m_sets.size());
189 assert (set < m_set_reg_nums.size());
190 assert (set < m_set_names.size());
191 m_set_reg_nums[set]
[all...]
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFAttribute.h24 void set(dw_attr_t attr, dw_form_t form) { m_attr_form = (attr << 16) | form; } function in class:DWARFAttribute
/external/mockito/cglib-and-asm/src/org/mockito/asm/
H A DItem.java141 void set(final int intVal) { method in class:Item
152 void set(final long longVal) { method in class:Item
163 void set(final float floatVal) { method in class:Item
174 void set(final double doubleVal) { method in class:Item
188 void set( method in class:Item
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DTinyBitSet.java71 public void set(int index) { method in class:TinyBitSet
/external/nist-sip/java/gov/nist/javax/sip/message/
H A DHeaderIterator.java73 public void set(Object header) { method in class:HeaderIterator
/external/parameter-framework/test/test-fixed-point-parameter/
H A DMain.py132 """ Checks if we are able to set valueToSet via the parameter-framework
134 valueToSet -- the value we are trying to set
136 returns: the value we are trying to set
137 returns: True if we are able to set, False otherwise
139 (success, errorMsg) = self._pfwClient.set(self._paramPath, str(valueToSet))
146 as we attempted to set. The value can have a slight round error which
149 valuePreviouslySet -- the value we had previously set
152 returns: True if we are able to set, False otherwise
173 """ Checks if we are able to set the value that the parameter framework
176 valuePreviouslyGotten -- the value we are trying to set
216 def set(self, parameter, value): member in class:PfwClient
[all...]
/external/proguard/src/proguard/
H A DGPL.java60 * Returns a set of package names from the given stack trace.
101 * Returns a comma-separated list of package names from the set, excluding
102 * any subpackages of packages in the set.
134 * Returns whether the given set contains a prefix of the given name.
136 private static boolean containsPrefix(Set set, String name) argument
140 while (!set.contains(name.substring(0, index)))
/external/proguard/src/proguard/ant/
H A DMemberSpecificationElement.java60 // Get the referenced file set, or else this one.
170 private int requiredAccessFlags(boolean set, argument
183 if (token.startsWith("!") ^ set)
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DLazyStringList.java96 * @throws UnsupportedOperationException if the <tt>set</tt> operation
101 void set(int index, ByteString element); method in interface:LazyStringList
109 * @throws UnsupportedOperationException if the <tt>set</tt> operation
114 void set(int index, byte[] element); method in interface:LazyStringList
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAccount.java21 set(name, type);
25 set(parcel.readString(), parcel.readString());
53 private void set(String name, String type) throws Exception { method in class:ShadowAccount
58 nameF.set(realObject, name);
62 typeF.set(realObject, type);
H A DShadowAlarmManager.java24 public void set(int type, long triggerAtTime, PendingIntent operation) { method in class:ShadowAlarmManager
H A DShadowPoint.java28 public void set(int x, int y) { method in class:ShadowPoint
H A DShadowPointF.java30 public void set(float x, float y) { method in class:ShadowPointF
/external/selinux/libsemanage/src/
H A Ddatabase_policydb.h75 record_policydb_table_set_t set; member in struct:record_policydb_table
/external/skia/bench/
H A DGrOrderedSetBench.cpp17 // Time how long it takes to build a set
44 GrOrderedSet<int> set; variable
46 set.insert(fData[j]);
48 set.reset();
58 // Time how long it takes to find elements in a set
99 // Time how long it takes to iterate over and remove all elements from set
/external/skia/platform_tools/android/gyp_gen/
H A Dvars_dict_lib.py11 # The goal of this class is to store a set of unique items in the order in
16 """Ordered set of unique items that supports addition and removal.
25 """Add item, if it is not already in the set.
27 item is appended to the end if it is not already in the set.
36 """Whether the set contains item.
39 item: The item to search for in the set.
42 bool: Whether the item is in the set.
47 """Iterator for the set.
53 Remove item from the set.
59 ValueError if item is not in the set
78 def set(self, other): member in class:OrderedSet
[all...]
/external/skia/src/core/
H A DSkPictureFlat.cpp55 SkRefCnt* SkTypefacePlayback::set(int index, SkRefCnt* obj) { function in class:SkTypefacePlayback
80 void SkFlatController::setTypefaceSet(SkRefCntSet *set) { argument
81 SkRefCnt_SafeAssign(fTypefaceSet, set);
88 SkNamedFactorySet* SkFlatController::setNamedFactorySet(SkNamedFactorySet* set) { argument
89 SkRefCnt_SafeAssign(fFactorySet, set);
90 return set;
/external/skia/tests/
H A DGrOrderedSetTest.cpp18 Set set; local
20 REPORTER_ASSERT(reporter, set.empty());
28 Set::Iter xi = set.insert(x);
30 REPORTER_ASSERT(reporter, !set.empty());
33 set.insert(0);
35 set.insert(999);
41 REPORTER_ASSERT(reporter, *set.begin() == 0);
42 REPORTER_ASSERT(reporter, *set.last() == 999);
43 REPORTER_ASSERT(reporter, --(++set.begin()) == set
[all...]
H A DHashTest.cpp23 map.set(3, 4.0);
42 map.set(i, 2.0*i);
69 SkTHashSet<SkString> set; local
71 set.add(SkString("Hello"));
72 set.add(SkString("World"));
74 REPORTER_ASSERT(r, set.count() == 2);
76 REPORTER_ASSERT(r, set.contains(SkString("Hello")));
77 REPORTER_ASSERT(r, set.contains(SkString("World")));
78 REPORTER_ASSERT(r, !set.contains(SkString("Goodbye")));
80 REPORTER_ASSERT(r, set
128 SkTHashSet<CopyCounter, hash_copy_counter> set; local
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/rewriter/
H A DRewriterUtils.java48 @Nonnull final Set<? extends T> set) {
51 final Iterator<? extends T> iterator = set.iterator();
68 return set.size();
47 rewriteSet(@onnull final Rewriter<T> rewriter, @Nonnull final Set<? extends T> set) argument

Completed in 872 milliseconds

1234567891011>>