Home
last modified time | relevance | path

Searched refs:add_object (Results 1 – 17 of 17) sorted by relevance

/external/harfbuzz_ng/src/
Dtest-repacker.cc49 static unsigned add_object(const char* tag, in add_object() function
162 return add_object ((char*) coverage, 8, c); in add_coverage()
177 return add_object ((char*) coverage, 10, c); in add_coverage()
358 base_anchors[i] = add_object ((char*) &anchor_buffers[i], 100, c); in MarkBasePosBuffers()
367 mark_anchors[i] = add_object ((char*) &anchor_buffers[i], 4, c); in MarkBasePosBuffers()
490 unsigned obj_1 = add_object ("ghi", 3, c); in populate_serializer_simple()
491 unsigned obj_2 = add_object ("def", 3, c); in populate_serializer_simple()
507 unsigned obj_1 = add_object (large_string.c_str(), 10000, c); in populate_serializer_with_overflow()
508 unsigned obj_2 = add_object (large_string.c_str(), 20000, c); in populate_serializer_with_overflow()
509 unsigned obj_3 = add_object (large_string.c_str(), 50000, c); in populate_serializer_with_overflow()
[all …]
/external/fonttools/Lib/fontTools/misc/plistlib/
D__init__.py224 def add_object(self, value: PlistEncodable) -> None: member in PlistTarget
251 self.add_object(d)
269 self.add_object(a)
278 self.add_object(True)
282 self.add_object(False)
286 self.add_object(int(self.get_data()))
290 self.add_object(float(self.get_data()))
294 self.add_object(self.get_data())
299 self.add_object(b64decode(self.get_data()))
301 self.add_object(Data.fromBase64(self.get_data()))
[all …]
/external/mesa3d/src/gallium/auxiliary/hud/
Dhud_cpufreq.c166 add_object(const char *name, const char *fn, int objmode, int cpu_index) in add_object() function
233 add_object(dp->d_name, fn, CPUFREQ_MINIMUM, cpu_index); in hud_get_num_cpufreq()
236 add_object(dp->d_name, fn, CPUFREQ_CURRENT, cpu_index); in hud_get_num_cpufreq()
239 add_object(dp->d_name, fn, CPUFREQ_MAXIMUM, cpu_index); in hud_get_num_cpufreq()
Dhud_diskstat.c226 add_object(const char *basename, const char *name, int objmode) in add_object() function
284 add_object(basename, dp->d_name, DISKSTAT_RD); in hud_get_num_disks()
285 add_object(basename, dp->d_name, DISKSTAT_WR); in hud_get_num_disks()
/external/tensorflow/tensorflow/lite/delegates/gpu/gl/compiler/
Dshader_codegen.cc45 const auto add_object = [&](const std::string& name, Object&& object) { in Build() local
67 RETURN_IF_ERROR(add_object(object.first, std::move(object.second))); in Build()
85 add_object(absl::StrCat("input_data_", index++), std::move(input))); in Build()
90 add_object(absl::StrCat("output_data_", index++), std::move(output))); in Build()
/external/python/cpython3/Lib/
Dplistlib.py200 def add_object(self, value): member in _PlistParser
225 self.add_object(d)
242 self.add_object(a)
249 self.add_object(True)
252 self.add_object(False)
257 self.add_object(int(raw, 16))
259 self.add_object(int(raw))
262 self.add_object(float(self.get_data()))
265 self.add_object(self.get_data())
268 self.add_object(_decode_base64(self.get_data()))
[all …]
/external/python/pyfakefs/pyfakefs/tests/
Dfake_filesystem_test.py291 self.filesystem.add_object(self.root_name, self.fake_file)
296 self.filesystem.add_object(self.root_name, self.fake_file)
333 self.filesystem.add_object(self.root_name, self.fake_file)
337 self.filesystem.add_object(self.root_name, self.fake_file)
343 self.filesystem.add_object(self.root_name, self.fake_file)
353 self.filesystem.add_object(self.root_name, self.fake_file)
358 self.filesystem.add_object(self.root_name, self.fake_child)
359 self.filesystem.add_object(self.fake_child.name, self.fake_file)
366 self.filesystem.add_object(self.root_name, self.fake_file)
368 self.filesystem.add_object(self.fake_file.name, self.fake_file)
[all …]
/external/autotest/frontend/tko/
Drpc_interface.py334 return models.TestLabel.add_object(name=name, description=description).id
410 return models.SavedQuery.add_object(owner=owner, name=name,
/external/autotest/frontend/afe/
Dmodels_test.py131 host2 = models.Host.add_object(hostname='othost')
142 label = models.Label.add_object(name='board:test')
Drpc_interface.py151 label = models.Label.add_object(name=name, **kwargs)
334 return models.Host.add_object(hostname=hostname, status=status,
753 return models.Profiler.add_object(name=name, description=description).id
779 group = models.AclGroup.add_object(name=name, description=description)
2157 shard = models.Shard.add_object(hostname=hostname)
Dmodel_logic.py676 def add_object(cls, data={}, **kwargs): member in ModelExtensions
Dmodels.py1613 job = cls.add_object(
/external/python/pybind11/tests/
Dtest_class.cpp229 m.add_object("implicitly_convert_variable_fail", [&] { in TEST_SUBMODULE()
/external/tensorflow/tensorflow/lite/delegates/gpu/gl/
Dserialization.cc367 builder.add_object(object_variant); in AddProgram()
/external/python/pyfakefs/pyfakefs/
Dfake_filesystem.py2175 def add_object(self, file_path: AnyStr, file_object: AnyFile) -> None: member in FakeFilesystem
2748 self.add_object(parent_directory, file_object)
2878 self.add_object(new_parent_directory, old_file)
2993 self.add_object(
3286 Deprecator.add(FakeFilesystem, FakeFilesystem.add_object, 'AddObject')
4661 self.filesystem.add_object(head, FakeFile(
/external/python/pybind11/docs/advanced/
Dmisc.rst204 m.add_object("_cleanup", py::capsule(cleanup_callback));
/external/python/pybind11/include/pybind11/
Dpybind11.h966 add_object(name_, func, true /* overwrite */); in def()
1013 PYBIND11_NOINLINE void add_object(const char *name, handle obj, bool overwrite = false) {