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

1 2 3 4 5 6 7 8 9

  /ndk/sources/host-tools/make-3.81/
dep.h 21 `struct dep' in the chain returned by `read_all_makefiles'. */
32 dep line of static pattern rule or NULL.
36 struct dep struct
38 struct dep *next;
77 extern struct dep *alloc_dep PARAMS ((void));
78 extern void free_dep PARAMS ((struct dep *d));
79 extern struct dep *copy_dep_chain PARAMS ((const struct dep *d));
80 extern void free_dep_chain PARAMS ((struct dep *d));
82 extern struct dep *read_all_makefiles PARAMS ((char **makefiles))
    [all...]
rule.h 27 struct dep *deps; /* Dependencies of the rule. */
36 char *target, *dep, *commands; member in struct:pspec
58 struct dep *deps,
rule.c 20 #include "dep.h"
86 register struct dep *dep;
99 for (dep = rule->deps; dep != 0; dep = dep->next)
101 unsigned int len = strlen (dep->name);
104 char *p = strrchr (dep->name, ']');
107 p = strrchr (dep->name, ':')
84 register struct dep *dep; local
414 register struct dep *dep; local
    [all...]
implicit.c 22 #include "dep.h"
73 struct idep *next; /* struct dep -compatible interface */
265 struct dep *dep, *expl_d;
271 struct dep **d_ptr;
490 for (dep = rule->deps; dep != 0; dep = dep->next)
505 p = get_next_word (dep->name, &len)
263 struct dep *dep, *expl_d; local
    [all...]
default.c 23 #include "dep.h"
533 suffix_file->deps = (struct dep *)
534 multi_glob (parse_file_seq (&p, '\0', sizeof (struct dep), 1),
535 sizeof (struct dep));
misc.c 20 #include "dep.h"
491 /* Allocate a new `struct dep' with all fields initialized to 0. */
493 struct dep *
496 struct dep *d = (struct dep *) xmalloc (sizeof (struct dep));
497 bzero ((char *) d, sizeof (struct dep));
502 /* Free `struct dep' along with `name' and `stem'. */
505 free_dep (struct dep *d)
516 /* Copy a chain of `struct dep', making a new chai
    [all...]
  /build/tools/
java-layers.py 56 def recurse(obj, dep, visited):
58 if dep in visited:
60 % (dep.filename, dep.lineno))
66 visited.append(dep)
67 for upper in dep.uppers:
72 self.parts = [(dep.lower.split('.'),dep) for dep in deps.itervalues()]
74 for dep in deps.itervalues()
    [all...]
filter-product-graph.py 55 deps = [dep for dep in deps if dep[1] in included]
60 for dep in deps:
61 print '"%s" -> "%s"' % dep
  /external/e2fsprogs/lib/e2p/
iod.c 31 struct dirent *de, *dep; local
60 while ((dep = readdir (dir))) {
62 len = dep->d_reclen;
68 memcpy(de, dep, len);
  /external/chromium_org/tools/gn/
ninja_group_target_writer_unittest.cc 20 Target dep(setup.settings(), Label(SourceDir("//foo/"), "dep"));
21 dep.set_output_type(Target::ACTION);
22 dep.visibility().SetPublic();
23 dep.SetToolchain(setup.toolchain());
24 ASSERT_TRUE(dep.OnResolved(&err));
38 target.public_deps().push_back(LabelTargetPair(&dep));
50 "build obj/foo/bar.stamp: stamp obj/foo/dep.stamp obj/foo/dep2.stamp || obj/foo/datadep.stamp\n";
target.cc 208 const Target* dep = iter.target(); local
209 MergeAllDependentConfigsFrom(dep, &configs_, &all_dependent_configs_);
210 MergePublicConfigsFrom(dep, &configs_);
213 if (dep->output_type() == STATIC_LIBRARY ||
214 dep->output_type() == SHARED_LIBRARY ||
215 dep->output_type() == SOURCE_SET)
216 inherited_libraries_.push_back(dep);
220 if (!dep->IsFinal()) {
221 inherited_libraries_.Append(dep->inherited_libraries().begin(),
222 dep->inherited_libraries().end())
    [all...]
ninja_target_writer_unittest.cc 37 // Make a base target that's a hard dep (action).
72 OutputFile dep = local
75 EXPECT_EQ("obj/foo/base.inputdeps.stamp", dep.value());
85 OutputFile dep = local
88 EXPECT_EQ("obj/foo/target.inputdeps.stamp", dep.value());
94 // Input deps for action which should depend on the base since its a hard dep
99 OutputFile dep = local
102 EXPECT_EQ("obj/foo/action.inputdeps.stamp", dep.value());
133 OutputFile dep = local
136 EXPECT_EQ("obj/foo/target.inputdeps.stamp", dep.value())
    [all...]
  /external/chromium_org/third_party/libvpx/source/libvpx/
solution.mk 14 $(filter-out $(VPX_NONDEPS),$^), --dep=$(vcp:.$(VCPROJ_SFX)=):vpx)
20 --dep=vpx:obj_int_extract \
21 --dep=test_libvpx:gtest \
  /external/libvpx/libvpx/
solution.mk 14 $(filter-out $(VPX_NONDEPS),$^), --dep=$(vcp:.$(VCPROJ_SFX)=):vpx)
20 --dep=vpx:obj_int_extract \
21 --dep=test_libvpx:gtest \
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
solution.mk 14 $(filter-out $(VPX_NONDEPS),$^), --dep=$(vcp:.$(VCPROJ_SFX)=):vpx)
20 --dep=vpx:obj_int_extract \
21 --dep=test_libvpx:gtest \
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
myocamlbuild.ml 10 dep ["link"; "ocaml"; "use_bindings"] ["bindings.o"];;
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
myocamlbuild.ml 10 dep ["link"; "ocaml"; "use_bindings"] ["bindings.o"];;
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
myocamlbuild.ml 10 dep ["link"; "ocaml"; "use_bindings"] ["bindings.o"];;
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
myocamlbuild.ml 10 dep ["link"; "ocaml"; "use_bindings"] ["bindings.o"];;
  /external/chromium_org/tools/gyp/tools/
pretty_sln.py 26 for dep in deps[project]:
27 if dep not in built:
28 BuildProject(dep, built, projects, deps)
92 for dep in dependencies[project]:
95 if projects[project_info][1] == dep:
111 for dep in dep_list:
112 print " - %s" % dep
  /external/elfutils/0.153/src/
make-debug-archive.in 86 dep=/lib/modules/$release/modules.dep
95 if [ $force_kernel = no -a "$archive" -nt "$dep" ]; then
  /external/chromium_org/tools/gyp/pylib/gyp/generator/
dump_dependency_json.py 73 for dep in target_dicts[target].get('dependencies', []):
74 edges[target].append(dep)
75 targets_to_visit.append(dep)
  /external/qemu/distrib/sdl-1.2.15/build-scripts/
makedep.sh 28 do dep="$path/$file"
29 if test -f "$dep"; then
30 echo " $dep \\" >>$cache
31 search_deps $dep >>$cache
  /external/llvm/lib/Analysis/
MemDepPrinter.cpp 37 typedef std::pair<InstTypePair, const BasicBlock *> Dep;
38 typedef SmallSetVector<Dep, 4> DepSet;
63 static InstTypePair getInstTypePair(MemDepResult dep) {
64 if (dep.isClobber())
65 return InstTypePair(dep.getInst(), Clobber);
66 if (dep.isDef())
67 return InstTypePair(dep.getInst(), Def);
68 if (dep.isNonFuncLocal())
69 return InstTypePair(dep.getInst(), NonFuncLocal);
70 assert(dep.isUnknown() && "unexpected dependence type")
    [all...]
  /external/bluetooth/bluedroid/stack/mcap/
mca_api.c 238 p_depcs = p_rcb->dep;
287 tMCA_RESULT MCA_DeleteDep(tMCA_HANDLE handle, tMCA_DEP dep)
295 MCA_TRACE_API ("MCA_DeleteDep: %d dep:%d", handle, dep);
298 if (dep < MCA_NUM_DEPS && p_rcb->dep[dep].p_data_cback)
301 p_rcb->dep[dep].p_data_cback = NULL;
302 p_depcs = &(p_rcb->dep[dep])
    [all...]

Completed in 1390 milliseconds

1 2 3 4 5 6 7 8 9