HomeSort by relevance Sort by last modified time
    Searched refs:union (Results 251 - 275 of 924) sorted by null

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
asdl_c.py 164 emit("union {", depth + 1)
258 def emit_function(self, name, ctype, args, attrs, union=True):
275 self.get_args(prod.fields), [], union=False)
281 def emit_function(self, name, ctype, args, attrs, union=True):
308 if union:
    [all...]
  /external/autotest/server/cros/
host_lock_manager_unittest.py 67 self.locked_hosts = self.locked_hosts.union(hosts)
  /external/autotest/site_utils/
rpc_flight_recorder.py 101 all_servers = set(servers).union(shards)
  /external/chromium-trace/catapult/devil/devil/android/tools/
device_status.py 263 for s in expected_devices.union(usb_devices)]
  /external/compiler-rt/lib/sanitizer_common/scripts/
sancov.py 78 s = s.union(set(ReadOneFile(f)))
  /external/dagger2/compiler/src/main/java/dagger/internal/codegen/writer/
JavaWriter.java 217 return new CompilationUnitContext(packageName, Sets.union(visibleClasses, newTypes));
  /external/guava/guava-tests/test/com/google/common/collect/
MapMakerTest.java 178 assertEquals(expectedKeys, Sets.union(map.keySet(), removalNotifications.keySet()));
  /external/libmojo/third_party/catapult/devil/devil/android/tools/
device_status.py 286 for s in expected_devices.union(usb_devices)]
  /external/libvpx/libvpx/vp8/common/
rtcd_defs.pl 25 union int_mv;
221 add_proto qw/int vp8_full_search_sad/, "struct macroblock *x, struct block *b, struct blockd *d, union int_mv *ref_mv, int sad_per_bit, int distance, struct variance_vtable *fn_ptr, int *mvcost[2], union int_mv *center_mv";
226 add_proto qw/int vp8_refining_search_sad/, "struct macroblock *x, struct block *b, struct blockd *d, union int_mv *ref_mv, int sad_per_bit, int distance, struct variance_vtable *fn_ptr, int *mvcost[2], union int_mv *center_mv";
231 add_proto qw/int vp8_diamond_search_sad/, "struct macroblock *x, struct block *b, struct blockd *d, union int_mv *ref_mv, union int_mv *best_mv, int search_param, int sad_per_bit, int *num00, struct variance_vtable *fn_ptr, int *mvcost[2], union int_mv *center_mv";
  /external/python/cpython2/Parser/
asdl_c.py 164 emit("union {", depth + 1)
258 def emit_function(self, name, ctype, args, attrs, union=True):
275 self.get_args(prod.fields), [], union=False)
281 def emit_function(self, name, ctype, args, attrs, union=True):
308 if union:
    [all...]
  /external/python/cpython3/Parser/
asdl_c.py 165 emit("union {", depth + 1)
261 def emit_function(self, name, ctype, args, attrs, union=True):
280 union=False)
286 def emit_function(self, name, ctype, args, attrs, union=True):
312 if union:
    [all...]
  /external/tensorflow/tensorflow/contrib/linalg/python/ops/
linear_operator_addition.py 342 return not types.difference(_DIAG_LIKE.union({_TRIL}))
  /frameworks/base/core/java/android/gesture/
Gesture.java 97 mBoundingBox.union(stroke.boundingBox);
  /frameworks/layoutlib/bridge/src/android/graphics/
BidiRenderer.java 276 mBounds.union(awtRectToAndroidRect(awtBounds, mBounds.right, mBaseline, null));
  /frameworks/support/recyclerview-selection/src/androidTest/java/androidx/recyclerview/selection/
GridModelTest.java 257 selectionArea.union(mSelectionPoint.x, mSelectionPoint.y);
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/selection/
GridModelTest.java 258 selectionArea.union(mSelectionPoint.x, mSelectionPoint.y);
  /prebuilts/go/darwin-x86/misc/cgo/gmp/
gmp.go 33 C union translates into a struct containing the first union member and
  /prebuilts/go/linux-x86/misc/cgo/gmp/
gmp.go 33 C union translates into a struct containing the first union member and
  /test/vts-testcase/kernel/api/proc/
VtsKernelProcFileApiTest.py 167 settings=TEST_OBJECTS.union(TEST_OBJECTS_64),
  /toolchain/binutils/binutils-2.27/etc/
add-log.el 490 (looking-at "struct \\|union \\|class ")
  /external/fonttools/Lib/fontTools/
merge.py 100 allKeys = set.union(set(), *(vars(table).keys() for table in lst))
735 allTags = reduce(set.union, (list(font.keys()) for font in fonts), set())
779 allKeys = set.union(set(), *(vars(table).keys() for table in tables if table is not NotImplemented))
  /external/guava/guava/src/com/google/common/collect/
Multisets.java 365 * Returns an unmodifiable view of the union of two multisets.
380 public static <E> Multiset<E> union(
403 return Sets.union(multiset1.elementSet(), multiset2.elementSet());
545 return Sets.union(multiset1.elementSet(), multiset2.elementSet());
    [all...]
  /external/libmojo/mojo/public/tools/bindings/pylib/mojom/generate/
module.py 304 imported_from: {dict} Information about where this union was
346 class Union(ReferenceKind):
347 """A union of several kinds.
350 name: {str} The name of the union type.
352 imported_from: {dict} Information about where this union was
354 fields: {List[UnionField]} The members of the union.
355 attributes: {dict} Additional information about the union, such as
680 union = Union(name, self, attributes)
681 self.unions.append(union)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageUtils.java 730 Rectangle union = new Rectangle(bounds.x, bounds.y, bounds.width, bounds.height); local
732 union.add(iterator.next());
735 return union;
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/cgo/
gcc.go 49 // union and enum.
59 return "union " + s[len("union_"):]
257 // If this is a struct, union, or enum type name, no need to guess the kind.
258 if strings.HasPrefix(n.C, "struct ") || strings.HasPrefix(n.C, "union ") || strings.HasPrefix(n.C, "enum ") {
838 // Check whether this is a pointer to a C union (or class)
    [all...]

Completed in 1056 milliseconds

<<11121314151617181920>>