HomeSort by relevance Sort by last modified time
    Searched defs:group (Results 176 - 200 of 1111) sorted by null

1 2 3 4 5 6 78 91011>>

  /cts/tests/tests/content/src/android/content/pm/cts/
FeatureGroupInfoTest.java 116 FeatureGroupInfo group = new FeatureGroupInfo(); local
117 group.features = featureInfos;
118 return group;
121 private static void sortFeatureInfos(FeatureGroupInfo[] group) {
122 for (FeatureGroupInfo g : group) {
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyPermissionUtil.java 43 private static final String PERMISSION_GROUP_PREFIX = "android.permission-group.";
108 return pi.group != null && pi.protectionLevel == PermissionInfo.PROTECTION_DANGEROUS
110 && isModernPermissionGroup(pi.group);
162 String group = pi.group; local
163 if (group != null) {
164 if (group.startsWith(PERMISSION_GROUP_PREFIX)) {
165 group = group.substring(PERMISSION_GROUP_PREFIX.length());
168 System.out.println(String.format("// Permission: %s [%s]", name, group));
    [all...]
  /external/aac/libAACdec/src/
rvlcconceal.cpp 116 int band,bnds,group,startBand; local
139 for (group=conceal_group_min; group >= 0; group--) {
141 bnds = 16*group+band;
191 int band,bnds,group,startBand; local
215 for (group=conceal_group_max; group < pRvlc->numWindowGroups; group++) {
217 bnds = 16*group+band
269 int band,bnds,startBand,endBand,group; local
405 int band,bnds,startBand,endBand,group; local
535 int band,bnds,group; local
643 int band,bnds,group; local
    [all...]
  /external/boringssl/src/crypto/ecdsa/
ecdsa.c 144 const EC_GROUP *group; local
153 if ((group = EC_KEY_get0_group(eckey)) == NULL ||
176 if (!EC_GROUP_get_order(group, order, ctx)) {
207 point = EC_POINT_new(group);
212 if (!EC_POINT_mul(group, point, u1, pub_key, u2, ctx)) {
216 if (!EC_POINT_get_affine_coordinates_GFp(group, point, X, NULL, ctx)) {
240 const EC_GROUP *group; local
243 if (eckey == NULL || (group = EC_KEY_get0_group(eckey)) == NULL) {
265 tmp_point = EC_POINT_new(group);
270 if (!EC_GROUP_get_order(group, order, ctx))
363 const EC_GROUP *group; local
    [all...]
  /external/conscrypt/src/main/java/org/conscrypt/
OpenSSLECGroupContext.java 147 long group; local
149 group = NativeCrypto.EC_GROUP_new_arbitrary(
157 if (group == 0) {
161 NativeRef.EC_GROUP groupRef = new NativeRef.EC_GROUP(group);
OpenSSLECPrivateKey.java 42 protected transient OpenSSLECGroupContext group; field in class:OpenSSLECPrivateKey
44 public OpenSSLECPrivateKey(OpenSSLECGroupContext group, OpenSSLKey key) {
45 this.group = group;
50 this.group = new OpenSSLECGroupContext(new NativeRef.EC_GROUP(
57 group = OpenSSLECGroupContext.getInstance(ecKeySpec.getParams());
59 key = new OpenSSLKey(NativeCrypto.EVP_PKEY_new_EC_KEY(group.getNativeRef(), null,
67 OpenSSLECGroupContext group; local
69 group = OpenSSLECGroupContext.getInstance(ecPrivateKey.getParams());
71 throw new InvalidKeyException("Unknown group parameters", e)
112 OpenSSLECGroupContext group; local
131 OpenSSLECGroupContext group = OpenSSLECGroupContext.getInstance(ecPrivateKey local
    [all...]
OpenSSLECPublicKey.java 38 protected transient OpenSSLECGroupContext group; field in class:OpenSSLECPublicKey
40 public OpenSSLECPublicKey(OpenSSLECGroupContext group, OpenSSLKey key) {
41 this.group = group;
46 this.group = new OpenSSLECGroupContext(new NativeRef.EC_GROUP(
53 group = OpenSSLECGroupContext.getInstance(ecKeySpec.getParams());
55 NativeCrypto.get_EC_GROUP_type(group.getNativeRef()), group, ecKeySpec.getW());
56 key = new OpenSSLKey(NativeCrypto.EVP_PKEY_new_EC_KEY(group.getNativeRef(),
65 OpenSSLECGroupContext group = OpenSSLECGroupContex local
    [all...]
  /external/deqp/modules/gles2/stress/
es2sVertexArrayTests.cpp 337 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(m_testCtx, "single_attribute", "Single attribute"); member in class:deqp::gles2::Stress::tcu
338 addChild(group);
342 group->addChild(new SingleVertexArrayStrideTests(m_context));
343 group->addChild(new SingleVertexArrayUsageTests(m_context));
344 group->addChild(new SingleVertexArrayOffsetTests(m_context));
345 group->addChild(new SingleVertexArrayFirstTests(m_context));
  /external/deqp/modules/gles31/functional/
es31fInternalFormatQueryTests.cpp 416 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(m_testCtx, textureTargets[groupNdx].name, glu::getInternalFormatTargetName(textureTargets[groupNdx].target)); member in class:deqp::gles31::Functional::tcu
419 addChild(group);
426 group->addChild(new FormatSamplesCase(m_context, name.c_str(), desc.c_str(), texTarget, internalFormats[caseNdx].format, internalFormats[caseNdx].type));
432 tcu::TestCaseGroup* const group = new tcu::TestCaseGroup(m_testCtx, "partial_query", "Query data to too short a buffer"); member in class:deqp::gles31::Functional::tcu
434 addChild(group);
436 group->addChild(new NumSampleCountsBufferCase (m_context, "num_sample_counts", "Query GL_NUM_SAMPLE_COUNTS to too short a buffer"));
437 group->addChild(new SamplesBufferCase (m_context, "samples", "Query GL_SAMPLES to too short a buffer"));
  /external/guava/guava-testlib/src/com/google/common/testing/
RelationshipTester.java 67 public RelationshipTester<T> addRelatedGroup(Iterable<? extends T> group) {
68 groups.add(ImmutableList.copyOf(group));
74 ImmutableList<T> group = groups.get(groupNumber); local
75 for (int itemNumber = 0; itemNumber < group.size(); itemNumber++) {
76 // check related items in same group
77 for (int relatedItemNumber = 0; relatedItemNumber < group.size(); relatedItemNumber++) {
149 .append(" [group ")
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
UCharacterNameReader.java 77 // reading the group information records
81 char group[] = new char[count]; local
83 group[i] = m_byteBuffer_.getChar();
90 data.setGroup(group, groupstring);
131 * Size of the group information block in number of char
144 * Size of an algorithmic name information group
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
IntlTestDecimalFormatSymbols.java 62 char group = en.getGroupingSeparator(); local
63 fr.setGroupingSeparator(group);
  /external/iproute2/ip/
iptuntap.c 40 fprintf(stderr, " [ mode { tun | tap } ] [ user USER ] [ group GROUP ]\n");
44 fprintf(stderr, " GROUP := { STRING | NUMBER }\n");
149 } else if (gid && matches(*argv, "group") == 0) {
151 unsigned long group; local
155 if (**argv && ((group = strtol(*argv, &end, 10)), !*end))
156 *gid = group;
158 struct group *gr = getgrnam(*argv);
160 fprintf(stderr, "invalid group \"%s\"\n", *argv);
275 long flags, owner = -1, group = -1 local
    [all...]
  /external/jmonkeyengine/engine/src/tools/jme3tools/converters/model/
ModelConverter.java 81 for (PrimitiveGroup group : groups)
82 numElements += group.numIndices;
95 PrimitiveGroup group = groups[i]; local
96 elementLengths[i] = group.numIndices;
98 if (modeStart[group.type] == -1){
99 modeStart[group.type] = i;
102 int[] trimmedIndices = group.getTrimmedIndices();
107 curIndex += group.numIndices;
  /external/libnl/include/netlink/
netlink-kernel.h 19 /** Multicast group subscriptions */
193 __u32 group; member in struct:nl_pktinfo
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/filesystem/
AbstractFileSystemEntry.java 35 private String group; field in class:AbstractFileSystemEntry
54 return group;
57 public void setGroup(String group) {
58 this.group = group;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/
TrackMetaData.java 32 private int group = 0; field in class:TrackMetaData
124 return group;
127 public void setGroup(int group) {
128 this.group = group;
  /external/protobuf/src/google/protobuf/
unknown_field_set.cc 237 UnknownFieldSet* group = new UnknownFieldSet; local
238 group->MergeFrom(*group_);
239 group_ = group;
  /external/wpa_supplicant_8/src/common/
sae.h 49 int group; member in struct:sae_data
54 int sae_set_group(struct sae_data *sae, int group);
68 u16 sae_group_allowed(struct sae_data *sae, int *allowed_groups, u16 group);
  /external/wpa_supplicant_8/src/eap_common/
eap_pwd_common.h 17 * definition of a finite cyclic group
22 EC_GROUP *group; member in struct:group_definition_
  /frameworks/base/core/java/android/content/pm/
PermissionInfo.java 136 * The group this permission is a part of, as per
139 public String group; field in class:PermissionInfo
237 group = orig.group;
280 dest.writeString(group);
299 group = source.readString();
VerifierDeviceIdentity.java 108 * group.
117 * GROUP_SIZE) to make the odd-size group appear at the end instead
127 final int group = (int) (input & 0x1F); local
130 encoded[--index] = alphabet[group];
143 final int group = input[i]; local
150 if ('A' <= group && group <= 'Z') {
151 value = group - 'A';
152 } else if ('2' <= group && group <= '7')
    [all...]
  /frameworks/base/core/java/android/nfc/cardemulation/
AidGroup.java 16 * The AidGroup class represents a group of Application Identifiers (AIDs).
26 * The maximum number of AIDs that can be present in any one group.
39 * @param aids The list of AIDs present in the group
40 * @param category The category of this group, e.g. {@link CardEmulation#CATEGORY_PAYMENT}
44 throw new IllegalArgumentException("No AIDS in AID group.");
47 throw new IllegalArgumentException("Too many AIDs in AID group.");
73 * @return the category of this AID group
80 * @return the list of AIDs in this group
134 AidGroup group = null; local
149 Log.d(TAG, "Ignoring <aid> tag while not in group");
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
ClipRegionActivity.java 35 final RegionView group = new RegionView(this); local
39 group.addView(text);
41 setContentView(group);
43 ObjectAnimator animator = ObjectAnimator.ofFloat(group, "clipPosition", 0.0f, 1.0f);
  /frameworks/base/tools/layoutlib/bridge/src/android/view/
LayoutInflater_Delegate.java 159 final ViewGroup group = (ViewGroup) parent; local
183 params = group.generateLayoutParams(attrs);
192 params = group.generateLayoutParams(childAttrs);
215 group.addView(view);

Completed in 534 milliseconds

1 2 3 4 5 6 78 91011>>