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

1 2 3 4 5 6 7 8

  /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
  /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 30 // Use 64-bit ISA for runtime setup to make method size potentially larger
42 static ArtMethod* CreateCalleeSaveMethod(InstructionSet isa, CalleeSaveType type)
50 r->SetInstructionSet(isa);
57 static void CheckFrameSize(InstructionSet isa, CalleeSaveType type, uint32_t save_size)
59 ArtMethod* save_method = CreateCalleeSaveMethod(isa, type);
63 << frame_info.FpSpillMask() << std::dec << " ISA " << isa; variable
66 static void CheckPCOffset(InstructionSet isa, CalleeSaveType type, size_t pc_offset)
68 ArtMethod* save_method = CreateCalleeSaveMethod(isa, type);
73 << " 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/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
  /art/compiler/debug/
method_debug_info.h 36 InstructionSet isa; member in struct:art::debug::MethodDebugInfo
  /external/swiftshader/third_party/LLVM/include/llvm/Support/
Casting.h 10 // This file defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(),
23 // isa<x> Support Templates
44 // The core of the implementation of isa<X> is here; To and From should be
46 // implementation of isa<> without rewriting it from scratch.
103 // isa<X> - Return true if the parameter to the template is an instance of the
106 // if (isa<Type>(myVal)) { ... }
109 inline bool isa(const Y &Val) { function in namespace:llvm
194 assert(isa<X>(Val) && "cast<Ty>() argument of incompatible type!");
205 assert(isa<X>(Val) && "cast_or_null<Ty>() argument of incompatible type!");
220 return isa<X>(Val) ? cast<X, Y>(Val) : 0
    [all...]
  /external/syslinux/gpxe/src/drivers/bus/
isa.c 7 #include <gpxe/isa.h>
12 * isa.c implements a "classical" port-scanning method of ISA device
23 * The ISA probe address list can be overridden by config.h; if the
56 * Probe an ISA device
58 * @v isa ISA device
61 static int isa_probe ( struct isa_device *isa ) {
64 DBG ( "Trying ISA driver %s at I/O %04x\n",
65 isa->driver->name, isa->ioaddr )
95 struct isa_device *isa = NULL; local
151 struct isa_device *isa; local
    [all...]
  /libcore/ojluni/src/main/native/
ServerSocketChannelImpl.c 92 jobject isa; local
132 isa = (*env)->NewObject(env, isa_class, isa_ctorID, remote_ia, remote_port);
133 CHECK_NULL_RETURN(isa, IOS_THROWN);
134 (*env)->SetObjectArrayElement(env, isaa, 0, isa);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/Support/
Casting.h 10 // This file defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(),
27 // isa<x> Support Templates
53 // The core of the implementation of isa<X> is here; To and From should be
55 // implementation of isa<> without rewriting it from scratch.
85 assert(Val && "isa<> used on a null pointer");
92 assert(Val && "isa<> used on a null pointer");
99 assert(Val && "isa<> used on a null pointer");
106 assert(Val && "isa<> used on a null pointer");
113 assert(Val && "isa<> used on a null pointer");
137 // isa<X> - Return true if the parameter to the template is an instance of th
142 template <class X, class Y> LLVM_NODISCARD inline bool isa(const Y &Val) { function in namespace:llvm
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/Support/
Casting.h 10 // This file defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(),
27 // isa<x> Support Templates
53 // The core of the implementation of isa<X> is here; To and From should be
55 // implementation of isa<> without rewriting it from scratch.
85 assert(Val && "isa<> used on a null pointer");
92 assert(Val && "isa<> used on a null pointer");
99 assert(Val && "isa<> used on a null pointer");
106 assert(Val && "isa<> used on a null pointer");
113 assert(Val && "isa<> used on a null pointer");
137 // isa<X> - Return true if the parameter to the template is an instance of th
142 template <class X, class Y> LLVM_NODISCARD inline bool isa(const Y &Val) { function in namespace:llvm
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/Support/
Casting.h 10 // This file defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(),
27 // isa<x> Support Templates
53 // The core of the implementation of isa<X> is here; To and From should be
55 // implementation of isa<> without rewriting it from scratch.
85 assert(Val && "isa<> used on a null pointer");
92 assert(Val && "isa<> used on a null pointer");
99 assert(Val && "isa<> used on a null pointer");
106 assert(Val && "isa<> used on a null pointer");
113 assert(Val && "isa<> used on a null pointer");
137 // isa<X> - Return true if the parameter to the template is an instance of th
142 template <class X, class Y> LLVM_NODISCARD inline bool isa(const Y &Val) { function in namespace:llvm
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/Support/
Casting.h 10 // This file defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(),
27 // isa<x> Support Templates
53 // The core of the implementation of isa<X> is here; To and From should be
55 // implementation of isa<> without rewriting it from scratch.
85 assert(Val && "isa<> used on a null pointer");
92 assert(Val && "isa<> used on a null pointer");
99 assert(Val && "isa<> used on a null pointer");
106 assert(Val && "isa<> used on a null pointer");
113 assert(Val && "isa<> used on a null pointer");
137 // isa<X> - Return true if the parameter to the template is an instance of th
142 template <class X, class Y> LLVM_NODISCARD inline bool isa(const Y &Val) { function in namespace:llvm
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/Support/
Casting.h 10 // This file defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(),
27 // isa<x> Support Templates
53 // The core of the implementation of isa<X> is here; To and From should be
55 // implementation of isa<> without rewriting it from scratch.
85 assert(Val && "isa<> used on a null pointer");
92 assert(Val && "isa<> used on a null pointer");
99 assert(Val && "isa<> used on a null pointer");
106 assert(Val && "isa<> used on a null pointer");
113 assert(Val && "isa<> used on a null pointer");
137 // isa<X> - Return true if the parameter to the template is an instance of th
142 template <class X, class Y> LLVM_NODISCARD inline bool isa(const Y &Val) { function in namespace:llvm
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/Support/
Casting.h 10 // This file defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(),
27 // isa<x> Support Templates
53 // The core of the implementation of isa<X> is here; To and From should be
55 // implementation of isa<> without rewriting it from scratch.
85 assert(Val && "isa<> used on a null pointer");
92 assert(Val && "isa<> used on a null pointer");
99 assert(Val && "isa<> used on a null pointer");
106 assert(Val && "isa<> used on a null pointer");
113 assert(Val && "isa<> used on a null pointer");
137 // isa<X> - Return true if the parameter to the template is an instance of th
142 template <class X, class Y> LLVM_NODISCARD inline bool isa(const Y &Val) { function in namespace:llvm
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/Support/
Casting.h 10 // This file defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(),
27 // isa<x> Support Templates
53 // The core of the implementation of isa<X> is here; To and From should be
55 // implementation of isa<> without rewriting it from scratch.
85 assert(Val && "isa<> used on a null pointer");
92 assert(Val && "isa<> used on a null pointer");
99 assert(Val && "isa<> used on a null pointer");
106 assert(Val && "isa<> used on a null pointer");
113 assert(Val && "isa<> used on a null pointer");
137 // isa<X> - Return true if the parameter to the template is an instance of th
142 template <class X, class Y> LLVM_NODISCARD inline bool isa(const Y &Val) { function in namespace:llvm
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/Support/
Casting.h 10 // This file defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(),
27 // isa<x> Support Templates
53 // The core of the implementation of isa<X> is here; To and From should be
55 // implementation of isa<> without rewriting it from scratch.
85 assert(Val && "isa<> used on a null pointer");
92 assert(Val && "isa<> used on a null pointer");
99 assert(Val && "isa<> used on a null pointer");
106 assert(Val && "isa<> used on a null pointer");
113 assert(Val && "isa<> used on a null pointer");
137 // isa<X> - Return true if the parameter to the template is an instance of th
142 template <class X, class Y> LLVM_NODISCARD inline bool isa(const Y &Val) { function in namespace:llvm
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/Support/
Casting.h 10 // This file defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(),
27 // isa<x> Support Templates
53 // The core of the implementation of isa<X> is here; To and From should be
55 // implementation of isa<> without rewriting it from scratch.
85 assert(Val && "isa<> used on a null pointer");
92 assert(Val && "isa<> used on a null pointer");
99 assert(Val && "isa<> used on a null pointer");
106 assert(Val && "isa<> used on a null pointer");
113 assert(Val && "isa<> used on a null pointer");
137 // isa<X> - Return true if the parameter to the template is an instance of th
142 template <class X, class Y> LLVM_NODISCARD inline bool isa(const Y &Val) { function in namespace:llvm
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/Support/
Casting.h 10 // This file defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(),
27 // isa<x> Support Templates
53 // The core of the implementation of isa<X> is here; To and From should be
55 // implementation of isa<> without rewriting it from scratch.
85 assert(Val && "isa<> used on a null pointer");
92 assert(Val && "isa<> used on a null pointer");
99 assert(Val && "isa<> used on a null pointer");
106 assert(Val && "isa<> used on a null pointer");
113 assert(Val && "isa<> used on a null pointer");
137 // isa<X> - Return true if the parameter to the template is an instance of th
142 template <class X, class Y> LLVM_NODISCARD inline bool isa(const Y &Val) { function in namespace:llvm
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/Support/
Casting.h 10 // This file defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(),
27 // isa<x> Support Templates
53 // The core of the implementation of isa<X> is here; To and From should be
55 // implementation of isa<> without rewriting it from scratch.
85 assert(Val && "isa<> used on a null pointer");
92 assert(Val && "isa<> used on a null pointer");
99 assert(Val && "isa<> used on a null pointer");
106 assert(Val && "isa<> used on a null pointer");
113 assert(Val && "isa<> used on a null pointer");
137 // isa<X> - Return true if the parameter to the template is an instance of th
142 template <class X, class Y> LLVM_NODISCARD inline bool isa(const Y &Val) { function in namespace:llvm
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/Support/
Casting.h 10 // This file defines the isa<X>(), cast<X>(), dyn_cast<X>(), cast_or_null<X>(),
27 // isa<x> Support Templates
53 // The core of the implementation of isa<X> is here; To and From should be
55 // implementation of isa<> without rewriting it from scratch.
85 assert(Val && "isa<> used on a null pointer");
92 assert(Val && "isa<> used on a null pointer");
99 assert(Val && "isa<> used on a null pointer");
106 assert(Val && "isa<> used on a null pointer");
113 assert(Val && "isa<> used on a null pointer");
137 // isa<X> - Return true if the parameter to the template is an instance of th
142 template <class X, class Y> LLVM_NODISCARD inline bool isa(const Y &Val) { function in namespace:llvm
    [all...]

Completed in 522 milliseconds

1 2 3 4 5 6 7 8