HomeSort by relevance Sort by last modified time
    Searched refs:object (Results 76 - 100 of 10855) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/tpm2/
ObjectChangeAuth.c 17 // TPM_RC_TYPE the key referenced by parentHandle is not the parent of the object
18 // referenced by objectHandle; or objectHandle is a sequence object.
28 OBJECT *object; local
34 // Get object pointer
35 object = ObjectGet(in->objectHandle);
37 // Can not change auth on sequence object
38 if(ObjectIsSequence(object))
43 > CryptGetHashDigestSize(object->publicArea.nameAlg))
46 // Check parent for object
    [all...]
  /toolchain/binutils/binutils-2.27/gas/testsuite/lib/
dotest 16 object=`basename $i .s`.o
17 $x $i -o $xout/$object
18 $y $i -o $yout/$object
22 if (cmp $xout/$object $yout/$object)
26 if (doobjcmp $xout/$object $yout/$object)
  /external/guava/guava-testlib/src/com/google/common/testing/
SerializableTester.java 26 * Tests serialization and deserialization of an object, optionally asserting
27 * that the resulting object is equal to the original.
44 * Serializes and deserializes the specified object.
51 * <p>Note that the specified object may not be known by the compiler to be a
53 * {@code Object}. For example, it might be declared as a {@code List}.
55 * @return the re-serialized object
56 * @throws RuntimeException if the specified object was not successfully
60 public static <T> T reserialize(T object) {
61 return Platform.reserialize(object);
65 * Serializes and deserializes the specified object and verifies that th
    [all...]
  /external/hamcrest/hamcrest-core/src/main/java/org/hamcrest/core/
IsSame.java 9 * Is the value the same object as another value?
12 private final T object; field in class:IsSame
14 public IsSame(T object) {
15 this.object = object;
19 public boolean matches(Object arg) {
20 return arg == object;
26 .appendValue(object)
31 * Creates a matcher that matches only when the examined object is the same instance as
32 * the specified target object
    [all...]
  /frameworks/support/dynamic-animation/src/main/java/androidx/dynamicanimation/animation/
FloatPropertyCompat.java 25 * is held in a host object. To access this float value, {@link #setValue(Object, float)} and getter
26 * {@link #getValue(Object)} need to be implemented. Both the setter and the getter take the
47 * Create a {@link FloatPropertyCompat} wrapper for a {@link FloatProperty} object. The new
53 * @return a new {@link FloatPropertyCompat} wrapper for the given {@link FloatProperty} object
60 public float getValue(T object) {
61 return property.get(object);
65 public void setValue(T object, float value) {
66 property.setValue(object, value);
72 * Returns the current value that this property represents on the given <code>object</code>
    [all...]
  /test/vts-testcase/kernel/ltp/
ltp_enums.py 18 class RequirementState(object):
32 class ConfigKeys(object):
39 class ShellEnvKeys(object):
54 class Delimiters(object):
59 class TestExitCode(object):
75 class Requirements(object):
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
DebugTreeAdaptor.cs 64 public virtual object Create( IToken payload )
71 object node = adaptor.Create( payload );
76 public virtual object ErrorNode( ITokenStream input, IToken start, IToken stop,
79 object node = adaptor.ErrorNode( input, start, stop, e );
87 public virtual object DupTree( object tree )
89 object t = adaptor.DupTree( tree );
98 protected virtual void SimulateTreeConstruction( object t )
104 object child = adaptor.GetChild( t, i );
110 public virtual object DupNode( object treeNode
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
BaseTreeAdaptor.cs 48 protected IDictionary<object, int> treeToUniqueIDMap;
51 public virtual object Nil() {
70 public virtual object ErrorNode(ITokenStream input, IToken start, IToken stop,
77 public virtual bool IsNil(object tree) {
81 public virtual object DupTree(object tree) {
91 public virtual object DupTree(object t, object parent) {
95 object newTree = DupNode(t)
    [all...]
  /toolchain/binutils/binutils-2.27/gold/testsuite/
object_unittest.cc 1 // object_unittest.cc -- test Object, Relobj, etc.
25 #include "object.h"
37 // Test basic Object functionality.
47 Object* object = make_elf_object("test.o", &input_file, 0, local
49 CHECK(object->name() == "test.o");
50 CHECK(!object->is_dynamic());
51 CHECK(object->is_locked());
52 object->unlock(task);
53 CHECK(!object->is_locked())
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
BaseTreeAdaptor.cs 51 protected IDictionary<object, int> treeToUniqueIDMap;
54 public virtual object Nil()
74 public virtual object ErrorNode( ITokenStream input, IToken start, IToken stop,
82 public virtual bool IsNil( object tree )
87 public virtual object DupNode(int type, object treeNode)
89 object t = DupNode(treeNode);
94 public virtual object DupNode(object treeNode, string text)
96 object t = DupNode(treeNode)
    [all...]
  /external/webrtc/webrtc/base/
bind_unittest.cc 37 void RefArgument(const scoped_refptr<LifeTimeCheck>& object) {
38 EXPECT_TRUE(object.get() != nullptr);
120 MethodBindTester object = {0}; local
121 EXPECT_EQ(0, object.call_count);
122 Bind(&MethodBindTester::NullaryVoid, &object)();
123 EXPECT_EQ(1, object.call_count);
124 EXPECT_EQ(1, Bind(&MethodBindTester::NullaryInt, &object)());
125 EXPECT_EQ(2, object.call_count);
127 static_cast<const MethodBindTester*>(&object))());
128 EXPECT_EQ(3, object.call_count)
163 LifeTimeCheck object; local
179 LifeTimeCheck object; local
195 LifeTimeCheck object; local
207 LifeTimeCheck object; local
    [all...]
  /art/runtime/interpreter/mterp/mips/
op_iget_quick.S 5 GET_VREG(a3, a2) # a3 <- object we're operating on
8 # check object for null
9 beqz a3, common_errNullObject # object was null
op_iget_wide_quick.S 3 GET_VREG(a3, a2) # a3 <- object we're operating on
6 # check object for null
7 beqz a3, common_errNullObject # object was null
  /external/compiler-rt/lib/builtins/
atomic_flag_clear.c 23 void atomic_flag_clear(volatile atomic_flag *object) {
24 __c11_atomic_store(&(object)->_Value, 0, __ATOMIC_SEQ_CST);
atomic_flag_clear_explicit.c 23 void atomic_flag_clear_explicit(volatile atomic_flag *object,
25 __c11_atomic_store(&(object)->_Value, 0, order);
atomic_flag_test_and_set.c 23 _Bool atomic_flag_test_and_set(volatile atomic_flag *object) {
24 return __c11_atomic_exchange(&(object)->_Value, 1, __ATOMIC_SEQ_CST);
atomic_flag_test_and_set_explicit.c 23 _Bool atomic_flag_test_and_set_explicit(volatile atomic_flag *object,
25 return __c11_atomic_exchange(&(object)->_Value, 1, order);
  /external/guava/guava-gwt/test-super/com/google/common/testing/super/com/google/common/testing/
Platform.java 28 * Serializes and deserializes the specified object (a no-op under GWT).
31 static <T> T reserialize(T object) {
32 return checkNotNull(object);
  /external/nanopb-c/generator/google/protobuf/internal/
message_listener.py 40 class MessageListener(object):
73 class NullMessageListener(object):
  /external/protobuf/python/google/protobuf/internal/
message_listener.py 40 class MessageListener(object):
73 class NullMessageListener(object):
  /external/replicaisland/src/com/replica/replicaisland/
TObjectPool.java 23 * @param <T> The type of object managed by the pool.
36 T object = (T)super.allocate(); local
37 return object;
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTSingleton.h 31 static T object; local
32 return object;
  /frameworks/base/core/java/android/app/timezone/
Utils.java 40 /** Validates that {@code object} is not null. Always returns {@code object}. */
41 static <T> T validateNotNull(String type, T object) {
42 if (object == null) {
45 return object;
49 * If {@code requireNotNull} is {@code true} calls {@link #validateNotNull(String, Object)},
50 * and {@link #validateNull(String, Object)} otherwise. Returns {@code object}.
52 static <T> T validateConditionalNull(boolean requireNotNull, String type, T object) {
54 return validateNotNull(type, object);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
Holder.java 22 public void set(T object) {
23 mObject = object;
  /prebuilts/misc/common/swig/include/2.0.11/guile/
swigrun.i 38 SWIG_IsPointer(SCM object);
41 SWIG_IsPointerOfType(SCM object, swig_type_info *type);
44 SWIG_PointerAddress(SCM object);
47 SWIG_PointerType(SCM object);

Completed in 581 milliseconds

1 2 34 5 6 7 8 91011>>