Searched refs:Object (Results 201 - 225 of 4091) sorted by relevance

1234567891011>>

/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DLazyConstructionEnumeration.java10 private Object nextObj;
23 public Object nextElement()
25 Object o = nextObj;
32 private Object readObject()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
H A DPemObjectParser.java7 Object parseObject(PemObject obj)
/external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
H A DCustomElementBinding.h42 static PassOwnPtr<CustomElementBinding> create(v8::Isolate*, v8::Handle<v8::Object> prototype);
46 v8::Handle<v8::Object> prototype() { return m_prototype.newLocal(m_isolate); }
49 CustomElementBinding(v8::Isolate*, v8::Handle<v8::Object> prototype);
52 ScopedPersistent<v8::Object> m_prototype;
/external/easymock/src/org/easymock/
H A DAbstractMatcher.java40 * {@link AbstractMatcher#matches(Object[], Object[])}. The arguments
49 protected boolean argumentMatches(Object expected, Object actual) {
55 * {@link AbstractMatcher#toString(Object[])}.
61 protected String argumentToString(Object argument) {
70 * <code>argumentMatches(Object, Object)</code> to check whether arguments
72 * false. In two cases, <code>argumentMatches(Object, Object)</cod
[all...]
/external/easymock/src/org/easymock/internal/
H A DILegacyMethods.java19 void setDefaultReturnValue(Object value);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
H A DIValueSourcePropertyEditor.java14 * Extension for {@link PropertyEditor} that can be used to convert {@link Object} value into Java
24 String getValueSource(Object value) throws Exception;
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/check/
H A DAssert.java87 public static void isNull(Object object) {
101 public static void isNull(Object object, String message) {
116 * {@link String#format(String, Object...)}. For example
121 public static void isNull(Object object, String errorFormat, Object... args) {
135 public static void isNull2(Object object, String errorFormat, Object... args) {
154 public static void isNotNull(Object object) {
168 public static void isNotNull(Object object, String message) {
183 * {@link String#format(String, Object
[all...]
/external/emma/core/java12/com/vladium/jcd/opcodes/
H A DIOpcodeVisitor.java20 void visit (int opcode, boolean wide, int offset, Object ctx);
/external/guava/guava-gwt/src/com/google/common/collect/
H A DArrayListMultimap_CustomFieldSerializer.java34 public static ArrayListMultimap<Object, Object> instantiate(
36 return (ArrayListMultimap<Object, Object>)
H A DHashMultimap_CustomFieldSerializer.java35 public static HashMultimap<Object, Object> instantiate(
37 return (HashMultimap<Object, Object>)
H A DImmutableListMultimap_CustomFieldSerializer.java34 public static ImmutableListMultimap<Object, Object> instantiate(
36 return (ImmutableListMultimap<Object, Object>)
H A DImmutableSetMultimap_CustomFieldSerializer.java34 public static ImmutableSetMultimap<Object, Object> instantiate(
36 return (ImmutableSetMultimap<Object, Object>)
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingObjectTest.java31 final Object delegate = new Object();
33 @Override protected Object delegate() {
43 @Override protected Object delegate() {
/external/junit/src/org/junit/internal/
H A DComparisonCriteria.java22 * Object array or array of arrays (multi-dimensional array) with
25 * Object array or array of arrays (multi-dimensional array) with
28 public void arrayEquals(String message, Object expecteds, Object actuals)
38 Object expected= Array.get(expecteds, i);
39 Object actual= Array.get(actuals, i);
57 private boolean isArray(Object expected) {
61 private int assertArraysAreSameLength(Object expecteds,
62 Object actuals, String header) {
75 protected abstract void assertElementsEqual(Object expecte
[all...]
/external/llvm/tools/llvm-dwarfdump/
H A DMakefile12 LINK_COMPONENTS := DebugInfo Object
/external/llvm/tools/llvm-symbolizer/
H A DMakefile12 LINK_COMPONENTS := DebugInfo Object
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DGeneratorStrategy.java43 boolean equals(Object o);
/external/mockito/src/org/mockito/internal/invocation/
H A DArgumentsProcessor.java21 public static Object[] expandVarArgs(final boolean isVarArgs, final Object[] args) {
23 return args == null ? new Object[0] : args;
27 Object[] varArgs;
30 varArgs = new Object[] { null };
35 Object[] newArgs = new Object[nonVarArgsCount + varArgsCount];
41 public static List<Matcher> argumentsToMatchers(Object[] arguments) {
43 for (Object arg : arguments) {
/external/mockito/src/org/mockito/internal/matchers/
H A DSame.java14 public class Same extends ArgumentMatcher<Object> implements Serializable {
17 private final Object wanted;
19 public Same(Object wanted) {
23 public boolean matches(Object actual) {
/external/mockito/src/org/mockito/internal/matchers/apachecommons/
H A DReflectionEquals.java13 public class ReflectionEquals extends ArgumentMatcher<Object> implements Serializable {
15 private final Object wanted;
18 public ReflectionEquals(Object wanted, String... excludeFields) {
23 public boolean matches(Object actual) {
/external/mockito/src/org/mockito/internal/stubbing/answers/
H A DReturns.java12 public class Returns implements Answer<Object>, Serializable {
15 private final Object value;
17 public Returns(Object value) {
21 public Object answer(InvocationOnMock invocation) throws Throwable {
H A DReturnsElementsOf.java33 public class ReturnsElementsOf implements Answer<Object> {
35 private final LinkedList<Object> elements;
42 this.elements = new LinkedList<Object>(elements);
45 public Object answer(InvocationOnMock invocation) throws Throwable {
/external/mockito/src/org/mockito/internal/stubbing/defaultanswers/
H A DForwardsInvocations.java18 public class ForwardsInvocations implements Answer<Object>, Serializable {
22 private Object delegatedObject = null ;
24 public ForwardsInvocations(Object delegatedObject) {
28 public Object answer(InvocationOnMock invocation) throws Throwable {
/external/mockito/src/org/mockito/internal/util/
H A DConsoleMockitoLogger.java10 * @see org.mockito.internal.util.Logger#print(java.lang.Object)
12 public void log(Object what) {
/external/mockito/src/org/mockito/internal/util/collections/
H A DSets.java15 public static Set<Object> newMockSafeHashSet(Iterable<Object> mocks) {
19 public static Set<Object> newMockSafeHashSet(Object... mocks) {

Completed in 598 milliseconds

1234567891011>>