Home
last modified time | relevance | path

Searched refs:object (Results 1 – 25 of 1258) sorted by relevance

12345678910>>...51

/minix3/external/bsd/llvm/dist/llvm/test/Bitcode/
H A Dmetadata-2.ll3 …%0 = type { %object.ModuleInfo.__vtbl*, i8*, %"byte[]", %1, %"ClassInfo[]", i32, void ()*, void ()…
4 %1 = type { i64, %object.ModuleInfo* } ; type %1
6 %"ClassInfo[]" = type { i64, %object.ClassInfo** }
7 %"Interface[]" = type { i64, %object.Interface* }
8 %"ModuleInfo[]" = type { i64, %object.ModuleInfo** }
9 %ModuleReference = type { %ModuleReference*, %object.ModuleInfo* }
10 %"OffsetTypeInfo[]" = type { i64, %object.OffsetTypeInfo* }
12object.ClassInfo = type { %object.ClassInfo.__vtbl*, i8*, %"byte[]", %"byte[]", %"void*[]", %"Inte…
13object.ClassInfo.__vtbl = type { %object.ClassInfo*, %"byte[]" (%object.Object*)*, i64 (%object.Ob…
14 %object.Interface = type { %object.ClassInfo*, %"void*[]", i64 }
[all …]
/minix3/games/adventure/
H A Dvocab.c55 destroy(int object) in destroy() argument
57 move(object, 0); in destroy()
61 juggle(int object) in juggle() argument
65 i = place[object]; in juggle()
66 j = fixed[object]; in juggle()
67 move(object, i); in juggle()
68 move(object + 100, j); in juggle()
72 move(int object, int where) in move() argument
76 if (object <= 100) in move()
77 from = place[object]; in move()
[all …]
/minix3/external/bsd/llvm/dist/clang/test/Modules/
H A Dmethod_pool.m14 void testMethod1(id object) {
15 [object method1];
18 void testMethod2(id object) {
19 [object method2:1];
22 void testMethod4(id object) {
23 …[object method4]; // expected-warning{{instance method '-method4' not found (return type defaults …
26 void testMethod5(id object, D* d) {
27 [object method5:d];
32 void testMethod1Again(id object) {
33 [object method1];
[all …]
/minix3/games/rogue/
H A Drogue.h243 typedef struct obj object; typedef
257 object *armor;
258 object *weapon;
259 object *left_ring, *right_ring;
264 object pack;
343 extern object level_objects;
352 extern object level_monsters;
445 object *alloc_object(void);
446 object *get_letter_object(int);
447 object *gr_monster(object *, int);
[all …]
H A Dpack.c60 static object *check_duplicate(object *, object *);
62 static boolean mask_pack(const object *, unsigned short);
65 object *
66 add_to_pack(object *obj, object *pack, int condense) in add_to_pack()
68 object *op; in add_to_pack()
93 take_from_pack(object *obj, object *pack) in take_from_pack()
105 object *
108 object *obj; in pick_up()
154 object *obj, *new; in drop()
213 static object *
[all …]
H A Dobject.c58 object level_objects;
63 static object *free_list = NULL;
165 static void gr_armor(object *);
166 static void gr_potion(object *);
167 static void gr_scroll(object *);
168 static void gr_wand(object *);
169 static void gr_weapon(object *, int);
174 static void rand_place(object *);
180 object *obj; in put_objects()
232 object *obj; in plant_gold()
[all …]
/minix3/external/bsd/libc++/dist/libcxx/test/std/utilities/function.objects/func.require/
H A Dbullet_3_and_4.pass.cpp43 TestMemberObject() : object() {} in TestMemberObject()
44 Tp object; member
73 MemPtr M = &TestType::object; in doTest()
74 runTestDispatch<E>(M, obj, &obj.object); in doTest()
75 runTestDispatch<E>(M, der, &der.object); in doTest()
76 runTestDispatch<E>(M, dref2, &dref2.object.object); in doTest()
77 runTestPointerDispatch<E>(M, obj_ptr, &obj_ptr->object); in doTest()
78 runTestPointerDispatch<E>(M, der_ptr, &der_ptr->object); in doTest()
79 runTestPointerDispatch<E>(M, dref, &dref.object.object); in doTest()
84 CMemPtr M = &TestType::object; in doTest()
[all …]
H A Dinvoke_helpers.h103 To object; member
108 explicit DerefToType(Up const& val) : object(val) {} in DerefToType()
110 To& operator*() const volatile { return const_cast<To&>(object); }
119 To object; member
124 explicit DerefPropType(Up const& val) : object(val) {} in DerefPropType()
127 To& operator*() { return object; }
128 To const& operator*() const { return object; }
129 To volatile& operator*() volatile { return object; }
130 To const volatile& operator*() const volatile { return object; }
132 To& operator*() & { return object; }
[all …]
/minix3/external/bsd/llvm/dist/llvm/tools/llvm-objdump/
H A Dllvm-objdump.h18 namespace object {
41 bool RelocAddressLess(object::RelocationRef a, object::RelocationRef b);
44 void printCOFFUnwindInfo(const object::COFFObjectFile* o);
45 void printMachOUnwindInfo(const object::MachOObjectFile* o);
46 void printMachOExportsTrie(const object::MachOObjectFile* o);
47 void printMachORebaseTable(const object::MachOObjectFile* o);
48 void printMachOBindTable(const object::MachOObjectFile* o);
49 void printMachOLazyBindTable(const object::MachOObjectFile* o);
50 void printMachOWeakBindTable(const object::MachOObjectFile* o);
51 void printELFFileHeader(const object::ObjectFile *o);
[all …]
/minix3/external/bsd/llvm/dist/clang/lib/Headers/
H A Dstdatomic.h131 #define atomic_store(object, desired) __c11_atomic_store(object, desired, __ATOMIC_SEQ_CST) argument
134 #define atomic_load(object) __c11_atomic_load(object, __ATOMIC_SEQ_CST) argument
137 #define atomic_exchange(object, desired) __c11_atomic_exchange(object, desired, __ATOMIC_SEQ_CST) argument
140 #define atomic_compare_exchange_strong(object, expected, desired) __c11_atomic_compare_exchange_str… argument
143 #define atomic_compare_exchange_weak(object, expected, desired) __c11_atomic_compare_exchange_weak( argument
146 #define atomic_fetch_add(object, operand) __c11_atomic_fetch_add(object, operand, __ATOMIC_SEQ_CST) argument
149 #define atomic_fetch_sub(object, operand) __c11_atomic_fetch_sub(object, operand, __ATOMIC_SEQ_CST) argument
152 #define atomic_fetch_or(object, operand) __c11_atomic_fetch_or(object, operand, __ATOMIC_SEQ_CST) argument
155 #define atomic_fetch_xor(object, operand) __c11_atomic_fetch_xor(object, operand, __ATOMIC_SEQ_CST) argument
158 #define atomic_fetch_and(object, operand) __c11_atomic_fetch_and(object, operand, __ATOMIC_SEQ_CST) argument
[all …]
/minix3/external/bsd/llvm/dist/clang/test/SemaObjC/
H A Dmethod-prototype-scope.m5 int object;
10 - Func:(int)XXXX, id object; // expected-warning {{use of C-style parameters in Objective-C method …
12 - doSomethingElseWith:(id)object;
14 …*)doSomethingWith:(NSString *)object and:(NSArray *)object; // expected-warning {{redeclaration of…
20 … *)doSomethingWith:(NSString *)object and:(NSArray *)object // expected-warning {{redefinition of …
23 …return object; // expected-warning {{incompatible pointer types returning 'NSArray *' from a funct…
26 - Func:(int)XXXX, id object { return object; } // expected-warning {{use of C-style parameters in O…
28 - doSomethingElseWith:(id)object { return object; }
35 - doSomethingWith:(struct S *)object and:(struct P *)obj; // expected-warning {{declaration of 'str…
H A Dmethod-conflict-1.m14 - (void)myMethod:(NSArray *)object;
15 - (void)myMethod1:(NSObject *)object; // broken-note {{previous definition is here}}
19 - (void)myMethod:(NSObject *)object {
21 - (void)myMethod1:(NSArray *)object { // broken-warning {{conflicting parameter types in implementa…
30 - (void)myMethod:(id <MyProtocol>)object; // broken-note {{previous definition is here}}
31 - (void)myMethod1:(id <MyProtocol>)object; // broken-note {{previous definition is here}}
35 - (void)myMethod:(MyClass *)object { // broken-warning {{conflicting parameter types in implementat…
37 - (void)myMethod1:(MyClass<MyProtocol> *)object { // broken-warning {{conflicting parameter types i…
47 - (void) test1:(A*) object; // broken-note {{previous definition is here}}
48 - (void) test2:(B*) object;
[all …]
/minix3/crypto/external/bsd/openssl/dist/crypto/store/
H A Dstr_lib.c241 STORE_OBJECT *object; in STORE_get_certificate() local
247 object = s->meth->get_object(s, STORE_OBJECT_TYPE_X509_CERTIFICATE, in STORE_get_certificate()
249 if (!object || !object->data.x509.certificate) { in STORE_get_certificate()
254 CRYPTO_add(&object->data.x509.certificate->references, 1, in STORE_get_certificate()
259 x = object->data.x509.certificate; in STORE_get_certificate()
260 STORE_OBJECT_free(object); in STORE_get_certificate()
267 STORE_OBJECT *object; in STORE_store_certificate() local
273 object = STORE_OBJECT_new(); in STORE_store_certificate()
274 if (!object) { in STORE_store_certificate()
283 object->data.x509.certificate = data; in STORE_store_certificate()
[all …]
/minix3/external/bsd/nvi/dist/dist/
H A Ddepcomp43 object Object file output by 'PROGRAMS ARGS'.
65 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
71 depfile=${depfile-`echo "$object" |
128 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
165 echo "$object : \\" > "$depfile"
183 sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
210 echo "$object : \\" > "$depfile"
249 dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
250 test "x$dir" = "x$object" && dir=
251 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
[all …]
/minix3/external/bsd/libevent/dist/
H A Ddepcomp43 object Object file output by 'PROGRAMS ARGS'.
65 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
71 depfile=${depfile-`echo "$object" |
128 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
165 echo "$object : \\" > "$depfile"
183 sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
210 echo "$object : \\" > "$depfile"
249 dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
250 test "x$dir" = "x$object" && dir=
251 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
[all …]
/minix3/external/bsd/bind/dist/unit/atf-src/admin/
H A Ddepcomp43 object Object file output by 'PROGRAMS ARGS'.
65 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
71 depfile=${depfile-`echo "$object" |
128 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
165 echo "$object : \\" > "$depfile"
183 sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
210 echo "$object : \\" > "$depfile"
249 dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
250 test "x$dir" = "x$object" && dir=
251 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
[all …]
/minix3/external/bsd/flex/dist/
H A Ddepcomp44 object Object file output by 'PROGRAMS ARGS'.
66 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
72 depfile=${depfile-`echo "$object" |
129 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
166 echo "$object : \\" > "$depfile"
184 sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
211 echo "$object : \\" > "$depfile"
250 dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
251 test "x$dir" = "x$object" && dir=
252 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
[all …]
/minix3/external/bsd/llvm/dist/llvm/tools/llvm-readobj/
H A DARMWinEHPrinter.h83 ErrorOr<object::SectionRef>
84 getSectionContaining(const object::COFFObjectFile &COFF, uint64_t Address);
86 ErrorOr<object::SymbolRef>
87 getSymbol(const object::COFFObjectFile &COFF, uint64_t Address,
90 ErrorOr<object::SymbolRef>
91 getRelocatedSymbol(const object::COFFObjectFile &COFF,
92 const object::SectionRef &Section, uint64_t Offset);
94 bool dumpXDataRecord(const object::COFFObjectFile &COFF,
95 const object::SectionRef &Section,
97 bool dumpUnpackedEntry(const object::COFFObjectFile &COFF,
[all …]
/minix3/crypto/external/bsd/netpgp/dist/buildaux/
H A Ddepcomp62 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
68 depfile=${depfile-`echo "$object" |
102 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
139 echo "$object : \\" > "$depfile"
183 echo "$object : \\" > "$depfile"
218 dir=`echo "$object" | sed -e 's|/[^/]*$|/|'`
219 test "x$dir" = "x$object" && dir=
220 base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'`
248 sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile"
290 sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile"
[all …]
/minix3/external/bsd/file/dist/
H A Ddepcomp43 object Object file output by 'PROGRAMS ARGS'.
98 { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile"
119 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
125 depfile=${depfile-`echo "$object" |
185 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
224 echo "$object : \\" > "$depfile"
242 | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
268 echo "$object : \\" > "$depfile"
302 set_dir_from "$object"
303 set_base_from "$object"
[all …]
/minix3/external/bsd/dhcp/dist/
H A Ddepcomp43 object Object file output by 'PROGRAMS ARGS'.
98 { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile"
119 if test -z "$depmode" || test -z "$source" || test -z "$object"; then
125 depfile=${depfile-`echo "$object" |
185 -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;;
224 echo "$object : \\" > "$depfile"
242 | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \
268 echo "$object : \\" > "$depfile"
302 set_dir_from "$object"
303 set_base_from "$object"
[all …]
/minix3/external/bsd/dhcp/dist/omapip/
H A Dmessage.c108 if (m -> object) in omapi_message_set_value()
109 omapi_object_dereference (&m -> object, MDL); in omapi_message_set_value()
110 omapi_object_reference (&m -> object, value -> u.object, MDL); in omapi_message_set_value()
119 value -> u.object, MDL); in omapi_message_set_value()
223 if (m -> object) in omapi_message_destroy()
224 omapi_object_dereference (&m -> object, file, line); in omapi_message_destroy()
245 else if (m -> object && m -> object -> type -> signal_handler) in omapi_message_signal_handler()
246 return ((m -> object -> type -> signal_handler)) in omapi_message_signal_handler()
247 (m -> object, name, ap); in omapi_message_signal_handler()
391 omapi_object_t *object = (omapi_object_t *)0; in omapi_message_process_internal() local
[all …]
/minix3/external/bsd/llvm/dist/llvm/tools/obj2yaml/
H A Dcoff2yaml.cpp21 const object::COFFObjectFile &Obj;
30 COFFDumper(const object::COFFObjectFile &Obj);
36 COFFDumper::COFFDumper(const object::COFFObjectFile &Obj) : Obj(Obj) { in COFFDumper()
37 const object::pe32_header *PE32Header = nullptr; in COFFDumper()
42 const object::pe32plus_header *PE32PlusHeader = nullptr; in COFFDumper()
88 const object::data_directory *DD; in dumpOptionalHeader()
105 const object::coff_section *COFFSection = Obj.getCOFFSection(ObjSection); in dumpSections()
120 const object::coff_relocation *reloc = Obj.getCOFFRelocation(Reloc); in dumpSections()
122 object::symbol_iterator Sym = Reloc.getSymbol(); in dumpSections()
135 const object::coff_aux_function_definition *ObjFD) { in dumpFunctionDefinition()
[all …]
/minix3/external/bsd/file/dist/magic/magdir/
H A Dncr10 0 beshort 000610 Tower/XP rel 2 object
15 0 beshort 000615 Tower/XP rel 2 object
20 0 beshort 000620 Tower/XP rel 3 object
25 0 beshort 000625 Tower/XP rel 3 object
30 0 beshort 000630 Tower32/600/400 68020 object
36 >18 beshort &020000 w/68881 object
37 >18 beshort &040000 compatible object
38 >18 beshort &060000 object
44 >18 beshort &040000 compatible object
45 >18 beshort &060000 object
/minix3/external/bsd/llvm/dist/clang/test/SemaObjCXX/
H A Darc-unavailable-for-weakref.mm17 …_weak sub *)obj; // expected-error {{assignment of a weak-unavailable object to a __weak object}} \
31 weak1 = strong1; // expected-error {{assignment of a weak-unavailable object to a __weak object}}
33 …d weak2 = strong1; // expected-error {{assignment of a weak-unavailable object to a __weak object}}
34 …strong1; // expected-error {{cast of weak-unavailable object of type 'NOWEAK *' to a __weak object
44 weak1 = strong1; // expected-error {{assignment of a weak-unavailable object to a __weak object}}
46 …> weak2 = strong1; // expected-error {{assignment of a weak-unavailable object to a __weak object}}
47 …ong1; // expected-error {{cast of weak-unavailable object of type 'NOWEAK<P,P1> *' to a __weak obj…

12345678910>>...51