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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Analysis/inlining/
false-positive-suppression.cpp 26 // expected-warning@-2 {{Called C++ object pointer is null}}
105 // expected-warning@-2 {{Called C++ object pointer is null}}
109 SomeClass *object = getSomeClass(); local
110 object->doSomething();
112 // expected-warning@-2 {{Called C++ object pointer is null}}
141 // expected-warning@-2 {{Called C++ object pointer is null}}
152 // expected-warning@-2 {{Called C++ object pointer is null}}
168 // expected-warning@-2 {{Called C++ object pointer is null}}
190 // expected-warning@-2 {{Called C++ object pointer is null}}
198 // expected-warning@-2 {{Called C++ object pointer is null}
    [all...]
  /external/clang/test/CodeGen/
2009-01-21-InvalidIterator.c 28 struct object struct
45 struct object *next;
73 struct object ob;
  /external/clang/test/SemaCXX/
ast-print.cpp 12 MyClass* object; member in struct:Reference
13 MyClass* operator ->() { return object; }
  /external/desugar/test/java/com/google/devtools/build/android/desugar/
DesugarJava8FunctionalTest.java 245 DefaultInterfaceWithBridges object = new DefaultInterfaceWithBridges(); local
247 assertThat(object.copy(one)).isEqualTo(one);
248 assertThat(object.copy((Number) one)).isEqualTo(one);
249 assertThrows(ClassCastException.class, () -> object.copy(Double.valueOf(1)));
251 assertThat(object.getNumber()).isInstanceOf(Double.class);
252 assertThat(object.getNumber()).isEqualTo(Double.valueOf(2.3d));
253 assertThat(object.getDouble()).isEqualTo(Double.valueOf(2.3d));
263 assertThrows(ClassCastException.class, () -> top.add(new Object()));
270 assertThrows(ClassCastException.class, () -> top.add(new Object()));
  /external/freetype/src/cff/
cffparse.h 64 void* object; member in struct:CFF_ParserRec_
79 void* object,
  /external/freetype/src/cid/
cidload.c 77 FT_Byte* object; local
92 /* we must now compute the address of our target object */
96 object = (FT_Byte*)cid;
100 object = (FT_Byte*)&cid->font_info;
104 object = (FT_Byte*)&face->font_extra;
108 object = (FT_Byte*)&cid->font_bbox;
128 object = (FT_Byte*)&dict->private_dict;
132 object = (FT_Byte*)dict;
139 dummy_object = object;
141 /* now, load the keyword data in the object's field(s) *
    [all...]
  /external/google-breakpad/src/processor/
range_map_unittest.cc 106 linked_ptr<CountedObject> object(new CountedObject(range_test->id));
109 object);
166 linked_ptr<CountedObject> object; local
169 bool retrieved = range_map->RetrieveRange(address, &object,
173 bool observed_result = retrieved && object->id() == range_test->id;
266 // and verifying that each call returns a different object than the previous
270 linked_ptr<CountedObject> object; local
277 if (!range_map->RetrieveRangeAtIndex(object_index, &object, &base, NULL)) {
284 if (!object.get()) {
286 "expected object, observed NULL\n"
342 linked_ptr<CountedObject> object; local
    [all...]
  /external/guava/guava-tests/test/com/google/common/util/concurrent/
StripedTest.java 115 WeakReference<Object> weakRef = new WeakReference<Object>(striped.get(new Object()));
122 WeakReference<Object> weakRef = new WeakReference<Object>(striped.get(new Object()));
123 WeakReference<Object> garbage = new WeakReference<Object>(new Object());
132 stripedLock.get(new Object()).lock()
174 Object object = striped.getAt(i); local
    [all...]
  /external/harfbuzz_ng/test/api/
test-object.c 29 /* Unit tests for hb-object-private.h */
175 #undef OBJECT
214 void *object; member in struct:__anon23696
222 g_assert (NULL == t->klass->get_user_data (t->object, &t->key));
241 g_test_message ("Testing object %s", o->name);
261 /* Should still work even if object is made immutable */
304 deadlock_test.object = obj;
  /external/iproute2/include/
bpf_util.h 60 const char *object; member in struct:bpf_cfg_in
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javaparsermodel/declarations/
JavaParserClassDeclaration.java 70 /// Public methods: from Object
74 public boolean equals(Object o) {
164 return object();
246 // We want to avoid infinite recursion in case of Object having Object as ancestor
247 if (Object.class.getCanonicalName().equals(superclass.getQualifiedName())) {
294 // We want to avoid infinite recursion in case of Object having Object as ancestor
295 if (!(Object.class.getCanonicalName().equals(getQualifiedName()))) {
332 * @return A visitable JavaParser node wrapped by this object
348 protected ResolvedReferenceType object() { method in class:JavaParserClassDeclaration
    [all...]
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/javassistmodel/
JavassistClassDeclaration.java 72 protected ResolvedReferenceType object() { method in class:JavassistClassDeclaration
73 return new ReferenceTypeImpl(typeSolver.solveType(Object.class.getCanonicalName()), typeSolver);
92 public boolean equals(Object o) {
296 return new ReferenceTypeImpl(typeSolver.solveType(Object.class.getCanonicalName()), typeSolver);
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/reflectionmodel/
ReflectionClassAdapter.java 72 ReferenceTypeImpl object = new ReferenceTypeImpl(new ReflectionClassDeclaration(Object.class, typeSolver), typeSolver); local
73 ancestors.add(object);
78 if (ancestor.hasName() && ancestor.getQualifiedName().equals(Object.class.getCanonicalName())) {
ReflectionClassDeclaration.java 95 public boolean equals(Object o) {
340 protected ResolvedReferenceType object() { method in class:ReflectionClassDeclaration
341 return new ReferenceTypeImpl(typeSolver.solveType(Object.class.getCanonicalName()), typeSolver);
  /external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/resolution/typeinference/
TypeHelper.java 216 //For example, given List<String> and List<Object>, simply intersecting the sets ST(List<String>) = { List<String>, Collection<String>, Object } and ST(List<Object>) = { List<Object>, Collection<Object>, Object } would yield a set { Object }, and we would have lost track of the fact that the upper bound can safely be assumed to be a List.
218 //In contrast, intersecting EST(List<String>) = { List, Collection, Object } and EST(List<Object>) = { List, Collection, Object } yields { List, Collection, Object }, which will eventually enable us to produce List<?>
331 ResolvedReferenceType object = new ReferenceTypeImpl(typeSolver.solveType(Object.class.getCanonicalName()), typeSolver); local
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/java/com/github/javaparser/symbolsolver/model/typesystem/
WildcardUsageTest.java 44 private ReferenceTypeImpl object; field in class:WildcardUsageTest
62 object = new ReferenceTypeImpl(new ReflectionClassDeclaration(Object.class, typeSolver), typeSolver);
200 assertEquals(false, unbounded.isAssignableBy(object));
201 assertEquals(true, object.isAssignableBy(unbounded));
236 assertTrue(linkedListOfString.getAllAncestors().contains(object));
297 //YES Bazzer<Object, String, String> e6 = new MoreBazzing<String, Object>();
300 ImmutableList.of(object, string, string), typeSolver);
303 ImmutableList.of(string, object), typeSolver)
    [all...]
  /external/libchrome/dbus/
object_manager.cc 25 ObjectManager::Object::Object()
29 ObjectManager::Object::~Object() = default;
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...]
  /external/libcxx/test/libcxx/utilities/function.objects/func.require/
invoke_helpers.h 45 // Caster - A functor object that performs cv-qualifier and value category
48 // RValue - True if the resulting object should be an RValue reference.
142 // The cv-ref qualifiers of the 'DerefToType' object do not propagate
143 // to the resulting 'To' object.
146 To object; member in struct:DerefToType
151 explicit DerefToType(Up const& val) : object(val) {}
153 To& operator*() const volatile { return const_cast<To&>(object); }
158 // The cv-ref qualifiers of the 'DerefPropToType' object propagate
159 // to the resulting 'To' object.
162 To object; member in struct:DerefPropType
    [all...]
  /external/libdrm/nouveau/nvif/
ioctl.h 30 __u64 object; member in struct:nvif_ioctl_v0
56 __u64 object; member in struct:nvif_ioctl_new_v0
  /external/llvm/include/llvm/DebugInfo/DWARF/
DWARFUnit.h 24 namespace object { namespace in namespace:llvm
130 object::OwningBinary<object::ObjectFile> DWOFile;
241 /// \brief Return the DIE object at the given index.
247 /// \brief Return the DIE object for a given offset inside the
  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
DbiStream.h 26 namespace object { namespace in namespace:llvm
99 codeview::FixedStreamArray<object::coff_section> getSectionHeaders();
101 codeview::FixedStreamArray<object::FpoData> getFpoRecords();
139 codeview::FixedStreamArray<object::coff_section> SectionHeaders;
142 codeview::FixedStreamArray<object::FpoData> FpoRecords;
  /external/llvm/include/llvm/Object/
Archive.h 20 #include "llvm/Object/Binary.h"
27 namespace object { namespace in namespace:llvm
Binary.h 17 #include "llvm/Object/Error.h"
27 namespace object { namespace in namespace:llvm
48 // Object and children.
ObjectFile.h 1 //===- ObjectFile.h - File format independent object file -------*- C++ -*-===//
19 #include "llvm/Object/SymbolicFile.h"
27 namespace object { namespace in namespace:llvm
39 /// of relocations in the object file.
68 /// sections in the object file.
114 /// symbols in the object file.
140 /// Return the value of the symbol depending on the object this can be an
174 /// This class is the base class for all object file types. Concrete instances
175 /// of this object are created by createObjectFile, which figures out which type
191 // entry in the memory mapped object file. SymbolPimpl cannot contain an
    [all...]
RelocVisitor.h 1 //===-- RelocVisitor.h - Visitor for object file relocations -*- C++ -*-===//
19 #include "llvm/Object/COFF.h"
20 #include "llvm/Object/ELFObjectFile.h"
21 #include "llvm/Object/MachO.h"
22 #include "llvm/Object/ObjectFile.h"
29 namespace object { namespace in namespace:llvm
42 /// @brief Base class for object file relocation visitors.
70 if (ObjToVisit.getBytesInAddress() == 8) { // 64-bit object file
146 } else if (ObjToVisit.getBytesInAddress() == 4) { // 32-bit object file
208 report_fatal_error("Invalid word size in object file")
    [all...]

Completed in 1514 milliseconds

1 2 3 4 5 6 7 8 91011>>