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

1 2

  /hardware/msm7k/libgralloc-qsd8k/
gpu.h 35 class Deps {
38 virtual ~Deps();
52 gpu_context_t(Deps& deps, PmemAllocator& pmemAllocator,
71 Deps& deps; member in class:gpu_context_t
pmemalloc.h 53 class Deps {
65 virtual ~Deps();
83 PmemUserspaceAllocator(Deps& deps, Deps::Allocator& allocator, const char* pmemdev);
109 Deps& deps; member in class:PmemUserspaceAllocator
110 Deps::Allocator& allocator;
128 class Deps {
131 virtual ~Deps();
156 Deps& deps; member in class:PmemKernelAllocator
    [all...]
  /ndk/sources/host-tools/make-3.81/
rule.h 27 struct dep *deps; /* Dependencies of the rule. */ member in struct:rule
58 struct dep *deps,
filedef.h 31 struct dep *deps; /* all dependencies, including duplicates */ member in struct:file
81 unsigned int updating:1; /* Nonzero while updating deps of this file */
201 /* Have we snapped deps yet? */
implicit.c 36 after modifying FILE to contain the appropriate commands and deps,
188 FILE. If a rule is found, the appropriate commands and deps are put in FILE
222 struct idep* deps = 0;
312 /* If the pattern rule has deps but no commands, ignore it.
314 if (rule->deps != 0 && rule->cmds == 0)
403 if (rule->deps == 0 && rule->cmds == 0)
439 and chain them in DEPS. */
490 for (dep = rule->deps; dep != 0; dep = dep->next)
594 id_ptr = &deps;
658 for (d = deps; d != 0; d = d->next
220 struct idep* deps = 0; local
    [all...]
rule.c 99 for (dep = rule->deps; dep != 0; dep = dep->next)
134 /* In the deps of an implicit rule the `changed' flag
161 If SOURCE is nil, it means there should be no deps. */
168 struct dep *deps;
199 deps = 0;
207 deps = alloc_dep ();
208 deps->name = depname;
211 create_pattern_rule (names, percents, 0, deps, cmds, 0);
229 for (d = suffix_file->deps; d != 0; d = d->next)
238 for (d = suffix_file->deps; d != 0; d = d->next
165 struct dep *deps; local
    [all...]
file.c 289 if (to_file->deps == 0)
290 to_file->deps = from_file->deps;
293 register struct dep *deps = to_file->deps;
294 while (deps->next != 0)
295 deps = deps->next;
296 deps->next = from_file->deps;
292 register struct dep *deps = to_file->deps; local
    [all...]
read.c 135 struct dep *deps, unsigned int cmds_started, char *commands,
305 struct dep *deps;
368 deps = alloc_dep ();
369 deps->next = read_makefiles;
370 read_makefiles = deps;
371 deps->file = lookup_file (filename);
372 if (deps->file == 0)
373 deps->file = enter_file (xstrdup (filename));
374 filename = deps->file->name;
375 deps->changed = flags
302 struct dep *deps; local
465 struct dep *deps = 0; local
1721 struct hash_table deps; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
GuidelinePainter.java 60 Set<INode> deps = new HashSet<INode>(horizontalDeps.size() + verticalDeps.size()); local
61 deps.addAll(horizontalDeps);
62 deps.addAll(verticalDeps);
63 if (deps.size() > 0) {
65 for (INode n : deps) {
ConstraintPainter.java 117 Set<INode> deps = new HashSet<INode>(horizontalDeps.size() + verticalDeps.size()); local
118 deps.addAll(horizontalDeps);
119 deps.addAll(verticalDeps);
120 if (deps.size() > 0) {
122 for (INode node : deps) {
    [all...]
  /build/core/
main.mk 73 # file does the rm -rf inline so the deps which are all done below will
585 define add-required-deps
592 $(eval $(call add-required-deps,$(ALL_MODULES.$(m).INSTALLED),$(r))) \
598 add-required-deps :=
definitions.mk 534 define java-lib-deps
903 define transform-c-or-s-to-o-no-deps
923 define transform-c-to-o-no-deps
925 $(call transform-c-or-s-to-o-no-deps, )
928 define transform-s-to-o-no-deps
930 $(call transform-c-or-s-to-o-no-deps, $(PRIVATE_ASFLAGS))
934 $(transform-c-to-o-no-deps)
939 $(transform-s-to-o-no-deps)
949 define transform-m-to-o-no-deps
951 $(call transform-c-or-s-to-o-no-deps)
    [all...]
Makefile 1387 deps := \\ macro
    [all...]
  /external/emma/tools/java/com/vladium/tools/
ClassDep.java 76 final String [] deps = _this.getDependencies (true); local
79 for (int d = deps.length - 1; d >= 0; -- d) // reverse topological order
81 s.append (deps [d]);
  /external/oprofile/libpp/
arrange_profiles.h 87 * contains all profiles against /bin/bash, and deps contains
98 std::list<profile_dep_set> deps; member in struct:profile_set
  /external/oprofile/pp/
opreport.cpp 92 vector<summary> deps; member in struct:__anon9164::app_summary
110 vector<summary>::iterator sit = deps.begin();
111 vector<summary>::iterator const send = deps.end();
119 deps.push_back(summ);
120 return deps.back();
136 list<profile_dep_set>::const_iterator it = profile.deps.begin();
137 list<profile_dep_set>::const_iterator const end = profile.deps.end();
198 stable_sort(ait->deps.begin(), ait->deps.end());
291 if (app.deps.size() == 1
    [all...]
  /external/oprofile/daemon/liblegacy/
p_module.h 147 unsigned tgt_long deps; member in struct:module
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/
SdkUpdaterLogic.java 386 ArchiveInfo[] deps = findDependency(p, local
393 if (deps != null) {
397 for (ArchiveInfo aid : deps) {
427 ArchiveInfo[] deps = findDependency(p, local
449 deps //dependsOn
454 if (deps != null) {
455 for (ArchiveInfo d : deps) {
    [all...]
UpdaterData.java 616 ArchiveInfo[] deps = ai.getDependsOn(); local
617 if (deps == null) {
622 int n = deps.length;
624 for (ArchiveInfo dep : deps) {
    [all...]
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
AsmAnalyzer.java 92 Map<String, ClassReader> deps = findDeps(zipClasses, found); local
96 mGen.setDeps(deps);
275 TreeMap<String, ClassReader> deps = new TreeMap<String, ClassReader>(); local
282 deps, new_deps);
289 deps.putAll(new_deps);
298 inOutKeepClasses.size(), deps.size());
306 inOutKeepClasses.size(), deps.size());
308 return deps;
  /ndk/build/core/
definitions.mk 611 $(call module-add-c++-deps,$(__module),$1,$2),\
691 module-add-c++-deps = \
    [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 280 const MemoryDependenceAnalysis::NonLocalDepInfo &deps = local
287 for (unsigned i = 0, e = deps.size(); i != e; ++i) {
288 const NonLocalDepEntry *I = &deps[i];
    [all...]
  /frameworks/base/tools/aapt/
Resource.cpp 2329 status_t deps = -1; local
2341 status_t deps = -1; local
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-linux-androideabi-4.4.x/include/
bfdlink.h 768 struct bfd_elf_version_deps *deps;
765 struct bfd_elf_version_deps *deps; member in struct:bfd_elf_version_tree
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/lib/gcc/arm-eabi/4.4.0/plugin/include/
cpplib.h 439 } deps; member in struct:cpp_options
671 /* Call these to get pointers to the options, callback, and deps
679 extern struct deps *cpp_get_deps (cpp_reader *);
    [all...]

Completed in 584 milliseconds

1 2