Home
last modified time | relevance | path

Searched refs:build (Results 1 – 25 of 2064) sorted by relevance

12345678910>>...83

/external/stlport/doc/
Dbuild_system.txt1 The STLport build system
4 This is a basic overview of the STLport build system. At the moment, I'm only familiar
21 The whole build system lies under the build/ dir of the source tree. There, it first
22 branches to Makefiles/ (which contains the base of the build system) and to lib/ (which
23 contains files to build the STLport library) and test/ (which contains files to build
26 Under Makefiles/, you see the initially mentioned branching according to the build tool.
44 build/lib folder. From there, the following include tree is created:
46 build/lib/evc.mak
47 build/Makefiles/config.mak ; generated by configure.bat
48 build/Makefiles/nmake/top.mak
[all …]
/external/mdnsresponder/Clients/
DMakefile29 TARGETS = build/dns-sd build/dns-sd64
32 TARGETS = build/dns-sd
33 LIBS = -L../mDNSPosix/build/prod/ -ldns_sd
39 rm -rf build
41 build: target
42 mkdir build
44 build/dns-sd: build dns-sd.c ClientCommon.c
47 build/dns-sd64: build dns-sd.c ClientCommon.c
/external/webkit/Tools/Scripts/webkitpy/common/net/buildbot/
Dbuildbot_unittest.py44 build = Build(
51 build._layout_test_results = LayoutTestResults(results)
52 return build
61 regression_window = self.builder.find_regression_window(self.builder.build(10))
65 … regression_window = self.builder.find_regression_window(self.builder.build(10), look_back_limit=2)
71 regression_window = self.builder.find_regression_window(self.builder.build(10))
77 regression_window = self.builder.find_regression_window(self.builder.build(10))
83 regression_window = self.builder.find_regression_window(self.builder.build(10))
89 regression_window = self.builder.find_regression_window(self.builder.build(10))
95 regression_window = self.builder.find_regression_window(self.builder.build(10))
[all …]
Dbuildbot.py86 def build(self, build_number): member in Builder
93 build = self._fetch_build(build_number)
94 self._builds_cache[build_number] = build
95 return build
101 return self.build(latest_build_number)
154 build = self.build(build_number)
155 if not build and allow_failed_lookups:
157 build = Build(self,
162 return build
202 red_build = self.build(red_build_number)
[all …]
/external/dexmaker/src/test/java/com/google/dexmaker/stock/
DProxyBuilderTest.java43 SimpleClass proxy = proxyFor(SimpleClass.class).build(); in testExampleOperation()
63 .build(); in testConstruction_SucceedsIfCorrectArgumentsProvided()
70 proxyFor(ConstructorTakesArguments.class).build(); in testConstruction_FailsWithWrongNumberOfArguments()
79 proxyFor(MethodVisibilityClass.class).build(); in testClassIsNotAccessbile_FailsWithUnsupportedOperationException()
89 proxyFor(PrivateVisibilityClass.class).build(); in testPrivateClass_FailsWithUnsupportedOperationException()
101 assertEquals("fake result", proxyFor(ProtectedVisibilityClass.class).build().foo()); in testProtectedVisibility_WorksFine()
115 HasFinalMethod proxy = proxyFor(HasFinalMethod.class).build(); in testCanProxyClassesWithFinalMethods_WillNotCallTheFinalMethod()
127 assertEquals("expected", proxyFor(HasPrivateMethod.class).build().result()); in testProxyingPrivateMethods_NotIntercepted()
137 assertEquals("fake result", proxyFor(HasPackagePrivateMethod.class).build().result()); in testProxyingPackagePrivateMethods_AreIntercepted()
147 assertEquals("fake result", proxyFor(HasProtectedMethod.class).build().result()); in testProxyingProtectedMethods_AreIntercepted()
[all …]
/external/stlport/
Dconfigure.bat26 echo # STLport Configuration Tool for Windows > build\Makefiles\nmake\config.mak
27 echo # >> build\Makefiles\nmake\config.mak
28 echo # config.mak generated with command line: >> build\Makefiles\nmake\config.mak
29 echo # configure %1 %2 %3 %4 %5 %6 %7 %8 %9 >> build\Makefiles\nmake\config.mak
30 echo # >> build\Makefiles\nmake\config.mak
82 REM build without STLport
121 echo You must run the WCE*.BAT file you wish to build STLport for before
168 echo Use this option to add any compilation flag to the build system. For instance
186 echo Option specially targetting build of the unit tests project without STLport. This
191 echo Removes the build configuration file.
[all …]
/external/protobuf/java/src/test/java/com/google/protobuf/
DUnknownFieldSetTest.java71 UnknownFieldSet.Field.newBuilder().addVarint(1).build(); in getBizarroData()
73 UnknownFieldSet.Field.newBuilder().addFixed32(1).build(); in getBizarroData()
86 return bizarroFields.build().toByteString(); in getBizarroData()
156 TestEmptyMessage.newBuilder().mergeFrom(emptyMessage).build(); in testCopyFrom()
168 .addVarint(2).build()) in testMergeFrom()
171 .addVarint(4).build()) in testMergeFrom()
172 .build()) in testMergeFrom()
173 .build(); in testMergeFrom()
180 .addVarint(1).build()) in testMergeFrom()
183 .addVarint(3).build()) in testMergeFrom()
[all …]
DDynamicMessageTest.java60 Message message = builder.build(); in testDynamicMessageAccessors()
67 builder.build(); in testDoubleBuildError()
69 builder.build(); in testDoubleBuildError()
79 builder.build(); in testClearAfterBuildError()
101 Message message = builder.build(); in testDynamicMessageExtensionAccessors()
116 Message message = builder.build(); in testDynamicMessageRepeatedSetters()
130 DynamicMessage.newBuilder(TestAllTypes.getDescriptor()).build()); in testDynamicMessageDefaults()
139 Message dynamicMessage = dynamicBuilder.build(); in testDynamicMessageSerializedSize()
149 Message message = builder.build(); in testDynamicMessageSerialization()
163 TestAllTypes message = builder.build(); in testDynamicMessageParsing()
[all …]
DGeneratedMessageTest.java74 TestAllTypes message = builder.build(); in testAccessors()
80 builder.build(); in testDoubleBuildError()
82 builder.build(); in testDoubleBuildError()
91 builder.build(); in testClearAfterBuildError()
170 TestAllTypes message = builder.build(); in testRepeatedSetters()
196 TestAllTypes.NestedMessage.newBuilder().setBb(218).build()); in testRepeatedSettersRejectNull()
198 TestAllTypes.NestedMessage.newBuilder().setBb(456).build()); in testRepeatedSettersRejectNull()
230 ForeignMessage.newBuilder().setC(12).build(); in testRepeatedAppend()
233 TestAllTypes message = builder.build(); in testRepeatedAppend()
245 ForeignMessage.newBuilder().setC(12).build(); in testRepeatedAppendRejectsNull()
[all …]
/external/elfutils/tests/
Drun-allfcts.sh32 /home/drepper/gnu/new-bu/build/ttt/m.c:5:main
33 /home/drepper/gnu/new-bu/build/ttt/b.c:4:bar
34 /home/drepper/gnu/new-bu/build/ttt/f.c:3:foo
38 /home/drepper/gnu/elfutils/build/src/../../src/strip.c:107:main
39 /home/drepper/gnu/elfutils/build/src/../../src/strip.c:159:print_version
40 /home/drepper/gnu/elfutils/build/src/../../src/strip.c:173:parse_opt
41 /home/drepper/gnu/elfutils/build/src/../../src/strip.c:201:more_help
42 /home/drepper/gnu/elfutils/build/src/../../src/strip.c:217:process_file
44 /home/drepper/gnu/elfutils/build/src/../../src/strip.c:291:crc32_file
45 /home/drepper/gnu/elfutils/build/src/../../src/strip.c:313:handle_elf
Drun-line2addr.sh32 f.c:4 -> 0x804846b (/home/drepper/gnu/new-bu/build/ttt/f.c:4)
41 strip.c:953 -> (.text)+0x169f (/home/drepper/gnu/elfutils/build/src/../../src/strip.c:953)
42 strip.c:953 -> (.text)+0x16aa (/home/drepper/gnu/elfutils/build/src/../../src/strip.c:953)
43 strip.c:365 -> (.text)+0x278b (/home/drepper/gnu/elfutils/build/src/../../src/strip.c:365)
44 strip.c:365 -> (.text)+0x2797 (/home/drepper/gnu/elfutils/build/src/../../src/strip.c:365)
48 v.c:6 -> 0x400468 (/home/drepper/local/elfutils-build/20050425/v.c:6)
49 v.c:6 -> 0x400487 (/home/drepper/local/elfutils-build/20050425/v.c:6)
53 foo.c:2 -> (.init.text)+0xc (/home/roland/stock-elfutils-build/foo.c:2)
54 foo.c:6 -> (.text)+0xc (/home/roland/stock-elfutils-build/foo.c:6)
/external/webkit/Tools/wx/packaging/debian/
Drules8 build: build-stamp
9 build-stamp: $(PYVERS:%=build-python%)
11 build-python%:
15 rm -rf *-stamp build-python* build
21 install: build-stamp install-prereq $(PYVERS:%=install-python%) install-libs install-nover
23 install-prereq: build-stamp
44 (cd Tools/Scripts && ./build-webkit --wx --makeargs="--wxpython")
75 .PHONY: build clean binary-indep binary-arch binary install install-nover install-prereq install-li…
/external/emma/
DBUILD.txt5 - JDK1.4 (the build will not work in JDK1.5)
6 - Apache ANT 1.5+ (official build uses v1.6.1)
11 - cd into the directory containing build.xml and create a file
12 "build.properties" that tells the build where your JDK and ANT are located:
18 build.target.j2se.14.home = <JDK 1.4 install>/jre
23 build.target.ant.15.home = <ANT 1.5 install dir>
25 - From the directory containing build.xml, execute:
29 - After a successful build, EMMA jars will be located in
33 - To remove all generated build artifacts and reset the build to a clean
/external/libvpx/nestegg/docs/
DMakefile.am1 doc_DATA = doxygen-build.stamp
6 doxygen-build.stamp: Doxyfile
8 touch doxygen-build.stamp
10 doxygen-build.stamp:
12 touch doxygen-build.stamp
26 install-data-local: doxygen-build.stamp
37 if test -f doxygen-build.stamp; then rm -f doxygen-build.stamp; fi
/external/webkit/Tools/Scripts/webkitpy/tool/commands/
Dqueries.py145 red_build = builder.build(builder_status["build_number"])
156 if (regression_window.failing_build() == builder.build(builder_status["build_number"])):
200 build = builder.build_for_revision(args[0], allow_failed_lookups=True)
201 self._print_layout_test_results(build.layout_test_results())
227 build = builder.build_for_revision(revision_to_test, allow_failed_lookups=True)
228 layout_test_results = build.layout_test_results()
235 last_build_with_results = build
243 build = new_build
244 latest_results = build.layout_test_results()
246 print "No results build %s (r%s)" % (build._number, build.revision())
[all …]
/external/llvm/cmake/modules/
DChooseMSVCCRT.cmake9 # override that for each build type:
29 # Find the selected-by-CMake CRT for each build type, if any.
64 string(TOUPPER "${build_type}" build)
65 if (NOT LLVM_USE_CRT_${build})
66 get_current_crt(LLVM_USE_CRT_${build}
68 CMAKE_CXX_FLAGS_${build})
69 set(LLVM_USE_CRT_${build}
70 "${LLVM_USE_CRT_${build}}"
73 set_property(CACHE LLVM_USE_CRT_${build}
75 endif(NOT LLVM_USE_CRT_${build})
[all …]
/external/bluetooth/glib/debian/
Drules7 build: build-stamp target
8 build-stamp:
12 touch build-stamp
14 build-dbg: build-dbg-stamp
15 build-dbg-stamp:
19 touch build-dbg-stamp
24 rm -f build-stamp build-dbg-stamp install-stamp install-dbg-stamp
34 rm -f build-stamp build-dbg-stamp install-stamp install-dbg-stamp
42 install-stamp: build
50 install-dbg-stamp: build-dbg
[all …]
/external/v8/build/
DREADME.txt2 for different build systems.
5 based build system.
10 $ svn co http://gyp.googlecode.com/svn/trunk build/gyp
19 $ build/gyp_v8
21 This will build makefiles for ia32, x64 and the ARM simulator with names
24 To build and run for ia32 in debug and release version do:
31 Change the makefile to build and run for the other architectures.
37 $ build/gyp_v8
39 This will make an Xcode project for the ia32 architecture. To build and run do:
41 $ xcodebuild -project build/all.xcodeproj
[all …]
/external/libpng/projects/visualc71/
DREADME_zlib.txt19 3) Set one of the project as the StartUp project. If you just want to build the
21 Project | Set as StartUp project). If you want to build and test the
23 Set as StartUp project), If you want to build the minigzip utility set it to
28 Choose the configuration you wish to build.
36 * Win32_DLL_Release\zlib1.dll DLL build
37 * Win32_DLL_Debug\zlib1d.dll DLL build (debug version)
38 * Win32_DLL_ASM_Release\zlib1.dll DLL build using ASM code
39 * Win32_DLL_ASM_Debug\zlib1d.dll DLL build using ASM code (debug version)
40 * Win32_LIB_Release\zlib.lib static build
41 * Win32_LIB_Debug\zlibd.lib static build (debug version)
[all …]
/external/chromium/sdch/open-vcdiff/packages/deb/
Drules42 …CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,-z,defs" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUI…
45 build: build-stamp target
46 build-stamp: config.status
52 touch build-stamp
57 rm -f build-stamp
71 install: build
82 binary-indep: build install
86 binary-arch: build install
118 .PHONY: build clean binary-indep binary-arch binary install
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/componentScripts/
Dbuild.properties12 # Parameters describing how and where to execute the build.
16 # configs - the list of {os, ws, arch} configurations to build.
28 # The CVS tag to use when fetching elements to build. By default the
31 # For example, when doing a nightly build out of HEAD,
36 # The absolute path to a working directory where the source for the build
38 # of the build will be located. On Windows systems, the path length should not
41 buildDirectory=c:\build
45 # Type of build. Used in naming the build output. Typically this value is
51 # ID of the build. Used in naming the build output.
56 # Label for the build. Used in naming the build output
[all …]
/external/v8/
DMakefile121 GYPFILES = build/all.gyp build/common.gypi build/standalone.gypi \
214 build/gyp/gyp --generator-output="$(OUTDIR)" build/all.gyp \
219 build/gyp/gyp --generator-output="$(OUTDIR)" build/all.gyp \
223 $(OUTDIR)/Makefile-arm: $(GYPFILES) $(ENVFILE) build/armu.gypi
224 build/gyp/gyp --generator-output="$(OUTDIR)" build/all.gyp \
228 $(OUTDIR)/Makefile-mips: $(GYPFILES) $(ENVFILE) build/mipsu.gypi
229 build/gyp/gyp --generator-output="$(OUTDIR)" build/all.gyp \
234 build/gyp/gyp --generator-output="$(OUTDIR)" build/all.gyp \
237 $(OUTDIR)/Makefile-android: $(GYPFILES) $(ENVFILE) build/android.gypi \
240 build/gyp/gyp --generator-output="$(OUTDIR)" build/all.gyp \
[all …]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.pde.build_3.6.1.R36x_v20100823/META-INF/
DMANIFEST.MF4 Bundle-SymbolicName: org.eclipse.pde.build;singleton:=true
6 ipse:pde/build/org.eclipse.pde.build;tag=R36x_v20100823
7 Bundle-Activator: org.eclipse.pde.internal.build.BuildActivator
17 Export-Package: org.eclipse.pde.build,org.eclipse.pde.internal.build;x
19 unching",org.eclipse.pde.internal.build.ant;x-internal:=true,org.ecli
20 pse.pde.internal.build.builder;x-internal:=true,org.eclipse.pde.inter
21 nal.build.fetch;x-internal:=true,org.eclipse.pde.internal.build.packa
22 ger;x-friends:="org.eclipse.pde.core",org.eclipse.pde.internal.build.
23 properties;x-internal:=true,org.eclipse.pde.internal.build.site;x-fri
25 nal.build.site.compatibility;x-internal:=true,org.eclipse.pde.interna
[all …]
/external/zlib/old/visualc6/
DREADME.txt10 * Win32_DLL_Release\zlib1.dll DLL build
11 * Win32_DLL_Debug\zlib1d.dll DLL build (debug version)
12 * Win32_DLL_ASM_Release\zlib1.dll DLL build using ASM code
13 * Win32_DLL_ASM_Debug\zlib1d.dll DLL build using ASM code (debug version)
14 * Win32_LIB_Release\zlib.lib static build
15 * Win32_LIB_Debug\zlibd.lib static build (debug version)
16 * Win32_LIB_ASM_Release\zlib.lib static build using ASM code
17 * Win32_LIB_ASM_Debug\zlibd.lib static build using ASM code (debug version)
24 To build and test:
30 Choose the configuration you wish to build.
[all …]
/external/antlr/antlr-3.4/runtime/Python/
Dmkdoxy.sh7 rm -fr build/doc
8 mkdir -p build/doc/antlr3
12 >>build/doc/antlr3.py
15 touch build/doc/antlr3/__init__.py
17 cp -f antlr3/tree.py build/doc/antlr3
18 cp -f antlr3/treewizard.py build/doc/antlr3

12345678910>>...83