HomeSort by relevance Sort by last modified time
    Searched defs:Build (Results 1 - 25 of 215) sorted by null

1 2 3 4 5 6 7 8 9

  /external/devlib/devlib/utils/
android_build.py 24 class Build(object):
26 Collection of Android related build actions
32 te._log.warning('Build initialization failed: invalid paramterers')
42 Build a module and its dependencies.
51 self.exec_cmd('source build/envsetup.sh && lunch ' +
  /external/tensorflow/tensorflow/core/profiler/internal/
tfprof_tensor.cc 35 void TFProfTensor::Build() {
  /external/desugar/test/java/com/google/devtools/build/android/desugar/mocked_android_framework/android/os/
Build.java 16 /** This class is a standin for android.os.Build for tests running in a JVM */
17 public final class Build {
21 /** A simple mock for the real android.os.Build.VERSION */
  /external/objenesis/main/src/test/java/android/os/
Build.java 23 public class Build {
  /cts/hostsidetests/appsecurity/test-apps/AccessSerialLegacy/src/android/os/cts/
AccessSerialLegacyTest.java 22 import android.os.Build;
31 // Build.SERIAL should provide the device serial for legacy apps.
34 assertTrue("Build.SERIAL must be visible to legacy apps",
35 !Build.UNKNOWN.equals(Build.SERIAL));
39 Build.getSerial();
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
HttpUtilities.h 36 The Build() function is used to manage the headers portion of an
118 EFI_HTTP_UTILS_BUILD Build;
  /prebuilts/go/darwin-x86/doc/codewalk/
markov.go 86 // Build reads text from the provided Reader and
88 func (c *Chain) Build(r io.Reader) {
127 c.Build(os.Stdin) // Build chains from standard input.
  /prebuilts/go/linux-x86/doc/codewalk/
markov.go 86 // Build reads text from the provided Reader and
88 func (c *Chain) Build(r io.Reader) {
127 c.Build(os.Stdin) // Build chains from standard input.
  /build/soong/ui/build/
build.go 15 package build package
43 build {{.CombinedNinjaFile}}: phony {{.SoongNinjaFile}}
107 cmd := Command(ctx, config, "help.sh", "build/make/help.sh")
114 // Build the tree. The 'what' argument can be used to chose which components of
115 // the build to run.
116 func Build(ctx Context, config Config, what int) {
117 ctx.Verboseln("Starting build with args:", config.Arguments())
  /cts/hostsidetests/appsecurity/test-apps/AccessSerialModern/src/android/os/cts/
AccessSerialModernTest.java 22 import android.os.Build;
33 // Build.SERIAL should not provide the device serial for modern apps.
36 assertTrue("Build.SERIAL must not work for modern apps",
37 Build.UNKNOWN.equals(Build.SERIAL));
41 Build.getSerial();
50 // Build.SERIAL should not provide the device serial for modern apps.
51 assertTrue("Build.SERIAL must not work for modern apps",
52 Build.UNKNOWN.equals(Build.SERIAL))
    [all...]
  /cts/hostsidetests/usb/SerialTestApp/src/com/android/cts/usb/serialtest/
UsbSerialTest.java 19 import android.os.Build;
27 * Device test which reads Build.SERIAL and just print it.
35 Log.e(TAG, Build.getSerial());
40 Build.getSerial();
  /external/clang/lib/Analysis/
CFGStmtMap.cpp 78 CFGStmtMap *CFGStmtMap::Build(CFG *C, ParentMap *PM) {
  /external/sfntly/cpp/src/sfntly/table/
table_based_table_builder.cc 43 CALLER_ATTACH FontDataTable* TableBasedTableBuilder::Build() {
  /external/tensorflow/tensorflow/compiler/xla/service/gpu/
buffer_allocations.cc 41 StatusOr<std::unique_ptr<BufferAllocations>> BufferAllocations::Builder::Build(
hlo_schedule.cc 189 StatusOr<std::unique_ptr<HloSchedule>> HloSchedule::Build(
  /external/tensorflow/tensorflow/core/framework/
kernel_def_builder.cc 29 DCHECK(kernel_def_ == nullptr) << "Did not call Build()";
69 const KernelDef* KernelDefBuilder::Build() {
  /external/toolchain-utils/
build_tc.py 6 """Script to build the ChromeOS toolchain.
66 def Build(self):
93 build_suffix = 'build-%s' % self._ctarget
100 # Create a -build directory for the objects.
222 help='Build a compiler with specified CFLAGS')
227 help='Build a compiler with specified CXXFLAGS')
232 help='Build the target libraries with specified flags')
237 help='Build the target libraries with specified flags')
242 help='Build a compiler with specified LDFLAGS')
249 help='Build a compiler with -g3 -O0 appended to both
    [all...]
  /external/toolchain-utils/crosperf/
experiment.py 137 def Build(self):
  /system/core/libbacktrace/
UnwindMap.cpp 71 bool UnwindMapRemote::Build() {
133 bool UnwindMapLocal::Build() {
UnwindStackMap.cpp 34 bool UnwindStackMap::Build() {
126 bool UnwindStackOfflineMap::Build() {
130 bool UnwindStackOfflineMap::Build(const std::vector<backtrace_map_t>& backtrace_maps) {
175 if (!map->Build()) {
187 if (!map->Build(maps)) {
  /art/libdexfile/dex/
compact_offset_table.cc 63 void CompactOffsetTable::Build(const std::vector<uint32_t>& offsets,
67 CompactOffsetTable::Build(offsets, out_data, &out_offsets[0], &out_offsets[1]);
74 void CompactOffsetTable::Build(const std::vector<uint32_t>& offsets,
  /build/blueprint/
ninja_writer.go 106 func (n *ninjaWriter) Build(comment string, rule string, outputs, implicitOuts,
123 wrapper.WriteString("build")
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py2/
commands.py 29 from distutils.command import build as _build
45 'build': 'Build',
201 Build C extension - with extended functionality
214 The extension to build. If it's a pure
250 class Build(_build.build):
254 _build.build.initialize_options(self)
255 if _option_defaults.has_key('build'):
256 for opt_name, default in _option_defaults['build']
    [all...]
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py3/
commands.py 30 from distutils.command import build as _build
44 'build': 'Build',
200 Build C extension - with extended functionality
213 The extension to build. If it's a pure
249 class Build(_build.build):
253 _build.build.initialize_options(self)
254 if 'build' in _option_defaults:
255 for opt_name, default in _option_defaults['build']
    [all...]
  /external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py2/
commands.py 29 from distutils.command import build as _build
45 'build': 'Build',
201 Build C extension - with extended functionality
214 The extension to build. If it's a pure
250 class Build(_build.build):
254 _build.build.initialize_options(self)
255 if _option_defaults.has_key('build'):
256 for opt_name, default in _option_defaults['build']
    [all...]

Completed in 638 milliseconds

1 2 3 4 5 6 7 8 9