HomeSort by: relevance | last modified time | path
    Searched refs:type_ (Results 1 - 25 of 65) sorted by relevancy

1 2 3

  /src/external/gpl3/gdb.old/dist/gdb/python/lib/gdb/
types.py 22 def get_basic_type(type_):
26 type_: The type to reduce to its basic type.
29 type_ with const/volatile is stripped away,
34 type_.code == gdb.TYPE_CODE_REF
35 or type_.code == gdb.TYPE_CODE_RVALUE_REF
36 or type_.code == gdb.TYPE_CODE_TYPEDEF
38 if type_.code == gdb.TYPE_CODE_REF or type_.code == gdb.TYPE_CODE_RVALUE_REF:
39 type_ = type_.target(
    [all...]
  /src/external/gpl3/gdb/dist/gdb/python/lib/gdb/
types.py 22 def get_basic_type(type_):
26 type_: The type to reduce to its basic type.
29 type_ with const/volatile is stripped away,
34 type_.code == gdb.TYPE_CODE_REF
35 or type_.code == gdb.TYPE_CODE_RVALUE_REF
36 or type_.code == gdb.TYPE_CODE_TYPEDEF
38 if type_.code == gdb.TYPE_CODE_REF or type_.code == gdb.TYPE_CODE_RVALUE_REF:
39 type_ = type_.target(
    [all...]
  /src/common/include/prop/
prop_ingest.h 59 #define PROP_INGEST(key_, type_, handler_) \
61 .pite_type = type_ , \
65 #define PROP_INGEST_OPTIONAL(key_, type_, handler_) \
67 .pite_type = type_ , \
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googletest/include/gtest/
gtest-test-part.h 65 : type_(a_type),
72 Type type() const { return type_; }
91 bool skipped() const { return type_ == kSkip; }
94 bool passed() const { return type_ == kSuccess; }
97 bool nonfatally_failed() const { return type_ == kNonFatalFailure; }
100 bool fatally_failed() const { return type_ == kFatalFailure; }
106 Type type_; member in class:testing::TestPartResult
gtest-spi.h 109 const TestPartResult::Type type_; member in class:testing::internal::SingleFailureChecker
  /src/external/gpl3/gdb.old/dist/gdb/
osdata.h 42 osdata (std::string &&type_)
43 : type (std::move (type_))
tracepoint.h 238 memrange (int type_, bfd_signed_vma start_, bfd_signed_vma end_)
239 : type (type_), start (start_), end (end_)
  /src/external/gpl3/gdb/dist/gdb/
osdata.h 42 osdata (std::string &&type_)
43 : type (std::move (type_))
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/tests/rtl/
tsan_test_util_posix.cc 94 , type_(type) {
104 if (type_ == Normal)
107 else if (type_ == Spin)
110 else if (type_ == RW)
118 CHECK(type_ == Normal);
127 if (type_ == Normal)
130 else if (type_ == Spin)
133 else if (type_ == RW)
139 if (type_ == Normal)
142 else if (type_ == Spin
    [all...]
tsan_test_util.h 61 const Type type_; member in class:Mutex
  /src/external/bsd/unbound/dist/pythonmod/examples/
avahi-resolver.py 238 def __init__(self, callback, name, type_, timeout=None, getone=True):
246 self.browser_path = avahi.RecordBrowserNew(IF_UNSPEC, PROTO_UNSPEC, name, dns.rdataclass.IN, type_, 0)
250 % (name, dns.rdatatype.to_text(type_), getone, timeout))
266 def itemNew(self, interface, protocol, name, class_, type_, rdata, flags):
268 self.records.append((name, class_, type_, rdata))
272 def itemRemove(self, interface, protocol, name, class_, type_, rdata, flags):
274 self.records.remove((name, class_, type_, rdata))
420 name, class_, type_, rdata = rec
426 dns.rdatatype.to_text(type_),
427 dns.rdata.from_wire(class_, type_, wire, 0, len(wire), None)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_mutex.h 59 MutexType type_; member in class:__tsan::Mutex
tsan_mutex.cc 215 type_ = type;
229 cur_thread()->internal_deadlock_detector.Lock(type_);
254 cur_thread()->internal_deadlock_detector.Unlock(type_);
260 cur_thread()->internal_deadlock_detector.Lock(type_);
282 cur_thread()->internal_deadlock_detector.Unlock(type_);
  /src/external/gpl3/gdb.old/dist/gdb/cli/
cli-script.h 78 explicit command_line (command_control_type type_, char *line_ = nullptr)
80 control_type (type_)
  /src/external/gpl3/gdb/dist/gdb/cli/
cli-script.h 78 explicit command_line (command_control_type type_, char *line_ = nullptr)
80 control_type (type_)
  /src/external/bsd/kyua-cli/dist/engine/
test_result.cpp 41 /// \param type_ The type of the result.
44 engine::test_result::test_result(const result_type type_,
46 _type(type_),
  /src/external/gpl3/gdb.old/dist/gdbsupport/
tdesc.h 73 int bitsize_, const char *type_);
252 tdesc_type_field (const std::string &name_, tdesc_type *type_,
254 : name (name_), type (type_), start (start_), end (end_)
tdesc.cc 24 int bitsize_, const char *type_)
29 type (type_ != NULL ? type_ : "<unknown>")
  /src/external/gpl3/gdb/dist/gdbsupport/
tdesc.h 73 int bitsize_, const char *type_);
252 tdesc_type_field (const std::string &name_, tdesc_type *type_,
254 : name (name_), type (type_), start (start_), end (end_)
tdesc.cc 24 int bitsize_, const char *type_)
29 type (type_ != NULL ? type_ : "<unknown>")
  /src/external/gpl3/gcc/dist/gcc/jit/
libgccjit++.h 155 field new_field (type type_, const std::string &name,
158 field new_bitfield (type type_, int width, const std::string &name,
168 param new_param (type type_,
182 type type_,
200 rvalue new_struct_ctor (type type_,
205 rvalue new_array_ctor (type type_,
209 rvalue new_union_ctor (type type_,
323 type type_,
394 lvalue new_local (type type_,
497 rvalue cast_to (type type_,
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/jit/
libgccjit++.h 155 field new_field (type type_, const std::string &name,
158 field new_bitfield (type type_, int width, const std::string &name,
168 param new_param (type type_,
182 type type_,
200 rvalue new_struct_ctor (type type_,
205 rvalue new_array_ctor (type type_,
209 rvalue new_union_ctor (type type_,
323 type type_,
393 lvalue new_local (type type_,
496 rvalue cast_to (type type_,
    [all...]
  /src/external/bsd/kyua-cli/dist/utils/text/
templates.cpp 98 /// \param type_ The native type of the statement.
100 type_descriptor(const statement_type type_,
102 : type(type_), n_arguments(n_arguments_)
147 /// \param type_ The type of the statement.
149 statement_def(const statement_type& type_,
151 type(type_), arguments(arguments_)
157 if (descriptor.type == type_) {
  /src/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
sanitizer_mutex.cpp 218 void CheckedMutex::LockImpl(uptr pc) { deadlock_detector.Lock(type_, pc); }
220 void CheckedMutex::UnlockImpl() { deadlock_detector.Unlock(type_); }
  /src/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
sanitizer_mutex.cpp 218 void CheckedMutex::LockImpl(uptr pc) { deadlock_detector.Lock(type_, pc); }
220 void CheckedMutex::UnlockImpl() { deadlock_detector.Unlock(type_); }

Completed in 30 milliseconds

1 2 3