Home
last modified time | relevance | path

Searched defs:get (Results 1 – 25 of 145) sorted by relevance

123456

/freebsd-10-stable/contrib/llvm/include/llvm/IR/
DTypeBuilder.h106 static PointerType *get(LLVMContext &Context) { in get() function
117 static ArrayType *get(LLVMContext &Context) { in get() function
124 static ArrayType *get(LLVMContext &Context) { in get() function
183 static IntegerType *get(LLVMContext &C) { in get() function
190 static Type *get(LLVMContext& C) { in get() function
198 static Type *get(LLVMContext& C) { in get() function
206 static Type *get(LLVMContext& C) { return Type::getFloatTy(C); } in get() function
210 static Type *get(LLVMContext& C) { return Type::getDoubleTy(C); } in get() function
214 static Type *get(LLVMContext& C) { return Type::getX86_FP80Ty(C); } in get() function
218 static Type *get(LLVMContext& C) { return Type::getFP128Ty(C); } in get() function
[all …]
DMetadata.h46 static MDString *get(LLVMContext &Context, const char *Str) { in get() function
/freebsd-10-stable/contrib/libstdc++/src/
Dstrstream.cc86 strstreambuf::strstreambuf(char* get, streamsize n, char* put) in strstreambuf()
91 strstreambuf::strstreambuf(signed char* get, streamsize n, signed char* put) in strstreambuf()
96 strstreambuf::strstreambuf(unsigned char* get, streamsize n, in strstreambuf()
102 strstreambuf::strstreambuf(const char* get, streamsize n) in strstreambuf()
107 strstreambuf::strstreambuf(const signed char* get, streamsize n) in strstreambuf()
112 strstreambuf::strstreambuf(const unsigned char* get, streamsize n) in strstreambuf()
323 strstreambuf::_M_setup(char* get, char* put, streamsize n) in _M_setup()
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Utility/
DCleanUp.h101 value_type get() in get() function
110 get() const in get() function
234 value_type get() in get() function
243 get() const in get() function
DPythonPointer.h63 element_type get() const {return ptr_;} in get() function
/freebsd-10-stable/contrib/libstdc++/include/tr1/
Dtuple_defs.h49 get(tuple<_GLIBCXX_TEMPLATE_ARGS>& __t) in get() function
56 get(const tuple<_GLIBCXX_TEMPLATE_ARGS>& __t) in get() function
/freebsd-10-stable/contrib/atf/atf-c++/detail/
Denv.cpp44 impl::get(const std::string& name) in get() function in impl
50 impl::get(const std::string& name, const std::string& default_value) in get() function in impl
Dauto_array.hpp103 auto_array< T >::get(void) in get() function in atf::auto_array
111 auto_array< T >::get(void) in get() function in atf::auto_array
/freebsd-10-stable/contrib/llvm/lib/IR/
DConstants.cpp482 ConstantInt *ConstantInt::get(LLVMContext &Context, const APInt &V) { in get() function in ConstantInt
492 Constant *ConstantInt::get(Type *Ty, uint64_t V, bool isSigned) { in get() function in ConstantInt
502 ConstantInt *ConstantInt::get(IntegerType *Ty, uint64_t V, in get() function in ConstantInt
515 Constant *ConstantInt::get(Type *Ty, const APInt& V) { in get() function in ConstantInt
527 ConstantInt *ConstantInt::get(IntegerType* Ty, StringRef Str, in get() function in ConstantInt
557 Constant *ConstantFP::get(Type *Ty, double V) { in get() function in ConstantFP
574 Constant *ConstantFP::get(Type *Ty, StringRef Str) { in get() function in ConstantFP
610 ConstantFP* ConstantFP::get(LLVMContext &Context, const APFloat& V) { in get() function in ConstantFP
745 Constant *ConstantArray::get(ArrayType *Ty, ArrayRef<Constant*> V) { in get() function in ConstantArray
874 Constant *ConstantStruct::get(StructType *ST, ArrayRef<Constant*> V) { in get() function in ConstantStruct
[all …]
DType.cpp305 IntegerType *IntegerType::get(LLVMContext &C, unsigned NumBits) { in get() function in IntegerType
361 FunctionType *FunctionType::get(Type *ReturnType, in get() function in FunctionType
382 FunctionType *FunctionType::get(Type *Result, bool isVarArg) { in get() function in FunctionType
405 StructType *StructType::get(LLVMContext &Context, ArrayRef<Type*> ETypes, in get() function in StructType
501 StructType *StructType::get(LLVMContext &Context, bool isPacked) { in get() function in StructType
505 StructType *StructType::get(Type *type, ...) { in get() function in StructType
679 ArrayType *ArrayType::get(Type *elementType, uint64_t NumElements) { in get() function in ArrayType
706 VectorType *VectorType::get(Type *elementType, unsigned NumElements) { in get() function in VectorType
730 PointerType *PointerType::get(Type *EltTy, unsigned AddressSpace) { in get() function in PointerType
DAttributes.cpp33 Attribute Attribute::get(LLVMContext &Context, Attribute::AttrKind Kind, in get() function in Attribute
57 Attribute Attribute::get(LLVMContext &Context, StringRef Kind, StringRef Val) { in get() function in Attribute
399 AttributeSetNode *AttributeSetNode::get(LLVMContext &C, in get() function in AttributeSetNode
551 AttributeSet AttributeSet::get(LLVMContext &C, in get() function in AttributeSet
585 AttributeSet AttributeSet::get(LLVMContext &C, in get() function in AttributeSet
595 AttributeSet AttributeSet::get(LLVMContext &C, unsigned Index, AttrBuilder &B) { in get() function in AttributeSet
624 AttributeSet AttributeSet::get(LLVMContext &C, unsigned Index, in get() function in AttributeSet
633 AttributeSet AttributeSet::get(LLVMContext &C, ArrayRef<AttributeSet> Attrs) { in get() function in AttributeSet
/freebsd-10-stable/contrib/llvm/include/llvm/Support/
DErrorOr.h60 T &get() const { return *Storage; } in get() function
259 storage_type *get() { in get() function
264 const storage_type *get() const { in get() function
DThreadLocal.h52 T* get() { return static_cast<T*>(getInstance()); } in get() function
DSaveAndRestore.h29 T get() { return old_value; } in get() function
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/AST/
DASTTypeTraits.h223 static const T *get(ASTNodeKind NodeKind, const char Storage[]) { in KIND_TO_KIND_ID() function
238 static const T *get(ASTNodeKind NodeKind, const char Storage[]) { in KIND_TO_KIND_ID() function
253 static const T *get(ASTNodeKind NodeKind, const char Storage[]) { in KIND_TO_KIND_ID() function
/freebsd-10-stable/contrib/atf/atf-c/detail/
Denv_test.c52 ATF_TC_HEAD(get, tc) in ATF_TC_HEAD() argument
56 ATF_TC_BODY(get, tc) in ATF_TC_BODY() argument
/freebsd-10-stable/contrib/llvm/include/llvm/ADT/
DOwningPtr.h72 T *get() const { return Ptr; } in get() function
135 T *get() const { return Ptr; } in get() function
/freebsd-10-stable/contrib/llvm/tools/clang/include/clang/Sema/
DOwnership.h74 PtrTy get() const { in get() function
98 OpaquePtr<T> get() const { return OpaquePtr<T>::getFromOpaquePtr(Ptr); } in get() function
/freebsd-10-stable/contrib/llvm/lib/TableGen/
DRecord.cpp130 BitsRecTy *BitsRecTy::get(unsigned Sz) { in get() function in BitsRecTy
334 RecordRecTy *RecordRecTy::get(Record *R) { in get() function in RecordRecTy
433 UnsetInit *UnsetInit::get() { in get() function in UnsetInit
440 BitInit *BitInit::get(bool V) { in get() function in BitInit
458 BitsInit *BitsInit::get(ArrayRef<Init *> Range) { in get() function in BitsInit
575 IntInit *IntInit::get(int64_t V) { in get() function in IntInit
602 StringInit *StringInit::get(StringRef V) { in get() function in StringInit
623 ListInit *ListInit::get(ArrayRef<Init *> Range, RecTy *EltTy) { in get() function in ListInit
740 UnOpInit *UnOpInit::get(UnaryOp opc, Init *lhs, RecTy *Type) { in get() function in UnOpInit
880 BinOpInit *BinOpInit::get(BinaryOp opc, Init *lhs, in get() function in BinOpInit
[all …]
/freebsd-10-stable/contrib/wpa/src/utils/
Dext_password_i.h18 struct wpabuf * (*get)(void *ctx, const char *name); member
/freebsd-10-stable/contrib/groff/src/preproc/pic/
Dlex.cpp108 int file_input::get() in get() function in file_input
141 int macro_input::get() in get() function in macro_input
192 int argument_macro_input::get() in get() function in argument_macro_input
328 int char_input::get() in get() function in char_input
1358 int for_input::get() in get() function in for_input
1526 int copy_thru_input::get() in get() function in copy_thru_input
1639 int simple_file_input::get() in get() function in simple_file_input
/freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Interpreter/
DPythonDataObjects.h85 get () const in get() function
/freebsd-10-stable/contrib/llvm/include/llvm/MC/
DMCInstrInfo.h48 const MCInstrDesc &get(unsigned Opcode) const { in get() function
DMCValue.h65 static MCValue get(int64_t Val) { in get() function
/freebsd-10-stable/contrib/libstdc++/include/bits/
Dlocale_facets.h1979 get(iter_type __in, iter_type __end, ios_base& __io, in get() function
2015 get(iter_type __in, iter_type __end, ios_base& __io, in get() function
2020 get(iter_type __in, iter_type __end, ios_base& __io, in get() function
2025 get(iter_type __in, iter_type __end, ios_base& __io, in get() function
2030 get(iter_type __in, iter_type __end, ios_base& __io, in get() function
2036 get(iter_type __in, iter_type __end, ios_base& __io, in get() function
2041 get(iter_type __in, iter_type __end, ios_base& __io, in get() function
2074 get(iter_type __in, iter_type __end, ios_base& __io, in get() function
2079 get(iter_type __in, iter_type __end, ios_base& __io, in get() function
2084 get(iter_type __in, iter_type __end, ios_base& __io, in get() function
[all …]

123456