HomeSort by relevance Sort by last modified time
    Searched refs:defs (Results 76 - 100 of 356) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/adhd/adhdinfo/
Makefile 4 include $(ADHD_DIR)/defs/definitions.mk
  /external/python/cpython2/Tools/scripts/
parseentities.py 35 def writefile(f,defs):
38 items = defs.items()
63 defs = parse(text) variable
64 writefile(outfile,defs)
  /external/python/cpython3/Tools/scripts/
parseentities.py 34 def writefile(f,defs):
37 items = sorted(defs.items())
61 defs = parse(text) variable
62 writefile(outfile,defs)
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
ItemAlignmentFacet.java 196 public void setAlignmentDefs(ItemAlignmentDef[] defs) {
197 if (defs == null || defs.length < 1) {
200 mAlignmentDefs = defs;
  /external/annotation-tools/scene-lib/src/annotations/el/
DefCollector.java 25 private final Set<AnnotationDef> defs; field in class:DefCollector
36 defs = new LinkedHashSet<AnnotationDef>();
45 for (AnnotationDef def : defs) {
67 if (defs.contains(d)) {
72 defs.add(d);
78 defs.remove(oldD);
79 defs.add(ud);
84 if (defs.contains(d)) {
97 // TODO: In the future we want to add the defs of meta-annotations
111 if (defs.contains(tld))
    [all...]
  /external/mesa3d/src/gallium/drivers/r600/sb/
sb_def_use.cpp 38 void def_use::process_phi(container_node *c, bool defs, bool uses) {
44 if (defs)
49 void def_use::run_on(node* n, bool defs) {
62 if (defs)
66 } else if (is_region & defs) {
75 run_on(*I, defs);
82 process_phi(r->phi, defs, !defs);
83 if (r->loop_phi && !defs)
  /external/skia/gn/
gn_to_bp_utils.py 84 defs = {}
85 execfile(opts_file, builtins, defs)
88 for arch in defs:
89 defs[arch] = [ p.replace('$_src', 'src') for p in defs[arch]]
91 return defs
  /external/skqp/gn/
gn_to_bp_utils.py 84 defs = {}
85 execfile(opts_file, builtins, defs)
88 for arch in defs:
89 defs[arch] = [ p.replace('$_src', 'src') for p in defs[arch]]
91 return defs
  /external/mesa3d/src/compiler/nir/
nir_phi_builder.c 65 /* Array of SSA defs, indexed by block. For each block, this array has has
76 * one of the defs provided by nir_phi_builder_value_set_blocK_def().
78 nir_ssa_def *defs[0]; member in struct:nir_phi_builder_value
109 unsigned bit_size, const BITSET_WORD *defs)
114 val = rzalloc_size(pb, sizeof(*val) + sizeof(val->defs[0]) * pb->num_blocks);
124 BITSET_FOREACH_SET(i, tmp, defs, pb->num_blocks) {
146 if (val->defs[next->index] == NULL) {
151 val->defs[next->index] = NEEDS_PHI;
168 val->defs[block->index] = def;
179 while (dom && val->defs[dom->index] == NULL
    [all...]
nir_phi_builder.h 33 * a bitset var.defs of blocks where the variable is defined
39 * var.defs[def.block] = true;
44 * var.pb_val = nir_phi_builder_add_value(pb, var.defs)
73 * The 'defs' parameter specifies a bitset of blocks in which the given value
78 unsigned bit_size, const BITSET_WORD *defs);
  /art/test/921-hello-failure/src/
Main.java 55 public static void doMultiClassRedefinition(CommonClassDefinition... defs) throws Exception {
56 Redefinition.doMultiClassRedefinition(toCCDA(defs));
58 public static void addMultiTransformationResults(CommonClassDefinition... defs) throws Exception {
59 Redefinition.addMultiTransformationResults(toCCDA(defs));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
eval.h 17 PyObject **defs, int defc,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
eval.h 17 PyObject **defs, int defc,
  /external/python/cpython2/Include/
eval.h 17 PyObject **defs, int defc,
  /external/python/cpython3/Include/
eval.h 17 PyObject **defs, int defc,
  /prebuilts/gdb/darwin-x86/include/python2.7/
eval.h 17 PyObject **defs, int defc,
  /prebuilts/gdb/linux-x86/include/python2.7/
eval.h 17 PyObject **defs, int defc,
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
eval.h 17 PyObject **defs, int defc,
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
eval.h 17 PyObject **defs, int defc,
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mmix/
basep-10.s 2 # GREG defs.
  /libcore/luni/src/main/java/libcore/reflect/
AnnotationFactory.java 112 AnnotationMember[] defs = getElementsDescription(klazz); local
114 elements = defs;
117 elements = new AnnotationMember[defs.length];
120 if (val.name.equals(defs[i].name)) {
121 elements[i] = val.setDefinition(defs[i]);
125 elements[i] = defs[i];
142 AnnotationMember[] defs = getElementsDescription(klazz); local
144 List<AnnotationMember> merged = new ArrayList<AnnotationMember>(defs.length + old.length);
146 for (AnnotationMember el2 : defs) {
153 nextNew: for (AnnotationMember def : defs) {
    [all...]
  /external/python/cpython2/PC/VS7.1/
build_ssl.py 169 defs = "SSL_DIR=\"%s\"" % (ssl_dir,)
171 defs = defs + " " + "DEBUG=1"
173 defs = defs + " EXTRA_CFLAGS=/GS- EXTRA_LIBS=bufferoverflowU.lib"
174 makeCommand = 'nmake /nologo -f _ssl.mak ' + defs + " " + make_flags
  /external/icu/icu4c/source/samples/ufortune/
Makefile 22 include ../defs.mk
  /prebuilts/go/darwin-x86/src/runtime/
defs1_linux.go 10 GOARCH=amd64 cgo -cdefs defs.go defs1.go >amd64/defs.h
  /prebuilts/go/linux-x86/src/runtime/
defs1_linux.go 10 GOARCH=amd64 cgo -cdefs defs.go defs1.go >amd64/defs.h

Completed in 483 milliseconds

1 2 34 5 6 7 8 91011>>