HomeSort by relevance Sort by last modified time
    Searched full:group (Results 226 - 250 of 3028) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /packages/apps/Browser/res/menu/
bookmarkscontext.xml 18 <group android:id="@+id/ADD_MENU">
21 </group>
22 <group android:id="@+id/CONTEXT_MENU">
39 </group>
  /packages/apps/IM/src/com/android/im/
IChatSessionManager.aidl 36 * Get the ChatSession that is associated with the specified contact or group.
38 * @param the address of the contact or group.
39 * @return the ChatSession with the contact or group or <code>null</code> if
40 * there isn't any active ChatSession with the contact or group.
  /bionic/libc/tools/
checksyscalls.py 79 dict[m.group(1)] = int(m.group(2))
84 dict[m.group(1)] = int(m.group(2)) + 259
89 #print "%s = %s" % (m.group(1), m.group(2))
90 dict["ARM_"+m.group(1)] = int(m.group(2)) + 0x0f0000
97 #print "%s = %s" % (m.group(1), m.group(2)
    [all...]
  /cts/tests/res/menu/
visible_shortcut.xml 28 <group android:id="@+id/hidden_group"
32 android:title="Hidden by group"
35 </group>
  /development/samples/ApiDemos/res/menu/
visible.xml 28 <group android:id="@+id/hidden_group"
32 android:title="Hidden by group"
35 </group>
  /external/e2fsprogs/tests/f_dup_resize/
expect.1 15 <The group descriptor inode> (inode #7, mod time Mon Apr 11 06:13:20 2005)
21 Pass 5: Checking group summary information
25 Free blocks count wrong for group #0 (7910, counted=7911).
  /external/e2fsprogs/tests/f_lpf/
expect.1 26 Pass 5: Checking group summary information
30 Free blocks count wrong for group #0 (24, counted=33).
39 Free inodes count wrong for group #0 (1, counted=0).
  /external/libpcap/ChmodBPF/
ChmodBPF 11 # This startup item will make it owned by the admin group,
13 # group can use programs that capture or send raw packets.
20 # admin group can capture packets.
  /external/opencore/protocols/sdp/common/include/
common_info.h 221 uint32 group; //4 bits represent one alt-id hence "group" can represent member in struct:altGpBWType
222 //a group of 8 alt-ids. e.g for a=alt-group=BW:AS:28=1,2,4,5
223 //group represent 1,2,4,5. Hence group=0x5421
231 uint32 group; //4 bits represent one alt-id hence "group" can represent member in struct:altGpLANGType
232 //a group of 8 alt-ids. e.g for a=alt-group=LANG:RFC3066:en-US=1,2,4,
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/build/
BaseBuilderTest.java 32 assertEquals("C:\\java\\workspace-android\\AndroidApp\\res\\values\\strings.xml", m.group(1));
33 assertEquals("11", m.group(2));
34 assertEquals("WARNING: empty 'some warning text", m.group(3));
  /external/webkit/JavaScriptCore/JavaScriptCore.xcodeproj/
project.pbxproj     [all...]
  /dalvik/libcore/luni/src/test/java/tests/api/java/net/
MulticastSocketTest.java 331 InetAddress group = null; local
334 group = InetAddress.getByName("224.0.0.3");
335 server = new MulticastServer(group, groupPort);
341 .length(), group, groupPort);
345 assertEquals("Group member did not recv data",
367 InetAddress group = null; local
375 // first validate that we handle a null group ok
379 fail("Did not get exception when group was null");
384 // is not a multicast group
389 fail("Did not get exception when group is not a multicast address")
577 InetAddress group = null; local
616 InetAddress group = null; local
705 InetAddress group = null; local
795 InetAddress group = null; local
    [all...]
  /external/icu4c/common/
ucnv_lmb.c 79 That is, a sometimes-optional 'group' byte, followed by 1 and sometimes 2
127 group byte is for a single byte char set or not we use this define: */
138 each group byte to introduce a fixed-width encoding (to make it faster to
139 count characters), we use a convention of doubling up on the group byte
144 Next, you will notice that the list of group bytes has some gaps.
183 as group '0', as a place to tuck this exceptions list.*/
188 LOTUS added a new group 0x14 to hold Unicode values not otherwise
205 translations even faster,sometimes the optimization group byte can be dropped
207 group byte that is dropped is called the 'optimization group'
844 ulmbcs_byte_t group = FindLMBCSUniRange(uniChar); local
1049 ulmbcs_byte_t group; local
    [all...]
  /external/openssl/crypto/ec/
ecp_nist.c 126 int ec_GFp_nist_group_set_curve(EC_GROUP *group, const BIGNUM *p,
140 group->field_mod_func = BN_nist_mod_192;
144 group->field_mod_func = BN_nist_mod_224;
153 group->field_mod_func = BN_nist_mod_256;
162 group->field_mod_func = BN_nist_mod_384;
170 group->field_mod_func = BN_nist_mod_521;
177 ret = ec_GFp_simple_group_set_curve(group, p, a, b, ctx);
187 int ec_GFp_nist_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a,
193 if (!group || !r || !a || !b)
202 if (!group->field_mod_func(r, r, &group->field, ctx)
    [all...]
ec_print.c 59 BIGNUM *EC_POINT_point2bn(const EC_GROUP *group,
68 buf_len = EC_POINT_point2oct(group, point, form,
76 if (!EC_POINT_point2oct(group, point, form, buf, buf_len, ctx))
89 EC_POINT *EC_POINT_bn2point(const EC_GROUP *group,
111 if ((ret = EC_POINT_new(group)) == NULL)
120 if (!EC_POINT_oct2point(group, ret, buf, buf_len, ctx))
135 char *EC_POINT_point2hex(const EC_GROUP *group,
144 buf_len = EC_POINT_point2oct(group, point, form,
152 if (!EC_POINT_point2oct(group, point, form, buf, buf_len, ctx))
179 EC_POINT *EC_POINT_hex2point(const EC_GROUP *group,
    [all...]
  /external/skia/xcode/Simple/Simple.xcodeproj/
project.pbxproj 36 0099A4C90EF176A5004F1DA4 /* SimpleApp.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = SimpleApp.cpp; sourceTree = "<group>"; };
39 0867D6ABFE840B52C02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
40 1870340FFE93FCAF11CA0CD7 /* English */ = {isa = PBXFileReference; lastKnownFileType = wrapper.nib; name = English; path = English.lproj/main.nib; sourceTree = "<group>"; };
42 5048396D09E3307300765E4B /* SimpleProj.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; path = SimpleProj.xcconfig; sourceTree = "<group>"; };
43 5048396E09E3307300765E4B /* SimpleTarget.xcconfig */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = text.xcconfig; path = SimpleTarget.xcconfig; sourceTree = "<group>"; };
45 8D0C4E960486CD37000505A6 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
67 sourceTree = "<group>";
75 sourceTree = "<group>";
88 sourceTree = "<group>";
97 sourceTree = "<group>";
    [all...]
  /external/webkit/WebCore/rendering/style/
SVGRenderStyleDefs.h 53 #define SVG_RS_DEFINE_ATTRIBUTE_DATAREF(Data, Group, Variable, Type, Name) \
54 Data Name() const { return Group->Variable; } \
55 void set##Type(Data obj) { SVG_RS_SET_VARIABLE(Group, Variable, obj) }
57 #define SVG_RS_DEFINE_ATTRIBUTE_DATAREF_WITH_INITIAL(Data, Group, Variable, Type, Name, Initial) \
58 SVG_RS_DEFINE_ATTRIBUTE_DATAREF(Data, Group, Variable, Type, Name) \
61 #define SVG_RS_DEFINE_ATTRIBUTE_DATAREF_WITH_INITIAL_REFCOUNTED(Data, Group, Variable, Type, Name, Initial) \
62 Data* Name() const { return Group->Variable.get(); } \
64 if (!(Group->Variable == obj)) \
65 Group.access()->Variable = obj; \
69 #define SVG_RS_DEFINE_ATTRIBUTE_DATAREF_WITH_INITIAL_OWNPTR(Data, Group, Variable, Type, Name, Initial)
    [all...]
  /external/e2fsprogs/ext2ed/
ext2_com.c 67 dispatch ("super");dispatch ("group");dispatch ("inode");dispatch ("next");dispatch ("dir");
77 We go to the group descriptors.
78 First, we go to the first group descriptor in the main copy.
79 Then, we use the group's entry command to pass to another group.
  /external/openssl/crypto/ecdsa/
ecs_ossl.c 95 const EC_GROUP *group; local
98 if (eckey == NULL || (group = EC_KEY_get0_group(eckey)) == NULL)
124 if ((tmp_point = EC_POINT_new(group)) == NULL)
129 if (!EC_GROUP_get_order(group, order, ctx))
148 if (!EC_POINT_mul(group, tmp_point, k, NULL, NULL, ctx))
153 if (EC_METHOD_get_field_type(EC_GROUP_method_of(group)) == NID_X9_62_prime_field)
155 if (!EC_POINT_get_affine_coordinates_GFp(group,
164 if (!EC_POINT_get_affine_coordinates_GF2m(group,
219 const EC_GROUP *group; local
225 group = EC_KEY_get0_group(eckey)
350 const EC_GROUP *group; local
    [all...]
  /dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/acl/
AclImpl.java 127 if(principal instanceof Group) {
172 Group group = (Group)enumeration1.nextElement(); local
173 if(group.isMember(principal)) {
174 AclEntry aclentry = (AclEntry)allowedGroupsTable.get(group);
187 Group group = (Group)enumeration1.nextElement(); local
188 if(group.isMember(principal)) {
    [all...]
  /external/iptables/extensions/
libip6t_NFLOG.c 18 { "nflog-group", 1, 0, NFLOG_GROUP },
27 " --nflog-group NUM NETLINK group used for logging\n"
38 info->group = XT_NFLOG_DEFAULT_GROUP;
53 "Can't specify --nflog-group twice");
56 "Unexpected `!' after --nflog-group");
61 "--nflog-group has to be between 1 and 32");
62 info->group = 1 << (n - 1);
121 if (info->group != XT_NFLOG_DEFAULT_GROUP)
122 printf("%snflog-group %u ", prefix, ffs(info->group))
    [all...]
libipt_NFLOG.c 18 { "nflog-group", 1, 0, NFLOG_GROUP },
27 " --nflog-group NUM NETLINK group used for logging\n"
38 info->group = XT_NFLOG_DEFAULT_GROUP;
53 "Can't specify --nflog-group twice");
56 "Unexpected `!' after --nflog-group");
61 "--nflog-group has to be between 1 and 32");
62 info->group = 1 << (n - 1);
121 if (info->group != XT_NFLOG_DEFAULT_GROUP)
122 printf("%snflog-group %u ", prefix, ffs(info->group))
    [all...]
  /external/webkit/WebKitExamplePlugins/NetscapeCocoaPlugin/NetscapeCocoaPlugin.xcodeproj/
project.pbxproj 17 089C167EFE841241C02AAC07 /* English */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = English; path = English.lproj/InfoPlist.strings; sourceTree = "<group>"; };
18 1A624E580DCBC7F6006898C8 /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
20 1AAD6A070DD0DC52003985DA /* MenuHandler.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MenuHandler.h; sourceTree = "<group>"; };
21 1AAD6A080DD0DC52003985DA /* MenuHandler.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MenuHandler.m; sourceTree = "<group>"; };
23 8D576317048677EA00EA77CD /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist; path = Info.plist; sourceTree = "<group>"; };
47 sourceTree = "<group>";
55 sourceTree = "<group>";
64 sourceTree = "<group>";
74 sourceTree = "<group>";
82 sourceTree = "<group>";
    [all...]
  /frameworks/base/awt/org/apache/harmony/awt/
ContextStorage.java 122 ThreadGroup group = thread.getThreadGroup(); local
123 while (group != null) {
124 if (group instanceof ContextThreadGroup) {
125 return (ContextThreadGroup)group;
127 group = group.getParent();
129 // awt.59=Application has run out of context thread group
  /frameworks/base/core/java/android/widget/
CursorTreeAdapter.java 36 * particular group. The Cursors must include a column named "_id" or this class
49 * The map of a group position to the group's children cursor helper (the
50 * cursor helper that is used to get the children for that group)
91 * Gets the cursor helper for the children in the given group.
93 * @param groupPosition The group whose children will be returned
98 * @return The cursor helper for the children of the given group
115 * Gets the Cursor for the children at the given group. Subclasses must
116 * implement this method to return the children data for a particular group.
128 * @param groupCursor The cursor pointing to the group whose children curso
    [all...]

Completed in 214 milliseconds

1 2 3 4 5 6 7 8 91011>>