HomeSort by relevance Sort by last modified time
    Searched refs:Set (Results 1 - 25 of 3610) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/unittests/ADT/
SparseMultiSetTest.cpp 19 // Empty set tests.
21 USet Set;
22 EXPECT_TRUE(Set.empty());
23 EXPECT_EQ(0u, Set.size());
25 Set.setUniverse(10);
27 // Lookups on empty set.
28 EXPECT_TRUE(Set.find(0) == Set.end());
29 EXPECT_TRUE(Set.find(9) == Set.end())
    [all...]
SparseSetTest.cpp 19 // Empty set tests.
21 USet Set;
22 EXPECT_TRUE(Set.empty());
23 EXPECT_TRUE(Set.begin() == Set.end());
24 EXPECT_EQ(0u, Set.size());
26 Set.setUniverse(10);
28 // Lookups on empty set.
29 EXPECT_TRUE(Set.find(0) == Set.end())
    [all...]
  /cts/tools/dex-tools/src/dex/structure/
DexAnnotatedElement.java 19 import java.util.Set;
32 Set<DexAnnotation> getAnnotations();
  /cts/tools/signature-tools/src/signature/compare/model/
IAnnotatableElementDelta.java 19 import java.util.Set;
28 * Returns a set of annotation deltas or {@code null} if no deltas are
31 * @return a set of annotation deltas, maybe {@code null}
33 Set<IAnnotationDelta> getAnnotationDeltas();
IClassDefinitionDelta.java 19 import java.util.Set;
32 * Returns a set of field deltas or {@code null} if no deltas are available.
34 * @return a set of field deltas, maybe {@code null}
36 Set<IFieldDelta> getFieldDeltas();
39 * Returns a set of enum constant deltas or {@code null} if no deltas are
42 * @return a set of enum constant deltas, maybe {@code null}
44 Set<IEnumConstantDelta> getEnumConstantDeltas();
47 * Returns a set of annotation field deltas or {@code null} if no deltas are
50 * @return a set of annotation field deltas, maybe {@code null}
52 Set<IAnnotationFieldDelta> getAnnotationFieldDeltas()
    [all...]
ITypeVariableDeltas.java 19 import java.util.Set;
35 * Returns a set of type variable deltas or {@code null} if no deltas are
38 * @return a set of type variable deltas, maybe {@code null}
40 Set<ITypeVariableDefinitionDelta> getTypeVariableDeltas();
IExecutableMemberDelta.java 19 import java.util.Set;
31 * Returns a set of modifier deltas or {@code null} if no deltas are
34 * @return a set of modifier deltas, maybe {@code null}
36 Set<IModifierDelta> getModifierDeltas();
39 * Returns a set of exception deltas or {@code null} if no deltas are
42 * @return a set of exception deltas, maybe {@code null}
44 Set<ITypeReferenceDelta<?>> getExceptionDeltas();
47 * Returns a set of parameter deltas or {@code null} if no deltas are
50 * @return a set of parameter deltas, maybe {@code null}
52 Set<IParameterDelta> getParameterDeltas()
    [all...]
IAnnotationDelta.java 19 import java.util.Set;
30 * Returns a set of annotation element deltas or {@code null} if no deltas
33 * @return a set of annotation element deltas, maybe {@code null}
35 Set<IAnnotationElementDelta> getAnnotationElementDeltas();
IApiDelta.java 19 import java.util.Set;
29 * Returns a set of package deltas or {@code null} if no deltas are
32 * @return a set of package deltas, maybe {@code null}
34 Set<IPackageDelta> getPackageDeltas();
IMemberDelta.java 19 import java.util.Set;
38 * Returns a set of modifier deltas or {@code null} if no deltas are
41 * @return a set of modifier deltas, maybe {@code null}
43 Set<IModifierDelta> getModifierDeltas();
IPackageDelta.java 19 import java.util.Set;
31 * Returns a set of class definition deltas or {@code null} if no deltas are
34 * @return a set of class definition deltas, maybe {@code null}
36 Set<IClassDefinitionDelta> getClassDeltas();
IParameterizedTypeDelta.java 19 import java.util.Set;
45 * Returns a set of argument type deltas or {@code null} if no deltas are
48 * @return a set of argument type deltas, maybe {@code null}
50 Set<ITypeReferenceDelta<?>> getArgumentTypeDeltas();
  /cts/tools/signature-tools/src/signature/model/
IAnnotatableElement.java 19 import java.util.Set;
34 * Returns a set of annotations of a model element.
36 * @return a set of annotations of a model element
38 Set<IAnnotation> getAnnotations();
IClassDefinition.java 20 import java.util.Set;
82 * interfaces are declared, an empty set is returned.
86 Set<ITypeReference> getInterfaces();
93 Set<Modifier> getModifiers();
100 Set<IMethod> getMethods();
107 Set<IConstructor> getConstructors();
114 Set<IField> getFields();
118 * definition. The returned set may only contain elements if the kind of
123 Set<IEnumConstant> getEnumConstants();
127 * definition. The returned set may only contain elements if the kind o
    [all...]
IAnnotation.java 19 import java.util.Set;
41 Set<IAnnotationElement> getElements();
IField.java 19 import java.util.Set;
45 Set<Modifier> getModifiers();
IApi.java 21 import java.util.Set;
43 * Returns the set of packages which constitute this api.
45 * @return the set of packages which constitute this api
47 Set<IPackage> getPackages();
IPackage.java 20 import java.util.Set;
53 Set<IClassDefinition> getClasses();
  /external/chromium_org/chrome/browser/extensions/api/omnibox/
omnibox_unittest.cc 48 .Set("content", "content")
49 .Set("description", "description")
50 .Set("descriptionStyles", ListBuilder()
52 .Set("type", "match")
53 .Set("offset", 1)
54 .Set("length", 4))
56 .Set("type", "dim")
57 .Set("offset", 6)
58 .Set("length", 3))))).Build();
79 .Set("content", "content"
    [all...]
  /libcore/luni/src/main/java/java/security/cert/
X509Extension.java 20 import java.util.Set;
28 * Returns the set of OIDs of the extension(s) marked as CRITICAL, that this
31 * @return the set of extension OIDs marked as CRITIAL, an empty set if none
35 public Set<String> getCriticalExtensionOIDs();
49 * Returns the set of OIDs of the extension(s) marked as NON-CRITICAL, that
52 * @return the set of extension OIDs marked as NON-CRITIAL, an empty set if
56 public Set<String> getNonCriticalExtensionOIDs();
  /cts/tools/signature-tools/src/signature/compare/model/impl/
SigExecutableMemberDelta.java 27 import java.util.Set;
32 private Set<ITypeReferenceDelta<?>> exceptionDeltas;
33 private Set<IModifierDelta> modifierDeltas;
34 private Set<ITypeVariableDefinitionDelta> typeVariableDeltas;
35 private Set<IAnnotationDelta> annotationDeltas;
36 private Set<IParameterDelta> parameterDeltas;
42 public Set<ITypeReferenceDelta<?>> getExceptionDeltas() {
47 Set<ITypeReferenceDelta<?>> exceptionDeltas) {
51 public Set<IModifierDelta> getModifierDeltas() {
55 public void setModifierDeltas(Set<IModifierDelta> modifierDeltas)
    [all...]
SigClassDefinitionDelta.java 31 import java.util.Set;
41 private Set<IAnnotationFieldDelta> annotationFieldDeltas;
42 private Set<IConstructorDelta> constructorDeltas;
43 private Set<IEnumConstantDelta> enumConstantDeltas;
44 private Set<IFieldDelta> fieldDeltas;
45 private Set<ITypeReferenceDelta<?>> interfaceDeltas;
46 private Set<IMethodDelta> methodDeltas;
47 private Set<IModifierDelta> modifierDeltas;
49 private Set<IAnnotationDelta> annotationDeltas;
50 private Set<ITypeVariableDefinitionDelta> typeVariableDeltas
    [all...]
  /external/chromium_org/chrome/common/extensions/api/extension_action/
browser_action_manifest_unittest.cc 28 .Set("name", "No default properties")
29 .Set("version", "1.0.0")
30 .Set("manifest_version", 2)
31 .Set("browser_action", DictionaryBuilder()
32 .Set("default_title", "Title")))
47 .Set("name", "String default icon")
48 .Set("version", "1.0.0")
49 .Set("manifest_version", 2)
50 .Set("browser_action", DictionaryBuilder()
51 .Set("default_icon", "icon.png"))
    [all...]
  /external/chromium_org/third_party/re2/re2/
set.h 16 // An RE2::Set represents a collection of regexps that can
18 class RE2::Set {
20 Set(const RE2::Options& options, RE2::Anchor anchor);
21 ~Set();
23 // Add adds regexp pattern to the set, interpreted using the RE2 options.
32 // Compile prepares the Set for matching.
38 // Match returns true if text matches any of the regexps in the set.
48 //DISALLOW_EVIL_CONSTRUCTORS(Set);
49 Set(const Set&)
    [all...]
  /external/regex-re2/re2/
set.h 16 // An RE2::Set represents a collection of regexps that can
18 class RE2::Set {
20 Set(const RE2::Options& options, RE2::Anchor anchor);
21 ~Set();
23 // Add adds regexp pattern to the set, interpreted using the RE2 options.
32 // Compile prepares the Set for matching.
38 // Match returns true if text matches any of the regexps in the set.
48 //DISALLOW_EVIL_CONSTRUCTORS(Set);
49 Set(const Set&)
    [all...]

Completed in 238 milliseconds

1 2 3 4 5 6 7 8 91011>>