HomeSort by relevance Sort by last modified time
    Searched defs:isa (Results 1 - 25 of 114) sorted by null

1 2 3 4 5

  /external/compiler-rt/test/BlocksRuntime/
flagsisa.c 15 __block void *isa; local
17 ^{ flags=1; isa = (void *)isa; };
objectRRGC.c 38 long isa; member in struct:MyStruct
objectassign.c 37 long isa; member in struct:MyStruct
byrefsanity.c 49 void *isa; member in struct:Block_basic2
  /external/clang/test/Sema/
builtin_objc_msgSend.c 7 Class isa; member in struct:objc_object
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/net/
InetSocketAddressTest.java 49 InetSocketAddress isa = InetSocketAddress.createUnresolved( local
51 assertTrue(isa.isUnresolved());
52 assertNull(isa.getAddress());
53 assertEquals(isa.getHostName(), legalHostPortPairs[i].host);
54 assertEquals(isa.getPort(), legalHostPortPairs[i].port);
  /art/runtime/entrypoints/quick/
quick_trampoline_entrypoints_test.cc 29 // Use 64-bit ISA for runtime setup to make method size potentially larger
34 static ArtMethod* CreateCalleeSaveMethod(InstructionSet isa, Runtime::CalleeSaveType type)
41 r->SetInstructionSet(isa);
50 static void CheckFrameSize(InstructionSet isa, Runtime::CalleeSaveType type, uint32_t save_size)
52 ArtMethod* save_method = CreateCalleeSaveMethod(isa, type);
56 << frame_info.FpSpillMask() << std::dec << " ISA " << isa; variable
59 static void CheckPCOffset(InstructionSet isa, Runtime::CalleeSaveType type, size_t pc_offset)
61 ArtMethod* save_method = CreateCalleeSaveMethod(isa, type);
66 << " fp spills=" << frame_info.FpSpillMask() << std::dec << " ISA " << isa variable
    [all...]
  /external/clang/test/Analysis/inlining/
InlineObjCInstanceMethod.h 9 Class isa; member in struct:objc_object
  /external/embunit/inc/
RepeatedTest.h 42 TestImplement* isa; member in struct:__RepeatedTest
TestCase.h 42 TestImplement* isa; member in struct:__TestCase
TestSuite.h 42 TestImplement* isa; member in struct:__TestSuite
TestCaller.h 56 TestImplement* isa; member in struct:__TestCaller
TestListener.h 55 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)
Test.h 58 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/
template-id-expr.cpp 6 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/
Index_Internal.h 34 void *isa; member in struct:_CXCursorAndRangeVisitorBlock
  /external/apache-http/src/org/apache/http/conn/
MultihomePlainSocketFactory.java 126 InetSocketAddress isa = local
128 sock.bind(isa);
  /external/apache-http/src/org/apache/http/conn/scheme/
PlainSocketFactory.java 110 InetSocketAddress isa = local
112 sock.bind(isa);
  /external/apache-http/src/org/apache/http/impl/conn/
ProxySelectorRoutePlanner.java 219 final InetSocketAddress isa = (InetSocketAddress) p.address(); local
221 result = new HttpHost(getHost(isa), isa.getPort());
231 * @param isa the socket address
238 protected String getHost(InetSocketAddress isa) {
243 return isa.isUnresolved() ?
244 isa.getHostName() : isa.getAddress().getHostAddress();
  /external/clang/test/CodeGen/
blockstret.c 65 void *isa; member in struct:block_layout_abi
  /external/llvm/include/llvm/Support/
Casting.h 10 // 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<Type>(myVal)) { ...
132 LLVM_ATTRIBUTE_UNUSED_RESULT inline bool isa(const Y &Val) { function in namespace:llvm
    [all...]
  /libcore/luni/src/test/java/libcore/java/net/
InetSocketAddressTest.java 60 InetSocketAddress isa = new InetSocketAddress(ia, 80); local
61 assertEquals(80,isa.getPort());
62 //assertEquals(results[i], isa.getHostName());
65 InetSocketAddress isa = new InetSocketAddress((InetAddress)null, 80); local
66 assertEquals("::", isa.getHostName());
82 InetSocketAddress isa = new InetSocketAddress(65535); local
83 assertEquals("::", isa.getHostName());
84 assertEquals(65535, isa.getPort());
122 InetSocketAddress isa = new InetSocketAddress(ia, 0); local
123 assertEquals(ia, isa.getAddress())
125 InetSocketAddress isa = new InetSocketAddress((InetAddress) null, 0); local
    [all...]
  /art/compiler/dwarf/
dwarf_test.h 61 InstructionSet isa = (sizeof(typename ElfTypes::Addr) == 8) ? kX86_64 : kX86; local
65 ElfBuilder<ElfTypes> builder(isa, 0, &no_code, 0, &no_code, 0);
  /art/compiler/
elf_writer_quick.cc 146 const InstructionSet isa = compiler_driver_->GetInstructionSet(); local
155 isa, rodata_size, &rodata_writer, text_size, &text_writer, bss_size));
162 const bool is64bit = Is64BitInstructionSet(isa);
163 const int pointer_size = GetInstructionSetPointerSize(isa);
  /art/runtime/native/
dalvik_system_ZygoteHooks.cc 197 InstructionSet isa = GetInstructionSetFromString(isa_string.c_str()); local
199 if (isa != kNone && isa != kRuntimeISA) {

Completed in 638 milliseconds

1 2 3 4 5