Home
last modified time | relevance | path

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

12345678910>>...178

/external/llvm/include/llvm/IR/
DTypeBuilder.h114 static PointerType *get(LLVMContext &Context) { in get() function
125 static ArrayType *get(LLVMContext &Context) { in get() function
132 static ArrayType *get(LLVMContext &Context) { in get() function
191 static IntegerType *get(LLVMContext &C) { in get() function
198 static Type *get(LLVMContext& C) { in get() function
206 static Type *get(LLVMContext& C) { in get() function
214 static Type *get(LLVMContext& C) { return Type::getFloatTy(C); } in get() function
218 static Type *get(LLVMContext& C) { return Type::getDoubleTy(C); } in get() function
222 static Type *get(LLVMContext& C) { return Type::getX86_FP80Ty(C); } in get() function
226 static Type *get(LLVMContext& C) { return Type::getFP128Ty(C); } in get() function
[all …]
/external/libcxx/test/support/
Dpropagate_const_helpers.h8 constexpr const int *get() const { return &i_; } in get() function
9 constexpr int *get() { return &i_; } in get() function
22 constexpr const int *get() const { return &i_; } in get() function
23 constexpr int *get() { return &i_; } in get() function
37 constexpr const int *get() const { return &i_; } in get() function
38 constexpr int *get() { return &i_; } in get() function
52 constexpr const int *get() const { return &i_; } in get() function
53 constexpr int *get() { return &i_; } in get() function
66 constexpr const int *get() const { return &i_; } in get() function
67 constexpr int *get() { return &i_; } in get() function
[all …]
/external/cronet/tot/third_party/libc++/src/test/support/
Dpropagate_const_helpers.h8 constexpr const int *get() const { return &i_; } in get() function
9 constexpr int *get() { return &i_; } in get() function
22 constexpr const int *get() const { return &i_; } in get() function
23 constexpr int *get() { return &i_; } in get() function
37 constexpr const int *get() const { return &i_; } in get() function
38 constexpr int *get() { return &i_; } in get() function
52 constexpr const int *get() const { return &i_; } in get() function
53 constexpr int *get() { return &i_; } in get() function
66 constexpr const int *get() const { return &i_; } in get() function
67 constexpr int *get() { return &i_; } in get() function
[all …]
/external/cronet/stable/third_party/libc++/src/test/support/
Dpropagate_const_helpers.h8 constexpr const int *get() const { return &i_; } in get() function
9 constexpr int *get() { return &i_; } in get() function
22 constexpr const int *get() const { return &i_; } in get() function
23 constexpr int *get() { return &i_; } in get() function
37 constexpr const int *get() const { return &i_; } in get() function
38 constexpr int *get() { return &i_; } in get() function
52 constexpr const int *get() const { return &i_; } in get() function
53 constexpr int *get() { return &i_; } in get() function
66 constexpr const int *get() const { return &i_; } in get() function
67 constexpr int *get() { return &i_; } in get() function
[all …]
/external/python/google-auth-library-python/tests/compute_engine/
Dtest_credentials.py70 def test_refresh_success(self, get, utcnow): argument
104 def test_refresh_success_with_scopes(self, get, utcnow): argument
139 def test_refresh_error(self, get): argument
148 def test_before_request_refreshes(self, get): argument
193 def test_default_state(self, get): argument
220 def test_make_authorization_grant_assertion(self, sign, get, utcnow): argument
253 def test_with_service_account(self, sign, get, utcnow): argument
285 def test_additional_claims(self, sign, get, utcnow): argument
341 def test_with_target_audience(self, sign, get, utcnow): argument
453 def test_with_quota_project(self, sign, get, utcnow): argument
[all …]
/external/pigweed/pw_ide/ts/pigweed-vscode/src/settings/
Dvscode.ts172 const { get, update } = boolSettingFor('activateBazeliskInNewTerminals'); constant
182 const { get, update } = stringSettingFor('codeAnalysisTarget'); constant
192 const { get, update } = stringSettingFor('codeAnalysisTargetDir'); constant
202 const get = () => constant
223 const { get, update } = boolSettingFor('disableBazelSettingsRecommendations'); constant
233 const { get, update } = boolSettingFor('disableBazeliskCheck'); constant
243 const { get, update } = boolSettingFor('disableInactiveFileNotice'); constant
255 const { get, update } = boolSettingFor('disableInactiveFileCodeIntelligence'); constant
267 const { get, update } = boolSettingFor('disableCompileCommandsFileWatcher'); constant
279 const { get, update } = boolSettingFor('enforceExtensionRecommendations'); constant
[all …]
/external/ComputeLibrary/arm_compute/core/
DPixelValue.h244 void get(uint8_t &v) const in get() function
252 void get(int8_t &v) const in get() function
260 void get(uint16_t &v) const in get() function
268 void get(int16_t &v) const in get() function
276 void get(uint32_t &v) const in get() function
284 void get(int32_t &v) const in get() function
292 void get(uint64_t &v) const in get() function
300 void get(int64_t &v) const in get() function
308 void get(bfloat16 &v) const in get() function
316 void get(half &v) const in get() function
[all …]
/external/cronet/tot/base/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/
Dno_destructor.h99 const T* get() const { return storage_.get(); } in get() function
100 T* get() { return storage_.get(); } in get() function
110 const T* get() const { return &storage_; } in get() function
111 T* get() { return &storage_; } in get() function
125 const T* get() const { return const_cast<PlacementStorage*>(this)->get(); } in get() function
126 T* get() { return reinterpret_cast<T*>(storage_); } in get() function
/external/cronet/stable/base/allocator/partition_allocator/src/partition_alloc/partition_alloc_base/
Dno_destructor.h99 const T* get() const { return storage_.get(); } in get() function
100 T* get() { return storage_.get(); } in get() function
110 const T* get() const { return &storage_; } in get() function
111 T* get() { return &storage_; } in get() function
125 const T* get() const { return const_cast<PlacementStorage*>(this)->get(); } in get() function
126 T* get() { return reinterpret_cast<T*>(storage_); } in get() function
/external/angle/third_party/abseil-cpp/absl/base/
Dno_destructor.h139 absl::Nonnull<T*> get() { return impl_.get(); } in get() function
142 absl::Nonnull<const T*> get() const { return impl_.get(); } in get() function
150 absl::Nonnull<const T*> get() const { return &value_; } in get() function
151 absl::Nonnull<T*> get() { return &value_; } in get() function
163 absl::Nonnull<const T*> get() const { in get() function
166 absl::Nonnull<T*> get() { in get() function
/external/cronet/stable/third_party/abseil-cpp/absl/base/
Dno_destructor.h139 absl::Nonnull<T*> get() { return impl_.get(); } in get() function
142 absl::Nonnull<const T*> get() const { return impl_.get(); } in get() function
150 absl::Nonnull<const T*> get() const { return &value_; } in get() function
151 absl::Nonnull<T*> get() { return &value_; } in get() function
163 absl::Nonnull<const T*> get() const { in get() function
166 absl::Nonnull<T*> get() { return Launder(reinterpret_cast<T*>(&space_)); } in get() function
/external/abseil-cpp/absl/base/
Dno_destructor.h139 absl::Nonnull<T*> get() { return impl_.get(); } in get() function
142 absl::Nonnull<const T*> get() const { return impl_.get(); } in get() function
150 absl::Nonnull<const T*> get() const { return &value_; } in get() function
151 absl::Nonnull<T*> get() { return &value_; } in get() function
163 absl::Nonnull<const T*> get() const { in get() function
166 absl::Nonnull<T*> get() { return Launder(reinterpret_cast<T*>(&space_)); } in get() function
/external/cronet/tot/third_party/abseil-cpp/absl/base/
Dno_destructor.h139 absl::Nonnull<T*> get() { return impl_.get(); } in get() function
142 absl::Nonnull<const T*> get() const { return impl_.get(); } in get() function
150 absl::Nonnull<const T*> get() const { return &value_; } in get() function
151 absl::Nonnull<T*> get() { return &value_; } in get() function
163 absl::Nonnull<const T*> get() const { in get() function
166 absl::Nonnull<T*> get() { return Launder(reinterpret_cast<T*>(&space_)); } in get() function
/external/skia/modules/canvaskit/
Dcolor.js45 get: function() { return CanvasKit.Color4f(0, 0, 0, 0); } method
48 get: function() { return CanvasKit.Color4f(0, 0, 0, 1); } method
51 get: function() { return CanvasKit.Color4f(1, 1, 1, 1); } method
54 get: function() { return CanvasKit.Color4f(1, 0, 0, 1); } method
57 get: function() { return CanvasKit.Color4f(0, 1, 0, 1); } method
60 get: function() { return CanvasKit.Color4f(0, 0, 1, 1); } method
63 get: function() { return CanvasKit.Color4f(1, 1, 0, 1); } method
66 get: function() { return CanvasKit.Color4f(0, 1, 1, 1); } method
69 get: function() { return CanvasKit.Color4f(1, 0, 1, 1); } method
/external/apache-commons-io/src/test/java/org/apache/commons/io/input/
DBOMInputStreamTest.java211 …(BOMInputStream is1 = BOMInputStream.builder().setInputStream(createUtf8Input(data, true)).get()) { in skipReturnValueWithBom()
220 …BOMInputStream is2 = BOMInputStream.builder().setInputStream(createUtf8Input(data, false)).get()) { in skipReturnValueWithoutBom()
229 …try (InputStream in = BOMInputStream.builder().setInputStream(createUtf8Input(data, true)).get()) { in testAvailableWithBOM()
237 …ry (InputStream in = BOMInputStream.builder().setInputStream(createUtf8Input(data, false)).get()) { in testAvailableWithoutBOM()
256 …try (InputStream in = BOMInputStream.builder().setInputStream(createUtf8Input(data, true)).get()) { in testEmptyBufferWithBOM()
265 …ry (InputStream in = BOMInputStream.builder().setInputStream(createUtf8Input(data, false)).get()) { in testEmptyBufferWithoutBOM()
274 … (BOMInputStream in = BOMInputStream.builder().setInputStream(createUtf8Input(data, true)).get()) { in testGetBOMFirstThenRead()
288 …in = BOMInputStream.builder().setInputStream(createUtf8Input(data, true)).setInclude(true).get()) { in testGetBOMFirstThenReadInclude()
305 …try (InputStream in = BOMInputStream.builder().setInputStream(createUtf8Input(data, true)).get()) { in testLargeBufferWithBOM()
314 …ry (InputStream in = BOMInputStream.builder().setInputStream(createUtf8Input(data, false)).get()) { in testLargeBufferWithoutBOM()
[all …]
/external/sdv/vsomeip/third_party/boost/thread/include/boost/thread/
Dexternally_locked.hpp119 T& get(strict_lock<mutex_type>& lk) in get() function in boost::externally_locked
125 const T& get(strict_lock<mutex_type>& lk) const in get() function in boost::externally_locked
132 T& get(nested_strict_lock<Lock>& lk) in get() function in boost::externally_locked
140 const T& get(nested_strict_lock<Lock>& lk) const in get() function in boost::externally_locked
154 T& get(Lock& lk) in get() function in boost::externally_locked
258 T& get(strict_lock<mutex_type> const& lk) in get() function in boost::externally_locked
264 const T& get(strict_lock<mutex_type> const& lk) const in get() function in boost::externally_locked
271 T& get(nested_strict_lock<Lock> const& lk) in get() function in boost::externally_locked
279 const T& get(nested_strict_lock<Lock> const& lk) const in get() function in boost::externally_locked
293 T& get(Lock const& lk) in get() function in boost::externally_locked
[all …]
/external/perfetto/include/perfetto/protozero/
Dfield.h169 void get(bool* val) const { *val = as_bool(); } in get() function
170 void get(uint32_t* val) const { *val = as_uint32(); } in get() function
171 void get(int32_t* val) const { *val = as_int32(); } in get() function
172 void get(uint64_t* val) const { *val = as_uint64(); } in get() function
173 void get(int64_t* val) const { *val = as_int64(); } in get() function
174 void get(float* val) const { *val = as_float(); } in get() function
175 void get(double* val) const { *val = as_double(); } in get() function
176 void get(std::string* val) const { *val = as_std_string(); } in get() function
177 void get(ConstChars* val) const { *val = as_string(); } in get() function
178 void get(ConstBytes* val) const { *val = as_bytes(); } in get() function
[all …]
/external/eigen/bench/perf_monitoring/resources/
Ds2.js1 …s={},a.logs={},a.dom={},"undefined"!=typeof module&&"undefined"!=typeof exports&&"undefined"==type… argument
/external/kotlinx.coroutines/benchmarks/src/jmh/kotlin/benchmarks/flow/scrabble/
DShakespearePlaysScrabble.kt15 fun get(): Long { in play() method in benchmarks.flow.scrabble.ShakespearePlaysScrabble.MutableLong
31 fun get(): Long in get() method
35 override fun get(): Long = this@LongWrapper.get() + 1L in get() method
41 override fun get(): Long = this@LongWrapper.get() + other.get() in add() method
48 override fun get(): Long = 0L in zero() method
/external/javapoet/src/main/java/com/squareup/javapoet/
DTypeVariableName.java88 public static TypeVariableName get(String name) { in get() method in TypeVariableName
93 public static TypeVariableName get(String name, TypeName... bounds) { in get() method in TypeVariableName
98 public static TypeVariableName get(String name, Type... bounds) { in get() method in TypeVariableName
103 public static TypeVariableName get(TypeVariable mirror) { in get() method in TypeVariableName
115 static TypeVariableName get( in get() method in TypeVariableName
135 public static TypeVariableName get(TypeParameterElement element) { in get() method in TypeVariableName
148 public static TypeVariableName get(java.lang.reflect.TypeVariable<?> type) { in get() method in TypeVariableName
153 static TypeVariableName get(java.lang.reflect.TypeVariable<?> type, in get() method in TypeVariableName
/external/igt-gpu-tools/tests/
Dkms_getfb.c145 struct drm_mode_fb_cmd get = { .fb_id = 0 }; in test_handle_input() local
150 struct drm_mode_fb_cmd get = { .fb_id = add.fb_id }; in test_handle_input() local
162 struct drm_mode_fb_cmd get = { .fb_id = add.fb_id }; in test_handle_input() local
168 struct drm_mode_fb_cmd get = { .fb_id = get_any_prop_id(fd) }; in test_handle_input() local
193 struct drm_mode_fb_cmd get = { .fb_id = add.fb_id }; in test_duplicate_handles() local
214 struct drm_mode_fb_cmd get = { }; in test_duplicate_handles() local
/external/sdv/vsomeip/third_party/boost/container/bench/
Dbench_adaptive_node_pool.cpp92 { static const char *get() { return "StdAllocator"; } }; in get() function
95 { static const char *get() { return "AllocatorPlusV2"; } }; in get() function
98 { static const char *get() { return "AllocatorPlusV1"; } }; in get() function
101 { static const char *get() { return "AdPoolAlignOnlyV1"; } }; in get() function
104 { static const char *get() { return "AdPoolAlignOnlyV2"; } }; in get() function
107 { static const char *get() { return "AdPool2PercentV1"; } }; in get() function
110 { static const char *get() { return "AdPool2PercentV2"; } }; in get() function
113 { static const char *get() { return "SimpleSegregatedStorageV1"; } }; in get() function
116 { static const char *get() { return "SimpleSegregatedStorageV2"; } }; in get() function
/external/pytorch/aten/src/ATen/core/
Dtype.cpp170 AnyTypePtr AnyType::get() { in get() function in c10::AnyType
175 NumberTypePtr NumberType::get() { in get() function in c10::NumberType
179 IntTypePtr IntType::get() { in get() function in c10::IntType
183 FloatTypePtr FloatType::get() { in get() function in c10::FloatType
187 ComplexTypePtr ComplexType::get() { in get() function in c10::ComplexType
191 BoolTypePtr BoolType::get() { in get() function in c10::BoolType
195 StorageTypePtr StorageType::get() { in get() function in c10::StorageType
199 NoneTypePtr NoneType::get() { in get() function in c10::NoneType
203 GeneratorTypePtr GeneratorType::get() { in get() function in c10::GeneratorType
207 QuantizerTypePtr QuantizerType::get() { in get() function in c10::QuantizerType
[all …]
/external/python/google-api-python-client/samples/api-python-client-doc/
Dmain.py67 def get(self): member in MainHandler
79 def get(self): member in GadgetHandler
92 def get(self): member in EmbedHandler
105 def get(self, service_name, version, collection): member in ResourceHandler
/external/glide/library/src/main/java/com/bumptech/glide/manager/
DRequestManagerRetriever.java55 public static RequestManagerRetriever get() { in get() method in RequestManagerRetriever
81 public RequestManager get(Context context) { in get() method in RequestManagerRetriever
97 public RequestManager get(FragmentActivity activity) { in get() method in RequestManagerRetriever
107 public RequestManager get(Fragment fragment) { in get() method in RequestManagerRetriever
123 public RequestManager get(Activity activity) { in get() method in RequestManagerRetriever
141 public RequestManager get(android.app.Fragment fragment) { in get() method in RequestManagerRetriever

12345678910>>...178