Home
last modified time | relevance | path

Searched refs:dep (Results 1 – 25 of 349) sorted by relevance

12345678910>>...14

/external/chromium_org/tools/gn/
Dtarget.cc208 const Target* dep = iter.target(); in PullDependentTargetInfo() local
209 MergeAllDependentConfigsFrom(dep, &configs_, &all_dependent_configs_); in PullDependentTargetInfo()
210 MergePublicConfigsFrom(dep, &configs_); in PullDependentTargetInfo()
213 if (dep->output_type() == STATIC_LIBRARY || in PullDependentTargetInfo()
214 dep->output_type() == SHARED_LIBRARY || in PullDependentTargetInfo()
215 dep->output_type() == SOURCE_SET) in PullDependentTargetInfo()
216 inherited_libraries_.push_back(dep); in PullDependentTargetInfo()
220 if (!dep->IsFinal()) { in PullDependentTargetInfo()
221 inherited_libraries_.Append(dep->inherited_libraries().begin(), in PullDependentTargetInfo()
222 dep->inherited_libraries().end()); in PullDependentTargetInfo()
[all …]
Dninja_group_target_writer_unittest.cc20 Target dep(setup.settings(), Label(SourceDir("//foo/"), "dep")); in TEST() local
21 dep.set_output_type(Target::ACTION); in TEST()
22 dep.visibility().SetPublic(); in TEST()
23 dep.SetToolchain(setup.toolchain()); in TEST()
24 ASSERT_TRUE(dep.OnResolved(&err)); in TEST()
38 target.public_deps().push_back(LabelTargetPair(&dep)); in TEST()
Dninja_target_writer_unittest.cc72 OutputFile dep = in TEST() local
75 EXPECT_EQ("obj/foo/base.inputdeps.stamp", dep.value()); in TEST()
85 OutputFile dep = in TEST() local
88 EXPECT_EQ("obj/foo/target.inputdeps.stamp", dep.value()); in TEST()
99 OutputFile dep = in TEST() local
102 EXPECT_EQ("obj/foo/action.inputdeps.stamp", dep.value()); in TEST()
133 OutputFile dep = in TEST() local
136 EXPECT_EQ("obj/foo/target.inputdeps.stamp", dep.value()); in TEST()
/external/bluetooth/bluedroid/stack/mcap/
Dmca_api.c238 p_depcs = p_rcb->dep; in MCA_CreateDep()
287 tMCA_RESULT MCA_DeleteDep(tMCA_HANDLE handle, tMCA_DEP dep) in MCA_DeleteDep() argument
295 MCA_TRACE_API ("MCA_DeleteDep: %d dep:%d", handle, dep); in MCA_DeleteDep()
298 if (dep < MCA_NUM_DEPS && p_rcb->dep[dep].p_data_cback) in MCA_DeleteDep()
301 p_rcb->dep[dep].p_data_cback = NULL; in MCA_DeleteDep()
302 p_depcs = &(p_rcb->dep[dep]); in MCA_DeleteDep()
423 tMCA_RESULT MCA_CreateMdl(tMCA_CL mcl, tMCA_DEP dep, UINT16 data_psm, in MCA_CreateMdl() argument
432 …MCA_TRACE_API ("MCA_CreateMdl: %d dep=%d mdl_id=%d peer_dep_id=%d", mcl, dep, mdl_id, peer_dep_id); in MCA_CreateMdl()
453 p_dcb = mca_dcb_alloc(p_ccb, dep); in MCA_CreateMdl()
501 tMCA_RESULT MCA_CreateMdlRsp(tMCA_CL mcl, tMCA_DEP dep, in MCA_CreateMdlRsp() argument
[all …]
Dmca_dsm.c173 tMCA_DCB *mca_dcb_alloc(tMCA_CCB*p_ccb, tMCA_DEP dep) in mca_dcb_alloc() argument
180 if (dep < MCA_NUM_DEPS) in mca_dcb_alloc()
182 p_cs = &p_rcb->dep[dep]; in mca_dcb_alloc()
213 UINT8 mca_dep_free_mdl(tMCA_CCB *p_ccb, tMCA_DEP dep) in mca_dep_free_mdl() argument
222 if (dep < MCA_NUM_DEPS) in mca_dep_free_mdl()
224 p_cs = &p_rcb->dep[dep]; in mca_dep_free_mdl()
/external/chromium_org/tools/gyp/tools/
Dpretty_sln.py26 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/llvm/utils/llvm-build/llvmbuild/
Dmain.py354 self.component_info_map[dep].get_llvmconfig_component_name()
355 for dep in c.required_libraries]
358 for dep in c.add_to_library_groups:
359 entries[dep][2].append(llvmconfig_component_name)
418 ', '.join('"%s"' % dep
419 for dep in required_names)))
437 dep = self.component_info_map[name]
440 if dep.type_name == 'Library':
441 yield dep
446 if dep.type_name in ('LibraryGroup', 'TargetGroup'):
[all …]
/external/llvm/lib/Analysis/
DMemDepPrinter.cpp63 static InstTypePair getInstTypePair(MemDepResult dep) { in getInstTypePair()
64 if (dep.isClobber()) in getInstTypePair()
65 return InstTypePair(dep.getInst(), Clobber); in getInstTypePair()
66 if (dep.isDef()) in getInstTypePair()
67 return InstTypePair(dep.getInst(), Def); in getInstTypePair()
68 if (dep.isNonFuncLocal()) in getInstTypePair()
69 return InstTypePair(dep.getInst(), NonFuncLocal); in getInstTypePair()
70 assert(dep.isUnknown() && "unexpected dependence type"); in getInstTypePair()
71 return InstTypePair(dep.getInst(), Unknown); in getInstTypePair()
/external/chromium_org/tools/gyp/test/self-dependency/
Dcommon.gypi6 # Makes every target in the project depend on dep.gyp:dep.
10 'dep.gyp:dep',
Ddep.gyp5 # dep.gyp contains a target dep, on which all the targets in the project
6 # depend. This means there's a self-dependency of dep on itself, which is
15 'target_name': 'dep',
/external/icu/icu4c/source/test/depstest/
Ddependencies.py101 for dep in line.split():
102 _CheckGroupName(dep)
103 dep_item = items.get(dep)
106 "library or library group %s") % (_line_number, dep))
109 items[dep] = {"type": "group"}
110 if library_name: items[dep]["library"] = library_name
111 _groups_to_be_defined.add(dep)
112 item_deps.add(dep)
/external/chromium_org/third_party/icu/source/test/depstest/
Ddependencies.py101 for dep in line.split():
102 _CheckGroupName(dep)
103 dep_item = items.get(dep)
106 "library or library group %s") % (_line_number, dep))
109 items[dep] = {"type": "group"}
110 if library_name: items[dep]["library"] = library_name
111 _groups_to_be_defined.add(dep)
112 item_deps.add(dep)
/external/e2fsprogs/lib/e2p/
Diod.c31 struct dirent *de, *dep; in iterate_on_dir() local
60 while ((dep = readdir (dir))) { in iterate_on_dir()
62 len = dep->d_reclen; in iterate_on_dir()
68 memcpy(de, dep, len); in iterate_on_dir()
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/preprocs/nasm/
Dnasm-preproc.c220 preproc_dep *dep; in nasm_preproc_add_dep() local
227 dep = yasm_xmalloc(sizeof(preproc_dep)); in nasm_preproc_add_dep()
228 dep->name = yasm__xstrdup(name); in nasm_preproc_add_dep()
229 STAILQ_INSERT_TAIL(preproc_deps, dep, link); in nasm_preproc_add_dep()
247 preproc_dep *dep = STAILQ_FIRST(preproc_deps); in nasm_preproc_get_included_file() local
249 name = dep->name; in nasm_preproc_get_included_file()
250 yasm_xfree(dep); in nasm_preproc_get_included_file()
/external/openssl/crypto/aes/asm/
Daes-ia64.S242 dep te33=te22,te33,8,8} // 7/0:
248 dep te30=te23,te30,8,8} // 8/1:
253 dep te33=te11,te33,16,8 // 9/0:
256 dep te31=te20,te31,8,8 // 10/2:
259 dep te32=te21,te32,8,8 // 11/3:
262 dep te31=te13,te31,16,8 // 12/2:
266 dep te32=te10,te32,16,8};; // 13/3:
354 dep out1=r16,out1,24,8 //;;
355 dep out3=r20,out3,24,8 }//;;
357 dep out5=r24,out5,24,8 //;;
[all …]
/external/chromium_org/third_party/libvpx/source/libvpx/
Dsolution.mk14 $(filter-out $(VPX_NONDEPS),$^), --dep=$(vcp:.$(VCPROJ_SFX)=):vpx)
20 --dep=vpx:obj_int_extract \
21 --dep=test_libvpx:gtest \
/external/libvpx/libvpx/
Dsolution.mk14 $(filter-out $(VPX_NONDEPS),$^), --dep=$(vcp:.$(VCPROJ_SFX)=):vpx)
20 --dep=vpx:obj_int_extract \
21 --dep=test_libvpx:gtest \
/external/qemu/distrib/sdl-1.2.15/build-scripts/
Dmakedep.sh28 do dep="$path/$file"
29 if test -f "$dep"; then
30 echo " $dep \\" >>$cache
31 search_deps $dep >>$cache
/external/chromium_org/components/crash/tools/
Dgenerate_breakpad_symbols.py104 dep = Resolve(m.group(1), exe_path, loader_path, rpaths)
105 if dep:
106 deps.append(os.path.normpath(dep))
123 for dep in deps:
124 if (os.access(dep, os.X_OK) and
125 os.path.abspath(os.path.dirname(dep)).startswith(build_dir)):
126 result.append(dep)
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
Dmodular_build.py113 for dep in deps:
114 result += sorted_deps_for_module(dep)
141 for dep in deps:
142 if dep not in application_descriptor:
143 …dule "%s" (dependency of "%s") not listed in application descriptor %s' % (dep, module['name'], ap…
/external/chromium_org/tools/gyp/pylib/gyp/generator/
Ddump_dependency_json.py73 for dep in target_dicts[target].get('dependencies', []):
74 edges[target].append(dep)
75 targets_to_visit.append(dep)
/external/libhevc/common/
Dihevc_deblk_edge_filter.c116 WORD32 de, dep, deq; in ihevc_deblk_luma_vert() local
157 dep = 0; in ihevc_deblk_luma_vert()
183 dep = (dp < (beta + (beta >> 1)) >> 3) ? 1 : 0; in ihevc_deblk_luma_vert()
187 dep = 0; in ihevc_deblk_luma_vert()
251 if(dep == 1) in ihevc_deblk_luma_vert()
354 WORD32 de, dep, deq; in ihevc_hbd_deblk_luma_vert() local
395 dep = 0; in ihevc_hbd_deblk_luma_vert()
421 dep = (dp < (beta + (beta >> 1)) >> 3) ? 1 : 0; in ihevc_hbd_deblk_luma_vert()
425 dep = 0; in ihevc_hbd_deblk_luma_vert()
488 if(dep == 1) in ihevc_hbd_deblk_luma_vert()
[all …]
/external/elfutils/0.153/src/
Dmake-debug-archive.in86 dep=/lib/modules/$release/modules.dep
95 if [ $force_kernel = no -a "$archive" -nt "$dep" ]; then
/external/bluetooth/bluedroid/stack/include/
Dmca_api.h306 MCA_API extern tMCA_RESULT MCA_DeleteDep(tMCA_HANDLE handle, tMCA_DEP dep);
358 MCA_API extern tMCA_RESULT MCA_CreateMdl(tMCA_CL mcl, tMCA_DEP dep, UINT16 data_psm,
376 MCA_API extern tMCA_RESULT MCA_CreateMdlRsp(tMCA_CL mcl, tMCA_DEP dep,
406 MCA_API extern tMCA_RESULT MCA_ReconnectMdl(tMCA_CL mcl, tMCA_DEP dep, UINT16 data_psm,
422 MCA_API extern tMCA_RESULT MCA_ReconnectMdlRsp(tMCA_CL mcl, tMCA_DEP dep,
/external/chromium_org/native_client_sdk/src/tools/
Dhost_gcc.mk119 $(1): $(2) $(foreach dep,$(4),$(STAMPDIR)/$(dep).stamp)
125 $(1): $(2) $(foreach dep,$(4),$(STAMPDIR)/$(dep).stamp)

12345678910>>...14