HomeSort by: relevance | last modified time | path
    Searched refs:Object (Results 1 - 25 of 458) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/external/gpl3/gcc/dist/libobjc/
linking.m 27 #include <objc/Object.h>
29 /* Generate references to Object class since it is needed by the
34 [Object class];
Object.m 1 /* The implementation of class Object for Objective-C.
26 #include "objc/Object.h"
29 @implementation Object
  /src/external/gpl3/gcc.old/dist/libobjc/
linking.m 27 #include <objc/Object.h>
29 /* Generate references to Object class since it is needed by the
34 [Object class];
Object.m 1 /* The implementation of class Object for Objective-C.
26 #include "objc/Object.h"
29 @implementation Object
  /src/sys/external/bsd/acpica/dist/utilities/
utdelete.c 3 * Module Name: utdelete - object deletion and reference count utilities
58 ACPI_OPERAND_OBJECT *Object);
62 ACPI_OPERAND_OBJECT *Object,
70 * PARAMETERS: Object - Object to be deleted
74 * DESCRIPTION: Low level object deletion, after reference counts have been
81 ACPI_OPERAND_OBJECT *Object)
91 ACPI_FUNCTION_TRACE_PTR (UtDeleteInternalObj, Object);
94 if (!Object)
100 * Must delete or free any pointers within the object that are no
    [all...]
utcache.c 57 * ObjectSize - Size of each cached object
59 * ReturnCache - Where the new cache object is returned
63 * DESCRIPTION: Create a cache object
85 /* Create the cache object */
93 /* Populate the cache object and return it */
109 * PARAMETERS: Cache - Handle to cache object
143 /* Delete and unlink one cached state object */
161 * PARAMETERS: Cache - Handle to cache object
166 * cache object.
188 /* Now we can delete the cache object */
    [all...]
utdecode.c 54 * Properties of the ACPI Object Types, both internal and external.
75 ACPI_NS_NORMAL, /* 16 Debug Object */
192 * PARAMETERS: Type - An ACPI object type
194 * RETURN: Decoded ACPI object type name
211 /* Printable names of the ACPI object types */
272 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Null Object Descriptor\n"));
273 return_STR ("[NULL Object Descriptor]");
282 "Invalid object descriptor type: 0x%2.2X [%s] (%p)\n",
286 return_STR ("Invalid object");
297 * PARAMETERS: Object - A namespace nod
    [all...]
utobject.c 3 * Module Name: utobject - ACPI object create/delete/size/cache routines
79 * Type - ACPI Type of the new object
81 * RETURN: A new internal object, null on failure
83 * DESCRIPTION: Create and initialize a new internal object.
85 * NOTE: We always allocate the worst-case object descriptor because
88 * the most memory efficient, but the efficiency of the object
100 ACPI_OPERAND_OBJECT *Object;
108 /* Allocate the raw object descriptor */
110 Object = AcpiUtAllocateObjectDescDbg (
112 if (!Object)
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/MachO/
MachOReader.h 10 #include "Object.h"
12 #include "llvm/Object/MachO.h"
20 // raw binaries and regular MachO object files.
24 virtual Expected<std::unique_ptr<Object>> create() const = 0;
28 const object::MachOObjectFile &MachOObj;
30 void readHeader(Object &O) const;
31 Error readLoadCommands(Object &O) const;
32 void readSymbolTable(Object &O) const;
33 void setSymbolInRelocationInfo(Object &O) const;
34 void readRebaseInfo(Object &O) const
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/COFF/
Reader.h 13 #include "llvm/Object/COFF.h"
20 struct Object;
22 using object::COFFObjectFile;
27 Error readExecutableHeaders(Object &Obj) const;
28 Error readSections(Object &Obj) const;
29 Error readSymbols(Object &Obj, bool IsBigObj) const;
30 Error setSymbolTargets(Object &Obj) const;
34 Expected<std::unique_ptr<Object>> create() const;
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_type_hash.cc 29 __ubsan::DynamicTypeInfo __ubsan::getDynamicTypeInfoFromObject(void *Object) {
30 void *VtablePtr = *reinterpret_cast<void **>(Object);
  /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-java-awt/m4/
TestAWT.class TestAWT.java package public TestAWT extends java.lang.Object { public void " href="/source/s? ...
  /src/external/gpl2/gettext/dist/gettext-tools/examples/hello-java-swing/m4/
TestAWT.class TestAWT.java package public TestAWT extends java.lang.Object { public void " href="/source/s? ...
  /src/external/gpl2/gettext/dist/gettext-tools/gnulib-lib/
javaversion.class javaversion.java package public javaversion extends java.lang.Object { public void " href="/source/s? ...
  /src/external/gpl3/gcc/dist/libsanitizer/ubsan/
ubsan_type_hash.cpp 28 __ubsan::DynamicTypeInfo __ubsan::getDynamicTypeInfoFromObject(void *Object) {
29 void *VtablePtr = *reinterpret_cast<void **>(Object);
  /src/external/gpl3/gcc.old/dist/libsanitizer/ubsan/
ubsan_type_hash.cpp 28 __ubsan::DynamicTypeInfo __ubsan::getDynamicTypeInfoFromObject(void *Object) {
29 void *VtablePtr = *reinterpret_cast<void **>(Object);
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
ObjectYAML.h 28 std::unique_ptr<ELFYAML::Object> Elf;
29 std::unique_ptr<COFFYAML::Object> Coff;
30 std::unique_ptr<MachOYAML::Object> MachO;
32 std::unique_ptr<MinidumpYAML::Object> Minidump;
33 std::unique_ptr<WasmYAML::Object> Wasm;
yaml2obj.h 23 namespace object { namespace in namespace:llvm
28 struct Object;
32 struct Object;
36 struct Object;
40 struct Object;
54 bool yaml2coff(COFFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
55 bool yaml2elf(ELFYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH,
58 bool yaml2minidump(MinidumpYAML::Object &Doc, raw_ostream &Out,
60 bool yaml2wasm(WasmYAML::Object &Doc, raw_ostream &Out, ErrorHandler EH);
66 std::unique_ptr<object::ObjectFile
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/BinaryFormat/
MsgPackReader.h 19 /// msgpack::Object Obj;
48 /// The types map onto corresponding union members of the \c Object struct.
68 /// Raw bytes of the extension object.
72 /// MessagePack object, represented as a tagged union of C++ types.
77 struct Object {
96 Object() : Kind(Type::Int), Int(0) {}
110 /// Read one object from the input buffer, advancing past it.
112 /// The \p Obj is updated with the kind of the object read, and the
120 /// \param [out] Obj filled with next object on success.
122 /// \returns true when object successfully read, false when at end o
    [all...]
  /src/external/gpl3/gcc/dist/libobjc/objc/
NXConstStr.h 30 #include "Object.h"
36 @interface NXConstantString: Object
  /src/external/gpl3/gcc.old/dist/libobjc/objc/
NXConstStr.h 30 #include "Object.h"
36 @interface NXConstantString: Object
  /src/sys/external/bsd/acpica/dist/namespace/
nsobject.c 59 * Object - Object to be attached
60 * Type - Type of object, or ACPI_TYPE_ANY if not
65 * DESCRIPTION: Record the given object as the value associated with the
66 * name whose ACPI_HANDLE is passed. If Object is NULL
78 ACPI_OPERAND_OBJECT *Object,
100 if (!Object && (ACPI_TYPE_ANY != Type))
102 /* Null object */
105 "Null object, but type not ACPI_TYPE_ANY"));
118 /* Check if this object is already attached *
    [all...]
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/wasm/
Object.cpp 1 //===- Object.cpp ---------------------------------------------------------===//
9 #include "Object.h"
18 using namespace object;
21 void Object::addSectionWithOwnedContents(
27 void Object::removeSections(function_ref<bool(const Section &)> ToRemove) {
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
ObjectYAML.cpp 1 //===- ObjectYAML.cpp - YAML utilities for object files -------------------===//
26 MappingTraits<ELFYAML::Object>::mapping(IO, *ObjectFile.Elf);
28 MappingTraits<COFFYAML::Object>::mapping(IO, *ObjectFile.Coff);
30 MappingTraits<MachOYAML::Object>::mapping(IO, *ObjectFile.MachO);
44 ObjectFile.Elf.reset(new ELFYAML::Object());
45 MappingTraits<ELFYAML::Object>::mapping(IO, *ObjectFile.Elf);
47 ObjectFile.Coff.reset(new COFFYAML::Object());
48 MappingTraits<COFFYAML::Object>::mapping(IO, *ObjectFile.Coff);
50 ObjectFile.MachO.reset(new MachOYAML::Object());
51 MappingTraits<MachOYAML::Object>::mapping(IO, *ObjectFile.MachO)
    [all...]
  /src/sys/external/bsd/acpica/dist/dispatcher/
dsmthdat.c 66 ACPI_OPERAND_OBJECT *Object,
82 * PARAMETERS: WalkState - Current walk state object
143 * PARAMETERS: WalkState - Current walk state object
166 if (WalkState->LocalVariables[Index].Object)
169 Index, WalkState->LocalVariables[Index].Object));
171 /* Detach object (if present) and remove a reference */
181 if (WalkState->Arguments[Index].Object)
184 Index, WalkState->Arguments[Index].Object));
186 /* Detach object (if present) and remove a reference */
202 * WalkState - Current walk state object
    [all...]

Completed in 42 milliseconds

1 2 3 4 5 6 7 8 91011>>