/third_party/cef/libcef/common/ |
D | scheme_registrar_impl.cc | 40 const bool is_local = options & CEF_SCHEME_OPTION_LOCAL; in AddCustomScheme() local 51 if (is_local) in AddCustomScheme() 61 scheme, is_standard, is_local, is_display_isolated, in AddCustomScheme()
|
/third_party/python/Lib/test/ |
D | test_symtable.py | 124 self.assertTrue(self.spam.lookup("x").is_local()) 125 self.assertFalse(self.spam.lookup("bar").is_local()) 127 self.assertTrue(self.top.lookup("some_non_assigned_global_var").is_local()) 128 self.assertTrue(self.top.lookup("some_assigned_global_var").is_local()) 172 self.assertTrue(st2.lookup('x').is_local()) 177 self.assertTrue(st4.lookup('x').is_local())
|
/third_party/cef/libcef/common/net/ |
D | scheme_info.h | 25 bool is_local; member
|
D | scheme_registration.cc | 44 if (internal_schemes[i].is_local) in AddInternalSchemes()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | FileSystem.h | 523 std::error_code is_local(const Twine &path, bool &result); 526 std::error_code is_local(int FD, bool &result); 530 inline bool is_local(const Twine &Path) { in is_local() function 532 return !is_local(Path, Result) && Result; in is_local() 537 inline bool is_local(int FD) { in is_local() function 539 return !is_local(FD, Result) && Result; in is_local()
|
/third_party/libunwind/src/ia64/ |
D | Gtables.c | 258 int ret, is_local; in unw_search_ia64_unwind_table() local 326 is_local = is_local_addr_space (as); in unw_search_ia64_unwind_table() 331 if (need_unwind_info || is_local) in unw_search_ia64_unwind_table() 335 if (is_local) in unw_search_ia64_unwind_table()
|
/third_party/flutter/skia/src/utils/ |
D | SkWhitelistTypefaces.cpp | 107 static bool is_local(const SkTypeface* tf) { in is_local() function 156 if (!is_local(tf)) { in WhitelistSerializeTypeface()
|
/third_party/python/Lib/ |
D | symtable.py | 262 def is_local(self): member in Symbol 322 print(info, info.is_local(), info.is_namespace())
|
/third_party/libunwind/src/ |
D | elfxx.h | 69 extern int elf_w (load_debuglink) (const char* file, struct elf_image *ei, int is_local);
|
D | elfxx.c | 455 elf_w (load_debuglink) (const char* file, struct elf_image *ei, int is_local) in elf_w() 473 if (is_local == -1) { in elf_w() 524 if (ret == -1 && is_local == 1) in elf_w()
|
/third_party/libnl/include/linux-private/linux/ |
D | if_bridge.h | 96 __u8 is_local; member
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
D | tls.h | 75 int is_local; member
|
D | tls_gnutls.c | 1490 ev.alert.is_local = 1; in tls_connection_handshake() 1510 ev.alert.is_local = 0; in tls_connection_handshake()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
D | tls.h | 75 int is_local; member
|
D | tls_gnutls.c | 1490 ev.alert.is_local = 1; in tls_connection_handshake() 1510 ev.alert.is_local = 0; in tls_connection_handshake()
|
/third_party/mesa3d/src/amd/vulkan/ |
D | radv_android.c | 147 bool is_local = !!(device->physical_device->memory_properties.memoryTypes[i].propertyFlags & in radv_image_from_gralloc() local 149 if (is_local) { in radv_image_from_gralloc()
|
D | radv_radeon_winsys.h | 167 bool is_local; member
|
/third_party/pulseaudio/src/pulse/ |
D | internal.h | 99 bool is_local:1; member
|
D | context.c | 629 c->is_local; in setup_context() 887 c->is_local = pa_socket_client_is_local(c->client); 1286 return c->is_local;
|
/third_party/mesa3d/src/amd/vulkan/winsys/amdgpu/ |
D | radv_amdgpu_bo.c | 508 bo->base.is_local = true; in radv_amdgpu_winsys_bo_create() 536 bo->base.use_global_list = bo->base.is_local; in radv_amdgpu_winsys_bo_create() 1005 if (bo->base.is_local) in radv_amdgpu_winsys_bo_make_resident()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
D | authsrv.c | 184 if (data->alert.is_local) in authsrv_tls_event()
|
/third_party/pulseaudio/src/modules/dbus/ |
D | iface-core.c | 385 dbus_bool_t is_local; in handle_get_is_local() local 390 is_local = get_is_local(conn); in handle_get_is_local() 392 pa_dbus_send_basic_variant_reply(conn, msg, DBUS_TYPE_BOOLEAN, &is_local); in handle_get_is_local() 1060 dbus_bool_t is_local; in handle_get_all() local 1097 is_local = get_is_local(conn); in handle_get_all() 1130 …ct_iter, property_handlers[PROPERTY_HANDLER_IS_LOCAL].property_name, DBUS_TYPE_BOOLEAN, &is_local); in handle_get_all()
|
/third_party/libunwind/src/dwarf/ |
D | Gfind_proc_info-lsb.c | 110 load_debug_frame (const char *file, char **buf, size_t *bufsize, int is_local, in load_debug_frame() argument 123 ret = elf_w (load_debuglink) (file, &ei, is_local); in load_debug_frame()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
D | authsrv.c | 164 if (data->alert.is_local) in authsrv_tls_event()
|
/third_party/python/Doc/library/ |
D | symtable.rst | 155 .. method:: is_local()
|