HomeSort by relevance Sort by last modified time
    Searched refs:object (Results 51 - 75 of 9098) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
sample_doctest_no_doctests.py 9 class Foo(object):
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
sample_doctest_no_docstrings.py 7 class Foo(object):
sample_doctest_no_doctests.py 9 class Foo(object):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
sample_doctest_no_docstrings.py 7 class Foo(object):
sample_doctest_no_doctests.py 9 class Foo(object):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
sample_doctest_no_docstrings.py 7 class Foo(object):
sample_doctest_no_doctests.py 9 class Foo(object):
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
local1.s 3 .type foo,%object
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
ITreeNodeStream.cs 42 object this[int i] {
61 object LT(int k);
65 * the object that provides node objects.
68 object TreeSource {
113 string ToString(object start, object stop);
132 void ReplaceChildren(object parent, int startChildIndex, int stopChildIndex, object t);
TreeVisitor.cs 58 public object Visit(object t, ITreeVisitorAction action)
68 object child = adaptor.GetChild(t, i);
76 public object Visit(object t, Func<object, object> preAction, Func<object, object> postAction)
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
ITreeNodeStream.cs 44 object this[int i]
64 object LT( int k );
68 * the object that provides node objects.
71 object TreeSource
120 string ToString( object start, object stop );
139 void ReplaceChildren( object parent, int startChildIndex, int stopChildIndex, object t );
TreeVisitor.cs 60 public object Visit( object t, ITreeVisitorAction action )
70 object child = adaptor.GetChild( t, i );
78 public object Visit( object t, Func<object, object> preAction, Func<object, object> postAction )
  /external/tpm2/
Unseal.c 15 // TPM_RC_TYPE itemHandle is not a KEYEDHASH data object
23 OBJECT *object; local
27 // Get pointer to loaded object
28 object = ObjectGet(in->itemHandle);
30 // Input handle must be a data object
31 if(object->publicArea.type != TPM_ALG_KEYEDHASH)
33 if( object->publicArea.objectAttributes.decrypt == SET
34 || object->publicArea.objectAttributes.sign == SET
35 || object->publicArea.objectAttributes.restricted == SET
    [all...]
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...]
  /libcore/ojluni/src/main/java/java/security/
GuardedObject.java 29 * A GuardedObject is an object that is used to protect access to
30 * another object.
32 * <p>A GuardedObject encapsulates a target object and a Guard object,
33 * such that access to the target object is possible
34 * only if the Guard object allows it.
35 * Once an object is encapsulated by a GuardedObject,
36 * access to that object is controlled by the {@code getObject}
38 * {@code checkGuard} method on the Guard object that is
53 private Object object; // the object we are guardin field in class:GuardedObject
    [all...]
  /external/clang/test/Sema/
overloaded-func-transparent-union.c 12 Class *object; member in union:__anon15632
16 this.object->str = str;
17 this.object->str2 = str2;
21 this.object->str = str;
22 this.object->str2 = str;
  /external/libchrome/base/mac/
scoped_cftyperef.h 15 // ownership of a CoreFoundation object: any object that can be represented
19 // By default, ScopedCFTypeRef<> takes ownership of an object (in the
21 // claim. The caller must own the object it gives to ScopedCFTypeRef<>, and
22 // relinquishes an ownership claim to that object. ScopedCFTypeRef<> does not
25 // then ScopedCFTypeRef<> will call CFRetain() on the object, and the initial
33 static CFT Retain(CFT object) {
34 CFRetain(object);
35 return object;
37 static void Release(CFT object) {
    [all...]
scoped_dispatch_object.h 19 static T Retain(T object) {
20 dispatch_retain(object);
21 return object;
23 static void Release(T object) {
24 dispatch_release(object);
  /external/proguard/src/proguard/evaluation/value/
IdentifiedDoubleValue.java 44 // Implementations for Object.
46 public boolean equals(Object object)
48 return this == object ||
49 super.equals(object) &&
50 this.valuefactory.equals(((IdentifiedDoubleValue)object).valuefactory) &&
51 this.id == ((IdentifiedDoubleValue)object).id;
IdentifiedFloatValue.java 44 // Implementations for Object.
46 public boolean equals(Object object)
48 return this == object ||
49 super.equals(object) &&
50 this.valuefactory.equals(((IdentifiedFloatValue)object).valuefactory) &&
51 this.id == ((IdentifiedFloatValue)object).id;
IdentifiedIntegerValue.java 44 // Implementations for Object.
46 public boolean equals(Object object)
48 return this == object ||
49 super.equals(object) &&
50 this.valuefactory.equals(((IdentifiedIntegerValue)object).valuefactory) &&
51 this.id == ((IdentifiedIntegerValue)object).id;
IdentifiedLongValue.java 44 // Implementations for Object.
46 public boolean equals(Object object)
48 return this == object ||
49 super.equals(object) &&
50 this.valuefactory.equals(((IdentifiedLongValue)object).valuefactory) &&
51 this.id == ((IdentifiedLongValue)object).id;
  /external/webrtc/webrtc/base/
keep_ref_until_done.h 23 static inline void DoNothing(const scoped_refptr<T>& object) {}
26 // KeepRefUntilDone keeps a reference to |object| until the returned
30 static inline Callback0<void> KeepRefUntilDone(ObjectT* object) {
31 return rtc::Bind(&impl::DoNothing<ObjectT>, scoped_refptr<ObjectT>(object));
36 const scoped_refptr<ObjectT>& object) {
37 return rtc::Bind(&impl::DoNothing<ObjectT>, object);
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
DebugTreeAdaptor.cs 61 public virtual object Create(IToken payload) {
66 object node = adaptor.Create(payload);
71 public virtual object ErrorNode(ITokenStream input, IToken start, IToken stop,
73 object node = adaptor.ErrorNode(input, start, stop, e);
80 public virtual object DupTree(object tree) {
81 object t = adaptor.DupTree(tree);
90 protected virtual void SimulateTreeConstruction(object t) {
94 object child = adaptor.GetChild(t, i);
100 public virtual object DupNode(object treeNode)
    [all...]
  /toolchain/binutils/binutils-2.25/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)

Completed in 1581 milliseconds

1 23 4 5 6 7 8 91011>>