Searched defs:isa (Results 1 - 25 of 50) sorted by relevance

12

/external/clang/test/Sema/
H A Dbuiltin_objc_msgSend.c7 Class isa; member in struct:objc_object
/external/compiler-rt/test/BlocksRuntime/
H A Dflagsisa.c15 __block void *isa; local
17 ^{ flags=1; isa = (void *)isa; };
H A DobjectRRGC.c38 long isa; member in struct:MyStruct
H A Dobjectassign.c37 long isa; member in struct:MyStruct
H A Dbyrefsanity.c49 void *isa; member in struct:Block_basic2
/external/clang/test/Analysis/inlining/
H A DInlineObjCInstanceMethod.h9 Class isa; member in struct:objc_object
/external/embunit/inc/
H A DRepeatedTest.h42 TestImplement* isa; member in struct:__RepeatedTest
H A DTestCase.h42 TestImplement* isa; member in struct:__TestCase
H A DTestSuite.h42 TestImplement* isa; member in struct:__TestSuite
H A DTestCaller.h56 TestImplement* isa; member in struct:__TestCaller
H A DTestListener.h55 TestListnerImplement* isa; member in struct:__TestListner
58 #define TestListner_startTest(s,t) ((TestListner*)s)->isa->startTest(s,t)
59 #define TestListner_endTest(s,t) ((TestListner*)s)->isa->endTest(s,t)
60 #define TestListner_addFailure(s,t,m,l,f) ((TestListner*)s)->isa->addFailure(s,t,m,l,f)
H A DTest.h58 TestImplement* isa; member in struct:__Test
61 #define Test_name(s) ((Test*)s)->isa->name(s)
62 #define Test_run(s,r) ((Test*)s)->isa->run(s,r)
63 #define Test_countTestCases(s) ((Test*)s)->isa->countTestCases(s)
/external/clang/test/SemaTemplate/
H A Dtemplate-id-expr.cpp6 static void isa(const FromCl &Val) { } function in struct:isa_impl_cl
10 void isa(const Y &Val) { return isa_impl_cl<Y>::template isa<X>(Val); } function
13 void f0(const Value &Val) { isa<Value>(Val); }
/external/clang/tools/libclang/
H A DIndex_Internal.h34 void *isa; member in struct:_CXCursorAndRangeVisitorBlock
/external/apache-http/src/org/apache/http/impl/conn/
H A DProxySelectorRoutePlanner.java219 final InetSocketAddress isa = (InetSocketAddress) p.address();
221 result = new HttpHost(getHost(isa), isa.getPort());
231 * @param isa the socket address
238 protected String getHost(InetSocketAddress isa) { argument
243 return isa.isUnresolved() ?
244 isa.getHostName() : isa.getAddress().getHostAddress();
/external/llvm/include/llvm/Support/
H A DCasting.h10 // This file defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(),
25 // isa<x> Support Templates
50 // The core of the implementation of isa<X> is here; To and From should be
52 // implementation of isa<> without rewriting it from scratch.
81 assert(Val && "isa<> used on a null pointer");
88 assert(Val && "isa<> used on a null pointer");
95 assert(Val && "isa<> used on a null pointer");
102 assert(Val && "isa<> used on a null pointer");
126 // isa<X> - Return true if the parameter to the template is an instance of the
129 // if (isa<Typ
132 LLVM_ATTRIBUTE_UNUSED_RESULT inline bool isa(const Y &Val) { function in namespace:llvm
[all...]
/external/clang/test/CodeGen/
H A Dblockstret.c65 void *isa; member in struct:block_layout_abi
/external/elfutils/src/tests/
H A Ddwfllines.c125 unsigned int isa; local
126 if (dwarf_lineisa (dw_line, &isa) != 0)
147 ", isa: %d, disc: %d\n",
149 dw_op_index, begin, end, pend, ebegin, block, isa, disc);
/external/compiler-rt/lib/BlocksRuntime/
H A DBlock_private.h71 void *isa; member in struct:Block_layout
81 void *isa; member in struct:Block_byref
92 void *isa; member in struct:Block_byref_header
164 void *isa; member in struct:Block_basic
/external/lldb/examples/darwin/heap_find/
H A Dheap.py985 options.type = 'isa'
1026 void *isa;
1047 if (info->isa) {
1048 Class isa = *curr_class_ptr;
1049 if (info->isa == isa)
1052 Class super = (Class)class_getSuperclass(isa);
1054 if (super == info->isa) {
1096 isa = expr_sbvalue.unsigned variable
1097 if isa
[all...]
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntimeV1.cpp154 " struct __objc_class *isa; \n"
162 " struct __objc_class *isa; \n"
169 " (int)strlen(obj->isa->name); \n"
215 AppleObjCRuntimeV1::ClassDescriptorV1::ClassDescriptorV1 (ObjCISA isa, lldb::ProcessSP process_sp) argument
217 Initialize (isa, process_sp);
221 AppleObjCRuntimeV1::ClassDescriptorV1::Initialize (ObjCISA isa, lldb::ProcessSP process_sp) argument
223 if (!isa || !process_sp)
233 m_isa = process_sp->ReadPointerFromMemory(isa, error);
423 ObjCISA isa; local
426 // When we only have one entry in the bucket, the bucket data is the "isa"
[all...]
/external/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugLine.h123 isa(rhs.isa)
139 isa = rhs.isa;
158 uint32_t isa; // An unsigned integer whose value encodes the applicable instruction set architecture for the current instruction. member in struct:DWARFDebugLine::Row
/external/lldb/source/Target/
H A DObjCLanguageRuntime.cpp45 ObjCLanguageRuntime::AddClass (ObjCISA isa, const ClassDescriptorSP &descriptor_sp, const char *class_name) argument
47 if (isa != 0)
49 m_isa_to_descriptor[isa] = descriptor_sp;
51 m_hash_to_isa_map.insert(std::make_pair(MappedHash::HashStringUsingDJB(class_name), isa));
478 // Name hashes were provided, so use them to efficiently lookup name to isa/descriptor
497 ObjCLanguageRuntime::GetParentClass(ObjCLanguageRuntime::ObjCISA isa) argument
499 ClassDescriptorSP objc_class_sp (GetClassDescriptorFromISA(isa));
510 ObjCLanguageRuntime::GetActualTypeName(ObjCLanguageRuntime::ObjCISA isa) argument
512 ClassDescriptorSP objc_class_sp (GetNonKVOClassDescriptor(isa));
546 ObjCISA isa local
573 GetClassDescriptorFromISA(ObjCISA isa) argument
586 GetNonKVOClassDescriptor(ObjCISA isa) argument
[all...]
/external/elfutils/src/libdw/
H A Ddwarf_getsrclines.c311 unsigned int isa = 0; local
366 SET (isa);
443 isa = 0;
655 /* Takes one uleb128 parameter which is stored in isa. */
661 get_uleb128 (isa, linep, lineendp);
/external/kernel-headers/original/uapi/linux/
H A Dedd.h91 } __attribute__ ((packed)) isa; member in union:edd_device_params::__anon6771

Completed in 496 milliseconds

12