HomeSort by relevance Sort by last modified time
    Searched refs:projects (Results 1 - 25 of 486) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/jemalloc/
.gitignore 68 /msvc/projects/*/*/Debug*/
69 /msvc/projects/*/*/Release*/
70 /msvc/projects/*/*/Win32/
71 /msvc/projects/*/*/x64/
  /external/kmod/
README.md 3 [![Build Status](https://semaphoreci.com/api/v1/projects/29d989ba-0f70-4006-be21-550f6692b73b/449920/shields_badge.svg)](https://semaphoreci.com/lucasdemarchi/kmod)<br/>
4 [![Coverity Scan Status](https://scan.coverity.com/projects/2096/badge.svg)](https://scan.coverity.com/projects/2096)
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
ClearLintMarkersAction.java 38 List<IProject> projects = RunLintAction.getProjects(mSelection, false /*warn*/); local
39 if (projects != null) {
41 EclipseLintClient.clearMarkers(projects);
RunLintAction.java 55 * Action which runs Lint on the currently projects (and also provides a
56 * pulldown menu in the toolbar for selecting specifically which projects to
72 List<IProject> projects = getProjects(mSelection, true /* warn */); local
74 if (!projects.isEmpty()) {
75 EclipseLintRunner.startLint(projects, null, null, false /*fatalOnly*/, true /*show*/);
81 List<IProject> projects = AdtUtils.getSelectedProjects(selection); local
83 if (projects.isEmpty() && warn) {
88 return projects;
114 LintMenuAction allAction = new LintMenuAction("Check All Projects", allIcon,
119 IJavaProject[] projects = AdtUtils.getOpenAndroidProjects() local
    [all...]
LintViewPart.java 120 * Initial projects to show: this field is only briefly not null during the
188 // No supplied context: show lint warnings for all projects
191 List<IResource> projects = new ArrayList<IResource>(); local
193 projects.add(project.getProject());
195 mLintView.setResources(projects);
597 Set<IProject> projects = new HashSet<IProject>(); local
599 projects.add(resource.getProject());
601 if (projects.size() > 0) {
602 for (IProject project : projects) {
631 * @param projects the projects to show lint warnings fo
    [all...]
  /external/llvm/utils/release/
export.sh 17 projects="llvm cfe test-suite compiler-rt libcxx libcxxabi clang-tools-extra polly lldb lld openmp libunwind"
40 for proj in $projects; do
test-release.sh 207 # Projects list
208 projects="llvm cfe clang-tools-extra"
210 projects="$projects compiler-rt"
213 projects="$projects libcxx libcxxabi"
215 projects="$projects libunwind"
220 projects="$projects test-suite
    [all...]
tag.sh 20 projects="llvm cfe test-suite compiler-rt libcxx libcxxabi clang-tools-extra polly lldb lld openmp libunwind"
40 for proj in $projects; do
58 for proj in $projects ; do
  /external/google-benchmark/
.travis-libcxx-setup.sh 10 git clone --depth=1 https://github.com/llvm-mirror/libcxx.git llvm-source/projects/libcxx
11 git clone --depth=1 https://github.com/llvm-mirror/libcxxabi.git llvm-source/projects/libcxxabi
  /prebuilts/android-emulator/
update_emulator.sh 16 /google/data/ro/projects/android/fetch_artifact --bid $build --target sdk_tools_linux "$linux_zip"
23 /google/data/ro/projects/android/fetch_artifact --bid $build --target sdk_tools_mac "$mac_zip"
  /developers/samples/android/
compileSamples.sh 17 parallel --joblog emit.log --max-procs 8 --retries 5 -a projects.txt ./emitSample.sh
  /packages/apps/Calendar/
mkprojectfile 10 <projects>
11 </projects>
  /sdk/eclipse/plugins/com.android.ide.eclipse.pdt/src/com/android/ide/eclipse/pdt/internal/
DevTreeProjectProvider.java 48 List<IProject> projects = Arrays.asList(workspace.getRoot().getProjects()); local
49 if (projects.size() == 0) {
60 // filter the list of projects in workspace by 2 conditions:
61 // 1. Only look at Java projects
62 // 2. If dev tree location is set, only look at projects within the dev tree
64 List<IProject> devTreeProjects = new ArrayList<IProject>(projects.size());
66 for (IProject p: projects) {
  /external/e2fsprogs/lib/ext2fs/tdb/
build-tdb 6 #BASE_DIR=/usr/projects/samba/samba-4.0.0tp4/source/lib/tdb
7 BASE_DIR=/usr/projects/samba/tdb
  /prebuilts/ndk/r13/sources/third_party/shaderc/utils/
update_build_version.py 109 projects = ['shaderc', 'spirv-tools', 'glslang']
112 for (p, d) in zip(projects, sys.argv[1:])
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/project/
LibraryClasspathContainerInitializer.java 75 * @param androidProjects the projects to update.
81 // container id for each projects.
107 * @param androidProjects the projects to update.
110 public static boolean updateProject(List<ProjectState> projects) {
111 List<IJavaProject> javaProjectList = new ArrayList<IJavaProject>(projects.size());
112 for (ProjectState p : projects) {
161 * - Java project output (those can be indirectly referenced through library projects
162 * or other other Java projects)
165 * + inside the library projects' libs/
166 * + inside the referenced Java projects' classpat
    [all...]
AndroidClasspathContainerPage.java 182 IProject[] projects = ResourcesPlugin.getWorkspace().getRoot().getProjects(); local
183 final String[] names = new String[projects.length];
184 for (int i = 0; i < projects.length; i++) {
185 names[i] = projects[i].getName();
AndroidClasspathContainerInitializer.java 124 * @param androidProjects the projects to update.
130 // container id for each projects.
134 // the projects.
574 * Checks the projects' caches. If the cache was valid, the project is removed from the list.
575 * @param projects the list of projects to check.
577 public static void checkProjectsCache(ArrayList<IJavaProject> projects) {
580 projectLoop: while (i < projects.size()) {
581 IJavaProject javaProject = projects.get(i);
588 projects.remove(i)
    [all...]
  /external/autotest/site_utils/
pubsub_utils.py 63 resp = pubsub.projects().topics().publish(topic=topic,
  /external/autotest/utils/
compile_gwt_clients.py 29 """List projects in _DEFAULT_APP_DIR."""
31 projects = {}
33 projects[project] = []
37 projects[project].append(file[:-8])
38 return projects
121 """Compile all projects available as defined by enumerate_projects.
135 logging.info('Projects that can be compiled:')
145 parser.add_option('-l', '--list-projects',
148 help='List all projects and clients that can be compiled')
152 help='Compile all available projects and clients'
    [all...]
  /external/flatbuffers/android/jni/
Android.mk 22 # Empty static library so that other projects can include just the basic
33 # for projects that want richer functionality.
  /external/swiftshader/third_party/LLVM/utils/release/
test-release.sh 21 projects="llvm cfe dragonegg test-suite"
149 for proj in $projects ; do
163 for proj in $projects ; do
176 cd $BuildDir/llvm.src/projects
  /external/fonttools/
README.md 3 Quoting from [TTX/FontTools Sourceforge Project](http://sourceforge.net/projects/fonttools/)
  /external/libexif/
libexif.spec 6 Url: http://sourceforge.net/projects/libexif/
  /external/toolchain-utils/cwp/
demo_pipeline.sh 24 MR_CONVERT_BINARY=/home/build/static/projects/dremel/mr-convert

Completed in 581 milliseconds

1 2 3 4 5 6 7 8 91011>>