HomeSort by relevance Sort by last modified time
    Searched refs:group (Results 51 - 75 of 689) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/content/pm/
PermissionInfo.java 58 * The group this permission is a part of, as per
61 public String group; field in class:PermissionInfo
91 group = orig.group;
133 dest.writeString(group);
151 group = source.readString();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle1/
PaletteFactory.java 63 PaletteGroup group = new PaletteGroup("Tools"); local
70 group.add(entry);
74 paletteRoot.add(group);
79 PaletteDrawer group = new PaletteDrawer(groupName); local
90 group.add(entry);
93 paletteRoot.add(group);
  /external/e2fsprogs/lib/ext2fs/
alloc_sb.c 2 * alloc_sb.c --- Allocate the superblock and block group descriptors for a
31 dgrp_t group,
37 num_blocks = ext2fs_super_and_bgd_loc(fs, group, &super_blk,
46 if (super_blk || (group == 0))
  /external/protobuf/gtest/xcode/Scripts/
versiongenerate.py 49 major_version = version_values.group(1)
50 minor_version = version_values.group(2)
51 fix_version = version_values.group(3)
  /external/webkit/JavaScriptCore/API/
JSContextRef.h 43 @abstract Creates a JavaScript context group.
45 Contexts in the same group may share and exchange JavaScript objects. Sharing and/or exchanging
47 When objects from the same context group are used in multiple threads, explicit
55 @abstract Retains a JavaScript context group.
56 @param group The JSContextGroup to retain.
57 @result A JSContextGroup that is the same as group.
59 JS_EXPORT JSContextGroupRef JSContextGroupRetain(JSContextGroupRef group) AVAILABLE_IN_WEBKIT_VERSION_4_0;
63 @abstract Releases a JavaScript context group.
64 @param group The JSContextGroup to release.
66 JS_EXPORT void JSContextGroupRelease(JSContextGroupRef group) AVAILABLE_IN_WEBKIT_VERSION_4_0
    [all...]
JSContextRef.cpp 52 JSContextGroupRef JSContextGroupRetain(JSContextGroupRef group)
54 toJS(group)->ref();
55 return group;
58 void JSContextGroupRelease(JSContextGroupRef group)
60 toJS(group)->deref();
82 JSGlobalContextRef JSGlobalContextCreateInGroup(JSContextGroupRef group, JSClassRef globalObjectClass)
87 RefPtr<JSGlobalData> globalData = group ? PassRefPtr<JSGlobalData>(toJS(group)) : JSGlobalData::createNonDefault();
  /frameworks/base/media/libstagefright/codecs/aacdec/
calc_gsfb_table.cpp 43 group[] = array that contains the grouping information of short
44 windows (stop index of windows in each group).
58 scalefactor bands in each group
71 scalefactor band in each group.
72 All windows within one group share the same scalefactors and are interleaved
73 on a scalefactor band basis. Within each group, the actual length of one
81 with the cumulative bandwidth of each scalefactor band in each group
119 pFrameInfo->group_len[group_idx] = group[group_idx] - offset;
120 offset = group[group_idx];
213 Int group[])
    [all...]
apply_ms_synt.h 81 const Int group[],
get_ics_info.h 95 Int group[],
pns_left.h 89 const Int group[],
  /bionic/libc/tools/
genserv.py 55 service = Service( m.group(1), int(m.group(2)), m.group(3) )
56 rest = string.strip(m.group(4))
62 service.add_alias(m.group(1))
63 rest = string.strip(m.group(2))
  /dalvik/dx/tests/098-dex-jsr-ret-throw/
ViewDebug$ViewServer.class 
  /external/webkit/WebCore/loader/appcache/
ApplicationCacheHost.cpp 58 m_applicationCache->group()->disassociateDocumentLoader(m_documentLoader);
126 ApplicationCacheGroup* group = m_candidateApplicationCacheGroup; local
127 if (!group && m_applicationCache) {
129 group = m_applicationCache->group();
132 if (group)
133 group->failedLoadingMainResource(m_documentLoader);
138 ApplicationCacheGroup* group = candidateApplicationCacheGroup(); local
139 if (!group && applicationCache() && !mainResourceApplicationCache())
140 group = applicationCache()->group()
    [all...]
ApplicationCacheStorage.cpp 111 LOG_ERROR("Could not load cache group, error \"%s\"", m_database.lastErrorMsg());
121 ApplicationCacheGroup* group = new ApplicationCacheGroup(manifestURL);
123 group->setStorageID(static_cast<unsigned>(statement.getColumnInt64(0)));
124 group->setNewestCache(cache.release());
126 return group;
140 // Look up the group in the database
141 ApplicationCacheGroup* group = loadCacheGroup(manifestURL); local
143 // If the group was not found we need to create it
144 if (!group) {
145 group = new ApplicationCacheGroup(manifestURL)
192 ApplicationCacheGroup* group = it->second; local
240 ApplicationCacheGroup* group = new ApplicationCacheGroup(manifestURL); local
263 ApplicationCacheGroup* group = it->second; local
307 ApplicationCacheGroup* group = new ApplicationCacheGroup(manifestURL); local
1054 ApplicationCacheGroup* group = m_cachesInMemory.get(manifestURL); local
    [all...]
  /external/openssl/crypto/ecdh/
ech_ossl.c 116 const EC_GROUP* group; local
139 group = EC_KEY_get0_group(ecdh);
140 if ((tmp=EC_POINT_new(group)) == NULL)
146 if (!EC_POINT_mul(group, tmp, NULL, pub_key, priv_key, ctx))
152 if (EC_METHOD_get_field_type(EC_GROUP_method_of(group)) == NID_X9_62_prime_field)
154 if (!EC_POINT_get_affine_coordinates_GFp(group, tmp, x, y, ctx))
162 if (!EC_POINT_get_affine_coordinates_GF2m(group, tmp, x, y, ctx))
169 buflen = (EC_GROUP_get_degree(group) + 7)/8;
  /external/bluetooth/glib/glib/
goption.h 67 GOptionGroup *group,
72 GOptionGroup *group,
133 GOptionGroup *group);
135 GOptionGroup *group);
139 GOptionGroup *group);
146 void g_option_group_set_parse_hooks (GOptionGroup *group,
149 void g_option_group_set_error_hook (GOptionGroup *group,
151 void g_option_group_free (GOptionGroup *group);
152 void g_option_group_add_entries (GOptionGroup *group,
154 void g_option_group_set_translate_func (GOptionGroup *group,
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AaptParser.java 161 String lineStr = m.group(1);
162 String msg = m.group(2);
170 String location = m.group(1);
183 String location = m.group(1);
209 String msg = m.group(1);
217 String location = m.group(1);
218 String lineStr = m.group(2);
230 String location = m.group(1);
231 String lineStr = m.group(2);
232 String msg = m.group(3)
    [all...]
  /external/openssl/crypto/ec/
ec_ameth.c 70 const EC_GROUP *group; local
72 if (ec_key == NULL || (group = EC_KEY_get0_group(ec_key)) == NULL)
77 if (EC_GROUP_get_asn1_flag(group)
78 && (nid = EC_GROUP_get_curve_name(group)))
158 EC_GROUP *group; local
168 group = EC_GROUP_new_by_curve_name(OBJ_obj2nid(poid));
169 if (group == NULL)
171 EC_GROUP_set_asn1_flag(group, OPENSSL_EC_NAMED_CURVE);
172 if (EC_KEY_set_group(eckey, group) == 0)
174 EC_GROUP_free(group);
229 const EC_GROUP *group = EC_KEY_get0_group(b->pkey.ec); local
268 const EC_GROUP *group; local
374 const EC_GROUP *group; local
403 EC_GROUP *group = EC_GROUP_dup(EC_KEY_get0_group(from->pkey.ec)); local
435 const EC_GROUP *group; local
    [all...]
  /libcore/luni/src/main/java/java/lang/
Thread.java 135 volatile ThreadGroup group; field in class:Thread
271 * @param group
278 * if <code>group.checkAccess()</code> fails with a
281 * if <code>group.destroy()</code> has already been done
287 public Thread(ThreadGroup group, Runnable runnable) {
288 create(group, runnable, null, 0);
295 * @param group
303 * if <code>group.checkAccess()</code> fails with a
306 * if <code>group.destroy()</code> has already been done
312 public Thread(ThreadGroup group, Runnable runnable, String threadName)
    [all...]
  /build/core/
raw_executable.mk 23 --start-group $(PRIVATE_ALL_STATIC_LIBRARIES) --end-group \
  /external/clearsilver/python/examples/base/
wordwrap.py 12 if matchobj.group(1) != ' ' and matchobj.group(2) != ' ':
17 return matchobj.group(1) + repl_with + matchobj.group(2)
  /external/webkit/WebKit/mac/History/
WebHistoryInternal.h 37 - (void)_addVisitedLinksToPageGroup:(WebCore::PageGroup&)group;
  /frameworks/base/core/java/android/pim/vcard/
VCardInterpreter.java 33 * The term "property" is one line in vCard entry, which consists of "group", "property name",
76 * @param group A group name. This method may be called more than once or may not be
79 void propertyGroup(String group);
  /packages/apps/Tag/src/com/android/vcard/
VCardInterpreter.java 33 * The term "property" is one line in vCard entry, which consists of "group", "property name",
76 * @param group A group name. This method may be called more than once or may not be
79 void propertyGroup(String group);
  /external/qemu/android/skin/
composer.c 24 if (p->any.type == SKIN_PLATE_SURFACE || p->group.hasRegion)
27 int n, count = areflist_count( p->group.children );
33 SkinPlate* child = areflist_get( p->group.children, n );
40 p->group.hasRegion = 1;
48 if ( p->any.type != SKIN_PLATE_SURFACE && !p->group.hasRegion ) {
59 if (p->any.type != SKIN_PLATE_SURFACE && !p->group.hasOpaqueRegion) {
60 int n, count = areflist_count( p->group.children );
62 skin_region_reset(p->group.opaqueRegion);
66 SkinPlate* child = areflist_get( p->group.children, n );
70 skin_region_union( p->group.opaqueRegion, r)
    [all...]

Completed in 1584 milliseconds

1 23 4 5 6 7 8 91011>>