HomeSort by relevance Sort by last modified time
    Searched defs:object (Results 226 - 250 of 2350) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/javaparser/javaparser-symbol-solver-logic/src/main/java/com/github/javaparser/symbolsolver/logic/
AbstractClassDeclaration.java 50 if (superclasses.removeIf(s -> s.getQualifiedName().equals(Object.class.getCanonicalName()))) {
51 superclasses.add(object()); method
80 * An implementation of the Object class.
82 protected abstract ResolvedReferenceType object(); method in class:AbstractClassDeclaration
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/logic/
InferenceContextTest.java 46 private ResolvedReferenceType object; field in class:InferenceContextTest
55 object = new ReferenceTypeImpl(new ReflectionClassDeclaration(Object.class, typeSolver), typeSolver);
69 ResolvedType result = new InferenceContext(MyObjectProvider.INSTANCE).addPair(object, string);
70 assertEquals(object, result);
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/reflectionmodel/
ReflectionMethodDeclarationTest.java 37 ResolvedClassDeclaration object = new ReflectionClassDeclaration(Object.class, typeResolver); local
40 ResolvedMethodDeclaration hashCode = object.getAllMethods().stream().filter(m -> m.getName().equals("hashCode")).findFirst().get().getDeclaration();
41 ResolvedMethodDeclaration equals = object.getAllMethods().stream().filter(m -> m.getName().equals("equals")).findFirst().get().getDeclaration();
46 assertEquals("equals(java.lang.Object)", equals.getSignature());
47 assertEquals("containsAll(java.util.Collection<? extends java.lang.Object>)", containsAll.getSignature());
  /external/libmojo/mojo/edk/js/
handle.h 23 // is Closed when its JS object is garbage collected.
94 mojo::edk::js::HandleWrapper* object = NULL; local
96 &object)) {
99 *out = gin::Handle<mojo::edk::js::HandleWrapper>(val, object);
  /external/llvm/include/llvm/ExecutionEngine/
JITEventListener.h 30 namespace object { namespace in namespace:llvm
66 /// NotifyObjectEmitted - Called after an object has been successfully
68 /// individual functions in the object.
71 /// The ObjectImage contains the generated object image
74 virtual void NotifyObjectEmitted(const object::ObjectFile &Obj,
78 /// a previously emitted object is released.
79 virtual void NotifyFreeingObject(const object::ObjectFile &Obj) {}
  /external/llvm/include/llvm/Object/
Error.h 1 //===- Error.h - system_error extensions for Object -------------*- C++ -*-===//
10 // This declares a new error_category for the Object library.
22 namespace object { namespace in namespace:llvm
82 } // end namespace object.
88 struct is_error_code_enum<llvm::object::object_error> : std::true_type {};
  /external/mockito/src/test/java/org/mockitousage/spies/
SpyingOnInterfacesTest.java 47 List<Object> list = mock(List.class);
49 new Answer<Object>() {
50 public Object answer(InvocationOnMock invocation) throws Throwable {
76 Object object = mock(type); local
79 when(type.getMethod("foo").invoke(object)).thenCallRealMethod();
81 Assertions.assertThat(type.getMethod("foo").invoke(object)).isEqualTo((Object) "bar");
82 type.getMethod("foo").invoke(verify(object));
103 Object object = spy(impl.newInstance()) local
    [all...]
  /external/pdfium/core/fpdfapi/parser/
cpdf_object_walker.h 13 // Walk on all non-null sub-objects in an object in depth, include itself,
23 const CPDF_Object* object() const { return object_; } function in class:CPDF_ObjectWalker::SubobjectIterator
26 explicit SubobjectIterator(const CPDF_Object* object);
48 const CPDF_Object* object);
cpdf_page_object_avail_unittest.cpp 60 return obj_data.object.get();
66 std::unique_ptr<CPDF_Object> object,
69 object_data.object = std::move(object);
86 return it->second.object.get();
91 std::unique_ptr<CPDF_Object> object; member in struct:__anon31038::TestHolder::ObjectData
116 // Add unavailable object related to other page.
122 // Now object should be available, although the object '4' is not available,
  /external/python/cpython2/Mac/Modules/scrap/
scrapsupport.py 19 OBJECTPREFIX = MODPREFIX + 'Obj' # The prefix for object methods
56 object = MyObjectDefinition(OBJECTNAME, OBJECTPREFIX, OBJECTTYPE) variable
57 module.addobject(object)
71 for f in methods: object.add(f)
  /external/python/cpython3/Modules/
_weakref.c 18 object: object
21 Return the number of weak references to 'object'.
25 _weakref_getweakrefcount_impl(PyObject *module, PyObject *object)
30 if (!PyType_SUPPORTS_WEAKREFS(Py_TYPE(object)))
33 list = GET_WEAKREFS_LISTPTR(object);
50 _weakref._remove_dead_weakref -> object
52 dct: object(subclass_of='&PyDict_Type')
53 key: object
79 "getweakrefs(object) -- return a list of all weak reference objects\n
117 PyObject *object; local
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
MovementComponent.java 40 GameObject object = (GameObject) parent; local
42 sInterpolator.set(object.getVelocity().x, object.getTargetVelocity().x,
43 object.getAcceleration().x);
45 float newX = object.getPosition().x + offsetX;
48 sInterpolator.set(object.getVelocity().y, object.getTargetVelocity().y,
49 object.getAcceleration().y);
51 float newY = object.getPosition().y + offsetY;
54 if (object.positionLocked == false)
    [all...]
  /external/swiftshader/src/OpenGL/common/
NameSpace.hpp 16 // allocate GL object names.
21 #include "Object.hpp"
57 GLuint allocate(ObjectType *object = nullptr)
66 map.insert({name, object});
77 void insert(GLuint name, ObjectType *object)
79 map[name] = object;
93 ObjectType *object = element->second; local
101 return object;
Object.hpp 15 // Object.hpp: Defines the Object base class that provides
32 class [[clang::lto_visibility_public]] Object
35 Object();
46 virtual ~Object();
56 static std::set<Object*> instances; // For leak checking
60 class NamedObject : public Object
73 BindingPointer() : object(nullptr) { }
75 BindingPointer(const BindingPointer<ObjectType> &other) : object(nullptr)
77 operator=(other.object);
106 ObjectType *object; member in class:gl::BindingPointer
    [all...]
  /external/v8/src/builtins/
builtins-error.cc 22 Handle<Object> caller;
34 Handle<Object>::cast(args.new_target()),
42 Handle<Object> object_obj = args.atOrUndefined(isolate, 1);
47 Handle<JSObject> object = Handle<JSObject>::cast(object_obj); local
48 Handle<Object> caller = args.atOrUndefined(isolate, 2);
54 isolate->CaptureAndSetDetailedStackTrace(object));
58 Handle<Object> stack_trace =
59 isolate->CaptureSimpleStackTrace(object, mode, caller);
62 Handle<Object> formatted_stack_trace;
65 ErrorUtils::FormatStackTrace(isolate, object, stack_trace))
    [all...]
  /external/wayland/src/
wayland-server.h 55 struct wl_object object; member in struct:wl_resource
  /external/webrtc/webrtc/modules/desktop_capture/win/
scoped_gdi_object.h 27 explicit ScopedGDIObject(T object) : handle_(object) {}
37 void Set(T object) {
38 if (handle_ && object != handle_)
40 handle_ = object;
43 ScopedGDIObject& operator=(T object) {
44 Set(object);
49 T object = handle_; local
51 return object;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Object/
COFFImportFile.h 21 #include "llvm/Object/COFF.h"
22 #include "llvm/Object/IRObjectFile.h"
23 #include "llvm/Object/ObjectFile.h"
24 #include "llvm/Object/SymbolicFile.h"
29 namespace object { namespace in namespace:llvm
63 return reinterpret_cast<const object::coff_import_header *>(
103 } // namespace object
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Object/
COFFImportFile.h 21 #include "llvm/Object/COFF.h"
22 #include "llvm/Object/IRObjectFile.h"
23 #include "llvm/Object/ObjectFile.h"
24 #include "llvm/Object/SymbolicFile.h"
29 namespace object { namespace in namespace:llvm
63 return reinterpret_cast<const object::coff_import_header *>(
103 } // namespace object
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Object/
COFFImportFile.h 21 #include "llvm/Object/COFF.h"
22 #include "llvm/Object/IRObjectFile.h"
23 #include "llvm/Object/ObjectFile.h"
24 #include "llvm/Object/SymbolicFile.h"
29 namespace object { namespace in namespace:llvm
63 return reinterpret_cast<const object::coff_import_header *>(
103 } // namespace object
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Object/
COFFImportFile.h 21 #include "llvm/Object/COFF.h"
22 #include "llvm/Object/IRObjectFile.h"
23 #include "llvm/Object/ObjectFile.h"
24 #include "llvm/Object/SymbolicFile.h"
29 namespace object { namespace in namespace:llvm
63 return reinterpret_cast<const object::coff_import_header *>(
103 } // namespace object
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Object/
COFFImportFile.h 21 #include "llvm/Object/COFF.h"
22 #include "llvm/Object/IRObjectFile.h"
23 #include "llvm/Object/ObjectFile.h"
24 #include "llvm/Object/SymbolicFile.h"
29 namespace object { namespace in namespace:llvm
63 return reinterpret_cast<const object::coff_import_header *>(
103 } // namespace object
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Object/
COFFImportFile.h 21 #include "llvm/Object/COFF.h"
22 #include "llvm/Object/IRObjectFile.h"
23 #include "llvm/Object/ObjectFile.h"
24 #include "llvm/Object/SymbolicFile.h"
29 namespace object { namespace in namespace:llvm
63 return reinterpret_cast<const object::coff_import_header *>(
103 } // namespace object
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Object/
COFFImportFile.h 21 #include "llvm/Object/COFF.h"
22 #include "llvm/Object/IRObjectFile.h"
23 #include "llvm/Object/ObjectFile.h"
24 #include "llvm/Object/SymbolicFile.h"
29 namespace object { namespace in namespace:llvm
63 return reinterpret_cast<const object::coff_import_header *>(
103 } // namespace object
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Object/
COFFImportFile.h 21 #include "llvm/Object/COFF.h"
22 #include "llvm/Object/IRObjectFile.h"
23 #include "llvm/Object/ObjectFile.h"
24 #include "llvm/Object/SymbolicFile.h"
29 namespace object { namespace in namespace:llvm
63 return reinterpret_cast<const object::coff_import_header *>(
103 } // namespace object

Completed in 1179 milliseconds

1 2 3 4 5 6 7 8 91011>>