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

1 2 3 4

  /system/core/sh/
nodes.c.pat 57 STATIC void calcsize(union node *);
59 STATIC union node *copynode(union node *);
69 union node *
71 union node *n;
87 union node *n;
107 STATIC union node *
109 union node *n;
111 union node *new;
162 union node *n
    [all...]
mknodes.sh 90 nodeptr ) type="union node *";;
103 echo "union node {"
113 echo " union node *n;"
117 echo "union node *copyfunc(union node *);"
118 echo "void freefunc(union node *);"
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
PKIXNameConstraintValidator.java 250 Set union = new HashSet(); local
257 unionEmail(_excluded, email, union);
260 return union;
302 * Returns the union of the excluded IP ranges in <code>excluded</code>
325 Set union = new HashSet(); local
331 union.addAll(unionIPRange(_excluded, ip));
334 return union;
339 * Calculates the union if two IP ranges.
343 * @return A <code>Set</code> with the union of both addresses.
747 * added to the union <code>union</code>. If <code>email1</code> an
1080 Set union = new HashSet(); local
1270 Set union = new HashSet(); local
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/
AccessControllerTest.java 38 final DomainCombiner union = new DomainCombiner() { local
46 new AccessControlContext(new ProtectionDomain[] { protectionDomain }), union);
  /cts/tests/tests/graphics/src/android/graphics/cts/
RectTest.java 202 method = "union",
211 mRect.union(1, 1, 2, 2);
221 mRect.union(1, 1, 2, 2);
231 mRect.union(2, 2, 1, 1);
239 mRect.union(1, 1, 2, 2);
247 mRect.union(2, 2, 2, 2);
256 method = "union",
268 mRect.union(rect);
279 mRect.union(rect);
290 mRect.union(rect)
    [all...]
RectFTest.java 250 method = "union",
259 mRectF.union(1.0f, 1.0f, 2.0f, 2.0f);
269 mRectF.union(1.0f, 1.0f, 2.0f, 2.0f);
279 mRectF.union(2.0f, 2.0f, 1.5f, 1.5f);
287 mRectF.union(1.0f, 1.0f, 2.0f, 2.0f);
295 mRectF.union(2.0f, 2.0f, 2.0f, 2.0f);
305 method = "union",
317 mRectF.union(rectF);
328 mRectF.union(rectF);
339 mRectF.union(rectF)
    [all...]
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
typeinfoisderivedfrom58.js 79 Check if a type derived by extension from a union returns true
80 when asked if it derives by union from a member type of the union.
typeinfoisderivedfrom59.js 79 Check if a type derived by extension from a union returns true
80 when asked if it derives by union from a restricted base of
81 a member of type union.
typeinfoisderivedfrom73.js 81 Checks that isDerivedFrom(...,0) returns true where the target type is a union
82 where the ancestor type is a member of the union and is a union itself.
typeinfoisderivedfrom66.js 83 Get schemaTypeInfo on an element of type Union that belongs to a document with an XML schema.
84 Invoke method isDerivedFrom with derivation method union and verify that the value returned is true.
85 Verify that emType is derived from emp0004_5Type by union.
  /external/webkit/Tools/Scripts/
clean-header-guards 30 IgnoreFileNamesPattern = Regexp.union(*IgnoredFilenamePatterns).freeze
  /external/webkit/Tools/Scripts/webkitpy/common/net/
failuremap.py 59 result = result.union(test)
  /hardware/qcom/gps/loc_api/libloc_api-rpc/gen-1240/
loc_api_common.xdr 214 union rpc_loc_status_event_payload_u_type switch (rpc_loc_status_event_e_type disc) {
244 union rpc_loc_server_addr_u_type switch (rpc_loc_server_addr_e_type disc) {
456 union rpc_loc_ni_event_payload_u_type switch (rpc_loc_ni_event_e_type disc) {
499 union rpc_loc_assist_data_request_payload_u_type switch (rpc_loc_assist_data_request_e_type disc) {
538 union rpc_loc_server_request_u_type switch (rpc_loc_server_request_e_type disc) {
808 union rpc_loc_ioctl_data_u_type switch (rpc_loc_ioctl_e_type disc) {
850 union rpc_loc_ioctl_callback_data_u_type switch (rpc_loc_ioctl_e_type disc) {
882 union rpc_loc_event_payload_u_type switch (unsigned hyper disc) {
  /hardware/qcom/gps/loc_api/libloc_api-rpc/gen-3200/
loc_api_common.xdr 207 union rpc_loc_status_event_payload_u_type switch (rpc_loc_status_event_e_type disc) {
235 union rpc_loc_server_addr_u_type switch (rpc_loc_server_addr_e_type disc) {
436 union rpc_loc_ni_event_payload_u_type switch (rpc_loc_ni_event_e_type disc) {
477 union rpc_loc_assist_data_request_payload_u_type switch (rpc_loc_assist_data_request_e_type disc) {
516 union rpc_loc_server_request_u_type switch (rpc_loc_server_request_e_type disc) {
712 union rpc_loc_ioctl_data_u_type switch (rpc_loc_ioctl_e_type disc) {
748 union rpc_loc_ioctl_callback_data_u_type switch (rpc_loc_ioctl_e_type disc) {
779 union rpc_loc_event_payload_u_type switch (unsigned hyper disc) {
  /external/grub/docs/
multiboot.h.texi 89 union
  /frameworks/base/graphics/java/android/graphics/
Rect.java 472 public void union(int left, int top, int right, int bottom) { method in class:Rect
499 public void union(Rect r) { method in class:Rect
500 union(r.left, r.top, r.right, r.bottom); method
510 public void union(int x, int y) { method in class:Rect
RectF.java 441 public void union(float left, float top, float right, float bottom) { method in class:RectF
468 public void union(RectF r) { method in class:RectF
469 union(r.left, r.top, r.right, r.bottom); method
479 public void union(float x, float y) { method in class:RectF
  /external/valgrind/main/none/tests/amd64/
gen_insn_test.pl 108 typedef union {
113 typedef union {
120 typedef union {
130 typedef union {
143 typedef union {
  /external/valgrind/main/none/tests/x86/
gen_insn_test.pl 88 typedef union {
93 typedef union {
100 typedef union {
110 typedef union {
123 typedef union {
  /external/webkit/Tools/Scripts/webkitpy/style/
checker.py 283 # Take the union across all checkers.
284 categories = CommonCategories.union(CppChecker.categories)
285 categories = categories.union(TestExpectationsChecker.categories)
292 categories = categories.union(["pep8/W191", "pep8/W291", "pep8/E501"])
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
SoftKeyboardView.java 276 mDirtyRect.union(mSoftKeyDown.mLeft, mSoftKeyDown.mTop,
327 mDirtyRect.union(mSoftKeyDown.mLeft, mSoftKeyDown.mTop,
350 mDirtyRect.union(mSoftKeyDown.mLeft, mSoftKeyDown.mTop,
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ImageUtils.java 400 Rectangle union = new Rectangle(bounds.x, bounds.y, bounds.width, bounds.height); local
402 union.add(iterator.next());
405 return union;
  /bionic/libc/kernel/tools/
clean_header.py 52 statics = statics.union( kernel_known_statics.get( arch, set() ) )
  /external/bluetooth/glib/
glibconfig.h.win32.in 200 typedef union _GSystemThread GSystemThread;
201 union _GSystemThread
  /external/libffi/include/
ffi.h.in 203 typedef union {
214 typedef union {

Completed in 2553 milliseconds

1 2 3 4