HomeSort by relevance Sort by last modified time
    Searched refs:dest_type (Results 1 - 25 of 32) sorted by null

1 2

  /art/runtime/entrypoints/portable/
portable_cast_entrypoints.cc 23 extern "C" int32_t art_portable_is_assignable_from_code(mirror::Class* dest_type,
26 DCHECK(dest_type != NULL);
28 return dest_type->IsAssignableFrom(src_type) ? 1 : 0;
31 extern "C" void art_portable_check_cast_from_code(mirror::Class* dest_type,
34 DCHECK(dest_type->IsClass()) << PrettyClass(dest_type);
36 if (UNLIKELY(!dest_type->IsAssignableFrom(src_type))) {
37 ThrowClassCastException(dest_type, src_type);
  /external/chromium_org/third_party/webrtc/base/
sigslot.h     [all...]
  /art/runtime/entrypoints/quick/
quick_throw_entrypoints.cc 102 extern "C" void artThrowClassCastException(mirror::Class* dest_type, mirror::Class* src_type,
106 CHECK(!dest_type->IsAssignableFrom(src_type));
107 ThrowClassCastException(dest_type, src_type);
  /external/libnfc-nci/src/nfc/include/
nci_hmsgs.h 50 UINT8 nci_snd_core_conn_create (UINT8 dest_type, UINT8 num_tlv, UINT8 tlv_size, UINT8 *p_param_tlvs);
nfc_api.h 306 UINT8 dest_type; /* the destination type */ member in struct:__anon7992
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/ocaml/
ocaml.swg 36 void **ptr, swig_type_info *dest_type)
47 dest_type ? dest_type->str : "<none>" );
49 if (dest_type != source_type) {
55 if( !dest_type || !source_type ||
56 !strcmp(dest_type->name,"_p_void") ||
62 SWIG_TypeCheckStruct(source_type, dest_type );
  /external/libnfc-nci/src/nfc/nfc/
nfc_main.c 960 ** Parameters dest_type - the destination type
968 tNFC_STATUS NFC_ConnCreate (UINT8 dest_type,
983 if (dest_type == NCI_DEST_TYPE_NFCEE)
992 else if (dest_type == NCI_DEST_TYPE_REMOTE)
1000 else if (dest_type == NCI_DEST_TYPE_NFCC)
    [all...]
nfc_ncif.c     [all...]
  /external/chromium_org/content/browser/fileapi/
copy_or_move_file_validator_unittest.cc 47 storage::FileSystemType dest_type)
48 : origin_(origin), src_type_(src_type), dest_type_(dest_type) {}
copy_or_move_operation_delegate_unittest.cc 169 storage::FileSystemType dest_type)
170 : origin_(origin), src_type_(src_type), dest_type_(dest_type) {}
  /art/runtime/
common_throws.h 60 void ThrowClassCastException(mirror::Class* dest_type, mirror::Class* src_type)
common_throws.cc 121 void ThrowClassCastException(mirror::Class* dest_type, mirror::Class* src_type) {
125 PrettyDescriptor(dest_type).c_str()).c_str());
  /external/libnfc-nci/src/nfc/int/
nfc_int.h 245 NFC_API extern void nfc_ncif_proc_conn_create_rsp (UINT8 *p, UINT16 plen, UINT8 dest_type);
  /external/chromium_org/gpu/GLES2/
gl2extchromium.h 392 GLint internalformat, GLenum dest_type);
396 GLint internalformat, GLenum dest_type);
  /external/libnfc-nci/src/nfc/nci/
nci_hmsgs.c 193 UINT8 nci_snd_core_conn_create (UINT8 dest_type, UINT8 num_tlv, UINT8 tlv_size, UINT8 *p_param_tlvs)
211 UINT8_TO_STREAM (pp, dest_type);
  /external/chromium_org/gpu/command_buffer/client/
gles2_implementation_impl_autogen.h     [all...]
gles2_c_lib_autogen.h     [all...]
gles2_trace_implementation_impl_autogen.h     [all...]
gles2_implementation_autogen.h 652 GLenum dest_type) OVERRIDE;
gles2_interface_autogen.h 442 GLenum dest_type) = 0;
gles2_interface_stub_autogen.h 473 GLenum dest_type) OVERRIDE;
gles2_trace_implementation_autogen.h 473 GLenum dest_type) OVERRIDE;
gles2_cmd_helper_autogen.h     [all...]
  /external/chromium_org/webkit/common/gpu/
webgraphicscontext3d_impl.h 473 WGC3Denum dest_type);
  /external/chromium_org/gpu/command_buffer/service/
gles2_cmd_decoder_autogen.h 3013 GLenum dest_type = static_cast<GLenum>(c.dest_type); local
    [all...]

Completed in 557 milliseconds

1 2