HomeSort by relevance Sort by last modified time
    Searched defs:set (Results 326 - 350 of 3150) sorted by null

<<11121314151617181920>>

  /dalvik/dx/src/com/android/dx/cf/iface/
StdAttributeList.java 101 public void set(int n, Attribute attribute) { method in class:StdAttributeList
  /dalvik/dx/src/com/android/dx/rop/code/
InsnList.java 37 * this with the index for an element which was never set; if you
51 * @param insn {@code non-null;} the instruction to set at {@code n}
53 public void set(int n, Insn insn) { method in class:InsnList
  /dalvik/dx/src/com/android/dx/rop/cst/
StdConstantPool.java 105 public void set(int n, Constant cst) { method in class:StdConstantPool
  /dalvik/dx/src/com/android/dx/ssa/
BasicRegisterMapper.java 122 oldToNew.set(oldReg, newReg);
  /development/ndk/platforms/android-3/include/linux/
xattr.h 39 int (*set)(struct inode *inode, const char *name, const void *buffer, member in struct:xattr_handler
  /development/samples/USB/AdbTest/src/com/android/adb/
AdbSocket.java 40 message.set(AdbMessage.A_OPEN, mId, 0, destination);
72 message.set(AdbMessage.A_OKAY, mId, mPeerId);
  /development/tools/apkcheck/src/com/android/apkcheck/
MethodInfo.java 78 * because we need the full set of package names.
87 mParameters.set(i, fixed);
  /external/clang/include/clang/AST/
DeclAccessPair.h 38 p.set(D, AS);
50 set(D, getAccess());
53 set(getDecl(), AS);
55 void set(NamedDecl *D, AccessSpecifier AS) { function in class:clang::DeclAccessPair
  /external/clang/test/CXX/basic/basic.lookup/basic.lookup.classref/
p1-cxx11.cpp 4 struct set{}; struct
7 void set(T value) {} function in struct:Value
11 v.set<double>(3.2);
19 v.set<double>(3.2);
22 int set; // Non-template. local
24 v.set<double>(3.2);
p1.cpp 24 struct set{}; // expected-note{{lookup from the current scope refers here}} struct
27 void set(T value) {} // expected-note{{lookup in the object type 'Value' refers here}} function in struct:Value
31 v.set<double>(3.2);
39 v.set<double>(3.2); // expected-warning{{lookup of 'set' in member access expression is ambiguous; using member of 'Value'}}
42 int set; // Non-template. local
44 v.set<double>(3.2);
  /external/clang/test/CoverageMapping/
classtemplate.cpp 25 void set(TT position, double value) { // CHECK-SETTER: File 0, [[@LINE]]:39 -> [[@LINE+2]]:4 = #0 function in class:Test
49 t.set(Test<unsigned>::A, 5.5);
50 t.set(Test<unsigned>::T, 5.6);
51 t.set(Test<unsigned>::G, 5.7);
52 t.set(Test<unsigned>::C, 5.8);
  /external/conscrypt/src/test/java/org/conscrypt/
OpenSSLX509CertificateTest.java 31 // Set correct serialVersionUID
36 // Set our fake class's serialization UID.
39 targetUID.set(null, clDesc.getSerialVersionUID());
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
InsnList.java 37 * this with the index for an element which was never set; if you
51 * @param insn {@code non-null;} the instruction to set at {@code n}
53 public void set(int n, Insn insn) { method in class:InsnList
  /external/dexmaker/src/dx/java/com/android/dx/rop/cst/
StdConstantPool.java 96 public void set(int n, Constant cst) { method in class:StdConstantPool
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
BasicRegisterMapper.java 123 oldToNew.set(oldReg, newReg);
  /external/emma/ant/ant14/com/vladium/emma/ant/
FileTask.java 51 public final void addInfileset (final XFileSet set)
53 if (set != null) m_dataFileSets.add (set);
56 public final void addFileset (final XFileSet set)
58 if (set != null) m_dataFileSets.add (set);
93 final FileSet set = (FileSet) i.next (); local
94 final DirectoryScanner ds = set.getDirectoryScanner (project);
  /external/emma/core/java12/com/vladium/jcd/cls/
IConstantCollection.java 52 * A convenience method that is equivalent to {@link IConstantCollection#set}
56 CONSTANT_info set (CONSTANT_info constant); method in interface:IConstantCollection.IConstantIterator
162 * @param constant new entry to set [may not be null; input unchecked]
172 CONSTANT_info set (int index, CONSTANT_info constant); method in interface:IConstantCollection
InterfaceCollection.java 89 public int set (final int offset, final int interface_index) method in class:InterfaceCollection
91 return m_interfaces.set (offset, interface_index);
  /external/emma/core/java12/com/vladium/jcd/cls/attribute/
DeclaredExceptionTable.java 87 public int set (final int offset, final int exception_index) method in class:DeclaredExceptionTable
89 return m_exceptions.set (offset, exception_index);
  /external/guava/guava/src/com/google/common/collect/
ImmutableSetMultimap.java 264 * Returns a newly-created immutable set multimap.
284 * Returns an immutable set multimap containing the same mappings as
326 ImmutableSet<V> set = valueSet(valueComparator, values); local
327 if (!set.isEmpty()) {
328 builder.put(key, set);
329 size += set.size();
352 * Returns an immutable set of the values for the given key. If no mappings
353 * in the multimap have the provided key, an empty immutable set is returned.
359 ImmutableSet<V> set = (ImmutableSet<V>) map.get(key); local
360 return firstNonNull(set, emptySet)
    [all...]
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ConstraintsTest.java 33 import java.util.Set;
104 Set<String> set = Sets.newLinkedHashSet(asList("foo", "bar")); local
105 Set<String> constrained = Constraints.constrainedSet(set, TEST_CONSTRAINT);
106 set.add(TEST_ELEMENT);
109 assertTrue(set.equals(constrained));
110 assertTrue(constrained.equals(set));
111 assertEquals(set.toString(), constrained.toString());
112 assertEquals(set.hashCode(), constrained.hashCode())
119 Set<String> set = Sets.newLinkedHashSet(asList("foo", "bar")); local
    [all...]
  /external/guava/guava-tests/benchmark/com/google/common/collect/
SetContainsBenchmark.java 25 import java.util.Set;
28 * A microbenchmark that tests the performance of contains() on various Set
53 // the following must be set during setUp
55 private Set<Element> setToTest;
69 Set<Element> set = setToTest; local
76 dummy ^= set.contains(queries[i & mask]);
  /external/guava/guava-tests/test/com/google/common/collect/
ConstraintsTest.java 35 import java.util.Set;
106 Set<String> set = Sets.newLinkedHashSet(asList("foo", "bar")); local
107 Set<String> constrained = Constraints.constrainedSet(set, TEST_CONSTRAINT);
108 set.add(TEST_ELEMENT);
111 assertTrue(set.equals(constrained));
112 assertTrue(constrained.equals(set));
113 assertEquals(set.toString(), constrained.toString());
114 assertEquals(set.hashCode(), constrained.hashCode())
121 Set<String> set = Sets.newLinkedHashSet(asList("foo", "bar")); local
    [all...]
  /external/icu/icu4c/source/common/unicode/
usetiter.h 37 * UnicodeSetIterator it(set);
42 * <p>Each item in the set is accessed as a string. Set elements
49 * UnicodeSetIterator it(set);
102 * Create an iterator over the given set. The iterator is valid
103 * only so long as <tt>set</tt> is valid.
104 * @param set set to iterate over
107 UnicodeSetIterator(const UnicodeSet& set);
112 * constructor allowing the target to be set later
252 const UnicodeSet* set; member in class:UnicodeSetIterator
    [all...]
  /external/icu/icu4c/source/i18n/
funcrepl.cpp 113 UnicodeSet set; local
114 toUnionTo.addAll(translit->getTargetSet(set));

Completed in 222 milliseconds

<<11121314151617181920>>