Home
last modified time | relevance | path

Searched refs:a_value (Results 1 – 13 of 13) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFFormValue.cpp675 int DWARFFormValue::Compare(const DWARFFormValue &a_value, in Compare() argument
677 dw_form_t a_form = a_value.Form(); in Compare()
696 uint64_t a = a_value.Unsigned(); in Compare()
706 int64_t a = a_value.Signed(); in Compare()
718 const char *a_string = a_value.AsCString(); in Compare()
735 uint64_t a_len = a_value.Unsigned(); in Compare()
742 return memcmp(a_value.BlockData(), b_value.BlockData(), a_value.Unsigned()); in Compare()
750 uint64_t a = a_value.Reference(); in Compare()
/freebsd-12.1/contrib/googletest/googletest/test/
H A Dgoogletest-list-tests-unittest_.cc80 explicit MyType(const std::string& a_value) : value_(a_value) {} in MyType() argument
H A Dgoogletest-param-test-test.cc260 explicit DogAdder(const char* a_value) : value_(a_value) {} in DogAdder() argument
298 explicit IntWrapper(int a_value) : value_(a_value) {} in IntWrapper() argument
H A Dgoogletest-printers-test.cc159 explicit PrintableViaPrintToTemplate(const T& a_value) : value_(a_value) {} in PrintableViaPrintToTemplate() argument
H A Dgtest_unittest.cc3850 explicit Uncopyable(int a_value) : value_(a_value) {} in Uncopyable() argument
/freebsd-12.1/crypto/heimdal/lib/sl/
H A Dslc.h41 enum { a_value, a_assignment } type; enumerator
H A Dslc-gram.y89 $$->type = a_value;
H A Dslc-gram.c1378 (yyval.assignment)->type = a_value;
/freebsd-12.1/contrib/sendmail/src/
H A Dmime.c96 char *a_value; /* value of that field */ member
219 argv[argc].a_value = *pvp;
273 if (i >= argc || argv[i].a_value == NULL)
284 p = argv[i].a_value;
/freebsd-12.1/contrib/googletest/googletest/include/gtest/
H A Dgtest.h532 TestProperty(const std::string& a_key, const std::string& a_value) : in TestProperty() argument
533 key_(a_key), value_(a_value) { in TestProperty()
/freebsd-12.1/contrib/googletest/googlemock/test/
H A Dgmock-actions_test.cc218 explicit MyNonDefaultConstructible(int a_value) : value_(a_value) {} in MyNonDefaultConstructible() argument
H A Dgmock-matchers_test.cc623 explicit IntValue(int a_value) : value_(a_value) {} in IntValue() argument
761 ConvertibleFromAny(int a_value) : value(a_value) {} in ConvertibleFromAny()
794 IntReferenceWrapper(const int& a_value) : value(&a_value) {} in IntReferenceWrapper()
3903 explicit Uncopyable(int a_value) : value_(a_value) {} in Uncopyable() argument
4735 explicit NotCopyable(int a_value) : value_(a_value) {} in NotCopyable() argument
H A Dgmock-generated-actions_test.cc1144 explicit GiantTemplate(int a_value) : value(a_value) {} in GiantTemplate()