Home
last modified time | relevance | path

Searched defs:New (Results 1 – 25 of 457) sorted by relevance

12345678910>>...19

/external/python/mobly/
DCHANGELOG.md6 ### New subsection
35 ### New subsection
53 ### New subsection
72 ### New subsection
90 ### New subsection
107 ### New subsection
139 ### New subsection
176 ### New subsection
216 ### New subsection
229 ### New subsection
[all …]
/external/rust/crates/log/
DCHANGELOG.md41 ### New subsection
56 ### New subsection
83 ### New subsection
94 ### New subsection
100 ### New subsection
175 ### New subsection
/external/golang-protobuf/internal/impl/
Dconvert.go37 New() protoreflect.Value methodSpec
166 func (c *boolConverter) New() protoreflect.Value { return c.def } func
190 func (c *int32Converter) New() protoreflect.Value { return c.def } func
214 func (c *int64Converter) New() protoreflect.Value { return c.def } func
238 func (c *uint32Converter) New() protoreflect.Value { return c.def } func
262 func (c *uint64Converter) New() protoreflect.Value { return c.def } func
286 func (c *float32Converter) New() protoreflect.Value { return c.def } func
310 func (c *float64Converter) New() protoreflect.Value { return c.def } func
340 func (c *stringConverter) New() protoreflect.Value { return c.def } func
367 func (c *bytesConverter) New() protoreflect.Value { return c.def } func
[all …]
/external/cronet/net/third_party/quiche/src/quiche/common/
Dsimple_buffer_allocator.cc9 char* SimpleBufferAllocator::New(size_t size) { return new char[size]; } in New() function in quiche::SimpleBufferAllocator
11 char* SimpleBufferAllocator::New(size_t size, bool /* flag_enable */) { in New() function in quiche::SimpleBufferAllocator
/external/cronet/net/third_party/quiche/src/quiche/quic/qbone/platform/
Drtnetlink_message.cc75 LinkMessage LinkMessage::New(RtnetlinkMessage::Operation request_operation, in New() function in quic::LinkMessage
100 AddressMessage AddressMessage::New( in New() function in quic::AddressMessage
125 RouteMessage RouteMessage::New(RtnetlinkMessage::Operation request_operation, in New() function in quic::RouteMessage
144 RuleMessage RuleMessage::New(RtnetlinkMessage::Operation request_operation, in New() function in quic::RuleMessage
/external/libchrome/base/
Dlazy_instance.h64 static Type* New(void* instance) { in New() function
91 static Type* New(void* instance) { in New() function
115 static Type* New(void* instance) { in New() function
/external/cronet/base/
Dlazy_instance.h66 static Type* New(void* instance) { in New() function
93 static Type* New(void* instance) { in New() function
117 static Type* New(void* instance) { in New() function
/external/cronet/net/third_party/quiche/src/quiche/quic/core/crypto/
Dcurve25519_key_exchange.cc24 std::unique_ptr<Curve25519KeyExchange> Curve25519KeyExchange::New( in New() function in quic::Curve25519KeyExchange
33 std::unique_ptr<Curve25519KeyExchange> Curve25519KeyExchange::New( in New() function in quic::Curve25519KeyExchange
Dp256_key_exchange.cc32 std::unique_ptr<P256KeyExchange> P256KeyExchange::New() { in New() function in quic::P256KeyExchange
37 std::unique_ptr<P256KeyExchange> P256KeyExchange::New(absl::string_view key) { in New() function in quic::P256KeyExchange
/external/pdfium/core/fpdfapi/parser/
Dcpdf_indirect_object_holder.h47 typename std::enable_if<CanInternStrings<T>::value, RetainPtr<T>>::type New( in New() function
53 typename std::enable_if<!CanInternStrings<T>::value, RetainPtr<T>>::type New( in New() function
/external/tensorflow/tensorflow/lite/kernels/shim/
Dtf_tensor_view.cc87 absl::StatusOr<TfTensorView> TensorView::New<::tensorflow::Tensor>( in New() function in tflite::shim::TensorView
93 absl::StatusOr<const TfTensorView> TensorView::New<const ::tensorflow::Tensor>( in New() function in tflite::shim::TensorView
Dtflite_tensor_view.cc146 absl::StatusOr<TfLiteTensorView> TensorView::New<::TfLiteTensor>( in New() function in tflite::shim::TensorView
152 absl::StatusOr<const TfLiteTensorView> TensorView::New<const ::TfLiteTensor>( in New() function in tflite::shim::TensorView
/external/cronet/base/android/
Dapplication_status_listener.cc30 static ObserverListThreadSafe<ApplicationStatusListenerImpl>* New( in New() function
81 std::unique_ptr<ApplicationStatusListener> ApplicationStatusListener::New( in New() function in base::android::ApplicationStatusListener
/external/clang/lib/StaticAnalyzer/Core/
DRangeConstraintManager.cpp465 RangeSet New = GetRange(St, Sym).Intersect(getBasicVals(), F, Upper, Lower); in assumeSymNE() local
480 RangeSet New = GetRange(St, Sym).Intersect(getBasicVals(), F, AdjInt, AdjInt); in assumeSymEQ() local
516 RangeSet New = getSymLTRange(St, Sym, Int, Adjustment); in assumeSymLT() local
552 RangeSet New = getSymGTRange(St, Sym, Int, Adjustment); in assumeSymGT() local
588 RangeSet New = getSymGERange(St, Sym, Int, Adjustment); in assumeSymGE() local
652 RangeSet New = getSymLERange(St, Sym, Int, Adjustment); in assumeSymLE() local
660 RangeSet New = getSymGERange(State, Sym, From, Adjustment); in assumeSymbolWithinInclusiveRange() local
673 RangeSet New(RangeLT.addRange(F, RangeGT)); in assumeSymbolOutOfInclusiveRange() local
/external/clang/include/clang/AST/
DUnresolvedSet.h93 bool replace(const NamedDecl* Old, NamedDecl *New) { in replace()
102 void replace(iterator I, NamedDecl *New) { I.I->setDecl(New); } in replace()
104 void replace(iterator I, NamedDecl *New, AccessSpecifier AS) { in replace()
/external/rust/crates/num-traits/tests/
Dcast.rs326 struct New<T>(T); in newtype_from_primitive() struct
329 impl<T: FromPrimitive> FromPrimitive for New<T> { in newtype_from_primitive() implementation
364 struct New<T>(T); in newtype_to_primitive() struct
367 impl<T: ToPrimitive> ToPrimitive for New<T> { in newtype_to_primitive() implementation
/external/llvm/tools/llvm-c-test/
Dmodule.c28 LLVMModuleRef llvm_load_module(bool Lazy, bool New) { in llvm_load_module()
65 int llvm_module_dump(bool Lazy, bool New) { in llvm_module_dump()
/external/libchrome/base/memory/
Dsingleton.h46 static Type* New() { in New() function
105 static Type* New() { in New() function
/external/cronet/base/memory/
Dsingleton.h44 static Type* New() { in New() function
103 static Type* New() { in New() function
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DConstantMerge.cpp105 static CanMerge makeMergeable(GlobalVariable *Old, GlobalVariable *New) { in makeMergeable()
116 static void replace(Module &M, GlobalVariable *Old, GlobalVariable *New) { in replace()
238 GlobalVariable *New = SameContentReplacements[i].second; in mergeConstants() local
/external/angle/util/linux/
DLinuxWindow.cpp21 OSWindow *OSWindow::New() in New() function in OSWindow
/external/tensorflow/tensorflow/core/lib/monitoring/
Dcounter.h55 static Counter* New(MetricDefArgs&&... metric_def_args) { in New() function
206 Counter<NumLabels>* Counter<NumLabels>::New( in New() function
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DBasicBlock.cpp419 BasicBlock *New = BasicBlock::Create(getContext(), BBName, getParent(), in splitBasicBlock() local
441 void BasicBlock::replacePhiUsesWith(BasicBlock *Old, BasicBlock *New) { in replacePhiUsesWith()
453 BasicBlock *New) { in replaceSuccessorsPhiUsesWith()
464 void BasicBlock::replaceSuccessorsPhiUsesWith(BasicBlock *New) { in replaceSuccessorsPhiUsesWith()
/external/flatbuffers/tests/MyGame/OtherNameSpace/
DUnused.lua18 function Unused.New() function
/external/flatbuffers/tests/MyGame/
DInParentNamespace.lua18 function InParentNamespace.New() function

12345678910>>...19