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

1 2 3 4 5 6 78 91011>>

  /external/python/cpython2/Lib/
_threading_local.py 10 a thread-local object and use its attributes:
17 You can also access the local-object's dictionary:
50 Of course, values you get from a local object, including a __dict__
71 called each time the local object is used in a separate thread. This
74 Now if we create a local object:
110 AttributeError: 'MyLocal' object has no attribute 'color'
148 class _localbase(object):
152 self = object.__new__(cls)
154 object.__setattr__(self, '_local__key', key)
155 object.__setattr__(self, '_local__args', (args, kw)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
_threading_local.py 10 a thread-local object and use its attributes:
17 You can also access the local-object's dictionary:
50 Of course, values you get from a local object, including a __dict__
71 called each time the local object is used in a separate thread. This
74 Now if we create a local object:
110 AttributeError: 'MyLocal' object has no attribute 'color'
148 class _localbase(object):
152 self = object.__new__(cls)
154 object.__setattr__(self, '_local__key', key)
155 object.__setattr__(self, '_local__args', (args, kw)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
_threading_local.py 10 a thread-local object and use its attributes:
17 You can also access the local-object's dictionary:
50 Of course, values you get from a local object, including a __dict__
71 called each time the local object is used in a separate thread. This
74 Now if we create a local object:
110 AttributeError: 'MyLocal' object has no attribute 'color'
148 class _localbase(object):
152 self = object.__new__(cls)
154 object.__setattr__(self, '_local__key', key)
155 object.__setattr__(self, '_local__args', (args, kw)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_threading_local.py 10 a thread-local object and use its attributes:
17 You can also access the local-object's dictionary:
50 Of course, values you get from a local object, including a __dict__
71 called each time the local object is used in a separate thread. This
74 Now if we create a local object:
110 AttributeError: 'MyLocal' object has no attribute 'color'
148 class _localbase(object):
152 self = object.__new__(cls)
154 object.__setattr__(self, '_local__key', key)
155 object.__setattr__(self, '_local__args', (args, kw)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_threading_local.py 10 a thread-local object and use its attributes:
17 You can also access the local-object's dictionary:
50 Of course, values you get from a local object, including a __dict__
71 called each time the local object is used in a separate thread. This
74 Now if we create a local object:
110 AttributeError: 'MyLocal' object has no attribute 'color'
148 class _localbase(object):
152 self = object.__new__(cls)
154 object.__setattr__(self, '_local__key', key)
155 object.__setattr__(self, '_local__args', (args, kw)
    [all...]
  /system/chre/util/include/chre/util/
optional_impl.h 28 Optional<ObjectType>::Optional(const ObjectType& object) {
29 new (objectAddr()) ObjectType(object);
34 Optional<ObjectType>::Optional(ObjectType&& object) {
35 new (objectAddr()) ObjectType(std::move(object));
47 object().~ObjectType();
54 return object();
59 return object();
65 object() = std::move(other);
79 object() = std::move(other.object());
141 ObjectType& Optional<ObjectType>::object() { function in class:chre::Optional
146 const ObjectType& Optional<ObjectType>::object() const { function in class:chre::Optional
    [all...]
  /external/vulkan-validation-layers/libs/cjson/includes/
cJSON.h 47 struct cJSON *next, *prev; /* next/prev allow you to walk array/object
50 struct cJSON *child; /* An array or object item will have a child pointer
52 array/object. */
61 in the list of subitems of an object. */
72 /* Supply a block of JSON, and this returns a cJSON object you can interrogate.
90 /* Returns the number of items in an array (or object). */
95 /* Get item "string" from object. Case insensitive. */
96 extern cJSON *cJSON_GetObjectItem(cJSON *object, const char *string);
119 /* Append item to the specified array/object. */
121 extern void cJSON_AddItemToObject(cJSON *object, const char *string, cJSON *item)
    [all...]
  /external/llvm/tools/llvm-objdump/
llvm-objdump.h 16 #include "llvm/Object/Archive.h"
21 namespace object { namespace in namespace:llvm
66 bool RelocAddressLess(object::RelocationRef a, object::RelocationRef b);
68 void printCOFFUnwindInfo(const object::COFFObjectFile* o);
69 void printMachOUnwindInfo(const object::MachOObjectFile* o);
70 void printMachOExportsTrie(const object::MachOObjectFile* o);
71 void printMachORebaseTable(const object::MachOObjectFile* o);
72 void printMachOBindTable(const object::MachOObjectFile* o);
73 void printMachOLazyBindTable(const object::MachOObjectFile* o)
    [all...]
  /external/autotest/frontend/client/src/autotest/moblab/rpc/
WifiInfo.java 58 public void fromJson(JSONObject object) {
59 if (object != null) {
60 apName = getStringFieldOrDefault(object, JSON_FIELD_AP_NAME, null);
61 apPass = getStringFieldOrDefault(object, JSON_FIELD_AP_PASS, null);
67 JSONObject object = new JSONObject(); local
69 object.put(JSON_FIELD_AP_NAME, new JSONString(apName));
71 object.put(JSON_FIELD_AP_NAME, JSONNull.getInstance());
74 object.put(JSON_FIELD_AP_PASS, new JSONString(apPass));
76 object.put(JSON_FIELD_AP_PASS, JSONNull.getInstance());
78 return object;
    [all...]
  /external/v8/src/
allocation-site-scopes.cc 44 Handle<JSObject> object) {
45 if (!object.is_null()) {
49 scope_site->set_transition_info(*object);
54 static_cast<void*>(*object));
59 static_cast<void*>(*object));
66 bool AllocationSiteUsageContext::ShouldCreateMemento(Handle<JSObject> object) {
67 if (activated_ && AllocationSite::CanTrack(object->map()->instance_type())) {
69 AllocationSite::GetMode(object->GetElementsKind()) ==
73 object->IsJSArray() ? "JSArray" : "JSObject",
74 static_cast<void*>(*object));
    [all...]
  /external/flac/libFLAC/
metadata_object.c 164 static void seektable_calculate_length_(FLAC__StreamMetadata *object)
166 FLAC__ASSERT(object != NULL);
167 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_SEEKTABLE);
169 object->length = object->data.seek_table.num_points * FLAC__STREAM_METADATA_SEEKPOINT_LENGTH;
192 static void vorbiscomment_calculate_length_(FLAC__StreamMetadata *object)
196 FLAC__ASSERT(object->type == FLAC__METADATA_TYPE_VORBIS_COMMENT);
198 object->length = (FLAC__STREAM_METADATA_VORBIS_COMMENT_ENTRY_LENGTH_LEN) / 8;
199 object->length += object->data.vorbis_comment.vendor_string.length
432 FLAC__StreamMetadata *object; local
    [all...]
  /external/llvm/test/tools/llvm-nm/X86/
radix.s 9 .type i0,@object # @i0
17 .type i1,@object # @i1
25 .type i2,@object # @i2
32 .type i3,@object # @i3
39 .type i4,@object # @i4
46 .type i5,@object # @i5
53 .type i6,@object # @i6
60 .type i7,@object # @i7
67 .type i8,@object # @i8
74 .type i9,@object # @i
    [all...]
  /external/tpm2/
Object.c 17 // This function is called at TPM2_Startup() to initialize the object subsystem.
25 // object slots initialization
37 // In this implementation, a persistent object is moved from NV into an object slot for processing. It is
51 // If an object is a temporary evict object, flush it from slot
52 if(s_objects[i].object.entity.attributes.evict == SET)
61 // This function checks to see if a transient handle references a loaded object. This routine should not be
67 // TRUE if the handle references a loaded object
68 // FALSE if the handle is not an object handle, or it does not reference to
146 OBJECT *object = ObjectGet(handle); local
165 OBJECT *object = ObjectGet(handle); local
185 OBJECT *object = ObjectGet(handle); local
235 OBJECT *object = ObjectGet(handle); local
304 OBJECT *object = NULL; local
676 OBJECT *object; local
820 OBJECT *object = ObjectGet(handle); local
    [all...]
MakeCredential.c 28 OBJECT *object; local
33 // Get object pointer
34 object = ObjectGet(in->handle);
38 if( !CryptIsAsymAlgorithm(object->publicArea.type)
39 || object->publicArea.objectAttributes.decrypt == CLEAR
40 || object->publicArea.objectAttributes.restricted == CLEAR
46 if(in->credential.t.size > CryptGetHashDigestSize(object->publicArea.nameAlg))
  /libcore/ojluni/src/main/java/java/time/chrono/
Ser.java 72 * This class wraps the object being serialized, and takes a byte representing the type of the class to
77 * In order to serialize the object it writes its byte and then calls back to the appropriate class where
78 * the serialization is performed. In order to deserialize the object it read in the type byte, switching
84 * {@link LocalDateTime} are serialized as one object. Enum classes are serialized using the index of their
111 /** The object being serialized. */
112 private Object object; field in class:Ser
124 * @param object the object
126 Ser(byte type, Object object)
    [all...]
  /external/annotation-tools/asmx/src/org/objectweb/asm/attrs/
StackMapType.java 66 "Object",
71 private String object; field in class:StackMapType
92 public void setObject(String object) {
93 this.object = object;
101 return object;
107 sb.append(":").append(object);
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
RewriteRuleNodeStream.cs 53 public RewriteRuleNodeStream( ITreeAdaptor adaptor, string elementDescription, object oneElement )
64 public virtual object NextNode()
69 protected override object ToTree( object el )
74 protected override object Dup( object el )
RewriteRuleTokenStream.cs 48 public RewriteRuleTokenStream( ITreeAdaptor adaptor, string elementDescription, object oneElement )
60 public virtual object NextNode()
76 protected override object ToTree( object el )
81 protected override object Dup( object el )
  /external/llvm/include/llvm/ExecutionEngine/Orc/
CompileUtils.h 10 // Contains utilities for compiling IR to object files.
20 #include "llvm/Object/ObjectFile.h"
34 object::OwningBinary<object::ObjectFile> operator()(Module &M) const {
45 Expected<std::unique_ptr<object::ObjectFile>> Obj =
46 object::ObjectFile::createObjectFile(ObjBuffer->getMemBufferRef());
47 typedef object::OwningBinary<object::ObjectFile> OwningObj;
  /external/proguard/src/proguard/evaluation/value/
CompositeDoubleValue.java 57 // Implementations for Object.
59 public boolean equals(Object object)
61 return this == object ||
62 super.equals(object) &&
63 this.doubleValue1.equals(((CompositeDoubleValue)object).doubleValue1) &&
64 this.operation == ((CompositeDoubleValue)object).operation &&
65 this.doubleValue2.equals(((CompositeDoubleValue)object).doubleValue2);
CompositeFloatValue.java 57 // Implementations for Object.
59 public boolean equals(Object object)
61 return this == object ||
62 super.equals(object) &&
63 this.floatValue1.equals(((CompositeFloatValue)object).floatValue1) &&
64 this.operation == ((CompositeFloatValue)object).operation &&
65 this.floatValue2.equals(((CompositeFloatValue)object).floatValue2);
CompositeIntegerValue.java 63 // Implementations for Object.
65 public boolean equals(Object object)
67 return this == object ||
68 super.equals(object) &&
69 this.integerValue1.equals(((CompositeIntegerValue)object).integerValue1) &&
70 this.operation == ((CompositeIntegerValue)object).operation &&
71 this.integerValue2.equals(((CompositeIntegerValue)object).integerValue2);
CompositeLongValue.java 63 // Implementations for Object.
65 public boolean equals(Object object)
67 return this == object ||
68 super.equals(object) &&
69 this.longValue1.equals(((CompositeLongValue)object).longValue1) &&
70 this.operation == ((CompositeLongValue)object).operation &&
71 this.longValue2.equals(((CompositeLongValue)object).longValue2);
  /external/python/cpython3/Lib/idlelib/
debugobj.py 7 # object browser
10 # - for classes/modules, add "open source" to object browser
20 def __init__(self, labeltext, object, setfunction=None):
22 self.object = object
27 return myrepr.repr(self.object)
40 self.object = value
42 return not not dir(self.object)
44 keys = dir(self.object)
48 value = getattr(self.object, key
    [all...]
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
InnerCannotReadDependencyTest.java 33 BasicObject object = new BasicObject(); local
34 object.setField1("a");
35 mBinder.setObj(object);
38 object.setField1(null);
41 object.setField2("b");
44 object.setField1("c");

Completed in 828 milliseconds

1 2 3 4 5 6 78 91011>>