HomeSort by relevance Sort by last modified time
    Searched defs:Object (Results 51 - 75 of 253) sorted by null

1 23 4 5 6 7 8 91011

  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ExecutionEngine/Orc/
IRCompileLayer.h 19 #include "llvm/Object/ObjectFile.h"
28 /// immediately compiles each IR module to an object file (each IR Module is
29 /// compiled separately). The resulting set of object files is then added to
30 /// the layer below, which must implement the object layer concept.
33 typedef std::function<object::OwningBinary<object::ObjectFile>(Module &)>
61 std::vector<std::unique_ptr<object::OwningBinary<object::ObjectFile>>>
65 auto Object =
66 llvm::make_unique<object::OwningBinary<object::ObjectFile>>()
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ExecutionEngine/Orc/
IRCompileLayer.h 19 #include "llvm/Object/ObjectFile.h"
28 /// immediately compiles each IR module to an object file (each IR Module is
29 /// compiled separately). The resulting set of object files is then added to
30 /// the layer below, which must implement the object layer concept.
33 typedef std::function<object::OwningBinary<object::ObjectFile>(Module &)>
61 std::vector<std::unique_ptr<object::OwningBinary<object::ObjectFile>>>
65 auto Object =
66 llvm::make_unique<object::OwningBinary<object::ObjectFile>>()
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ExecutionEngine/Orc/
IRCompileLayer.h 19 #include "llvm/Object/ObjectFile.h"
28 /// immediately compiles each IR module to an object file (each IR Module is
29 /// compiled separately). The resulting set of object files is then added to
30 /// the layer below, which must implement the object layer concept.
33 typedef std::function<object::OwningBinary<object::ObjectFile>(Module &)>
61 std::vector<std::unique_ptr<object::OwningBinary<object::ObjectFile>>>
65 auto Object =
66 llvm::make_unique<object::OwningBinary<object::ObjectFile>>()
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ExecutionEngine/Orc/
IRCompileLayer.h 19 #include "llvm/Object/ObjectFile.h"
28 /// immediately compiles each IR module to an object file (each IR Module is
29 /// compiled separately). The resulting set of object files is then added to
30 /// the layer below, which must implement the object layer concept.
33 typedef std::function<object::OwningBinary<object::ObjectFile>(Module &)>
61 std::vector<std::unique_ptr<object::OwningBinary<object::ObjectFile>>>
65 auto Object =
66 llvm::make_unique<object::OwningBinary<object::ObjectFile>>()
    [all...]
  /external/libchrome/dbus/
object_manager.cc 25 ObjectManager::Object::Object()
29 ObjectManager::Object::~Object() {
62 // Clean up Object structures
65 Object* object = iter->second; local
67 for (Object::PropertiesMap::iterator piter = object->properties_map.begin();
68 piter != object->properties_map.end(); ++piter)
104 Object* object = oiter->second; local
449 Object* object; local
516 Object* object = tmp->second; local
    [all...]
object_manager.h 18 // Newer D-Bus services implement the Object Manager interface to inform other
26 // simplifying implementation, since there tends to be a single object manager
57 // The link between the implementation class and the object manager is set up
59 // a pointer to its object manager for use in other methods and establish
78 // The object manager interface class has one abstract method that must be
101 // to connect signals or obtain the initial values of properties. The object
106 // interface or from the Object Manager interface. You may also wish to
110 // When your class needs an object proxy for a given object path, it may
111 // obtain it from the object manager. Unlike the equivalent method on the bu
    [all...]
  /art/runtime/mirror/
object.h 65 // compute an offset for the Set/Get methods defined in Object that can safely access fields.
72 // Size of Object.
75 // C++ mirror of java.lang.Object
76 class MANAGED LOCKABLE Object {
78 // The number of vtable entries in java.lang.Object.
81 // The size of the java.lang.Class representing a java.lang.Object.
84 // Size of an instance of java.lang.Object.
86 return sizeof(Object);
90 return OFFSET_OF_OBJECT_MEMBER(Object, klass_);
126 // The verifier treats all interfaces as java.lang.Object and relies on runtime checks i
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/
EdbCmdSymbol.c 144 EFI_DEBUGGER_SYMBOL_OBJECT *Object;
151 CandidateAddress = EbdFindSymbolAddress (Address, EdbMatchSymbolTypeNearestAddress, &Object, &Entry);
162 EDBPrint (L"Symbol File Name: %s\n", Object->Name);
169 (UINT64)Entry->Rva + Object->BaseAddress,
179 Entry->Rva + Object->BaseAddress,
211 EFI_DEBUGGER_SYMBOL_OBJECT *Object;
222 Object = DebuggerPrivate->DebuggerSymbolContext.Object;
223 for (Index = 0; Index < DebuggerPrivate->DebuggerSymbolContext.ObjectCount; Index++, Object++) {
225 (StriCmp (SymbolFileName, Object->Name) != 0)) {
    [all...]
EdbHook.c 328 EFI_DEBUGGER_SYMBOL_OBJECT *Object;
353 Object = AllocateZeroPool (sizeof(EFI_DEBUGGER_SYMBOL_OBJECT) * EFI_DEBUGGER_SYMBOL_OBJECT_MAX);
354 ASSERT (Object != NULL);
355 mDebuggerPrivate.DebuggerSymbolContext.Object = Object;
361 Object[Index].Entry = Entry;
362 Object[Index].MaxEntryCount = EFI_DEBUGGER_SYMBOL_ENTRY_MAX;
363 Object[Index].SourceBuffer = AllocateZeroPool (sizeof(VOID *) * (EFI_DEBUGGER_SYMBOL_ENTRY_MAX + 1));
364 ASSERT (Object[Index].SourceBuffer != NULL);
429 EFI_DEBUGGER_SYMBOL_OBJECT *Object;
    [all...]
  /external/eigen/unsupported/Eigen/src/BVH/
KdBVH.h 59 * \param _Object The object type that lives in the hierarchy. It must have value semantics. Either bounding_box(_Object) must
71 typedef _Object Object;
72 typedef std::vector<Object, aligned_allocator<Object> > ObjectList;
78 typedef const Object *ObjectIterator;
82 /** Given an iterator range over \a Object references, constructs the BVH. Requires that bounding_box(Object) return a Volume. */
85 /** Given an iterator range over \a Object references and an iterator range over their bounding boxes, constructs the BVH */
88 /** Given an iterator range over \a Object references, constructs the BVH, overwriting whatever is in there currently.
89 * Requires that bounding_box(Object) return a Volume. *
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/resolution/
JavaParserFacadeResolutionTest.java 54 assertEquals(Object.class.getCanonicalName(), superclass.getQualifiedName());
  /external/llvm/include/llvm/ObjectYAML/
COFFYAML.h 83 struct Object {
88 Object();
216 struct MappingTraits<COFFYAML::Object> {
217 static void mapping(IO &IO, COFFYAML::Object &Obj);
  /external/llvm/lib/ObjectYAML/
COFFYAML.cpp 22 Object::Object() { memset(&Header, 0, sizeof(COFF::header)); }
495 void MappingTraits<COFFYAML::Object>::mapping(IO &IO, COFFYAML::Object &Obj) {
  /external/pdfium/xfa/fxfa/parser/
cxfa_object.h 17 Object,
  /external/python/cpython2/Demo/tkinter/guido/
canvasevents.py 14 class Object:
23 object is moved. Where the object is relative to this position
24 depends on the object; for simple objects, it may be their center.
35 def __init__(self, canvas, x=0, y=0, fill='red', text='object'):
77 class Bottom(Object):
79 """An object to serve as the bottom of a pile."""
106 def add(self, object):
107 self.objects.append(object)
108 self.group.addtag_withtag(object.group
    [all...]
  /external/vulkan-validation-layers/demos/smoke/
Simulation.h 81 struct Object {
94 const std::vector<Object> &objects() const { return objects_; }
103 std::vector<Object> objects_;
  /frameworks/compile/mclinker/include/mcld/
LinkerConfig.h 31 enum CodeGenType { Unknown, Object, DynObj, Exec, External, Binary };
  /libcore/luni/src/test/java/libcore/java/lang/ref/
FinalizeTest.java 32 fail("object not yet finalized");
72 // Helper function since we do not want a vreg to keep the allocated object live.
92 assertTrue("object whose constructor threw was not finalized", ConstructionFails.finalized);
108 * The finalizer watch dog exits the VM if any object takes more than 10 s
121 new Object() {
144 new Object() {
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ObjectYAML/
COFFYAML.h 83 struct Object {
88 Object();
216 struct MappingTraits<COFFYAML::Object> {
217 static void mapping(IO &IO, COFFYAML::Object &Obj);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ObjectYAML/
COFFYAML.h 87 struct Object {
92 Object();
220 struct MappingTraits<COFFYAML::Object> {
221 static void mapping(IO &IO, COFFYAML::Object &Obj);
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ObjectYAML/
COFFYAML.h 87 struct Object {
92 Object();
220 struct MappingTraits<COFFYAML::Object> {
221 static void mapping(IO &IO, COFFYAML::Object &Obj);
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ObjectYAML/
COFFYAML.h 95 struct Object {
101 Object();
231 struct MappingTraits<COFFYAML::Object> {
232 static void mapping(IO &IO, COFFYAML::Object &Obj);
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ObjectYAML/
COFFYAML.h 95 struct Object {
101 Object();
231 struct MappingTraits<COFFYAML::Object> {
232 static void mapping(IO &IO, COFFYAML::Object &Obj);
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/ObjectYAML/
COFFYAML.h 95 struct Object {
101 Object();
231 struct MappingTraits<COFFYAML::Object> {
232 static void mapping(IO &IO, COFFYAML::Object &Obj);
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/ObjectYAML/
COFFYAML.h 95 struct Object {
101 Object();
231 struct MappingTraits<COFFYAML::Object> {
232 static void mapping(IO &IO, COFFYAML::Object &Obj);

Completed in 1389 milliseconds

1 23 4 5 6 7 8 91011