Searched defs:group (Results 201 - 225 of 504) sorted by relevance

1234567891011>>

/external/apache-xml/src/main/java/org/apache/xpath/compiler/
H A DCompiler.java168 expr = group(opPos); break;
558 * Compile an expression group.
566 protected Expression group(int opPos) throws TransformerException method in class:Compiler
/external/chromium_org/base/metrics/
H A Dfield_trial.cc83 // the trial to the default group.
85 // Only reset when not already the default group, because in case we were
86 // forced to the default group, the group number may not be
95 // When the group choice was previously forced, we only need to return the
96 // the id of the chosen group, and anything can be returned for the others.
101 // forced trial, it will not have the same value as the default group
122 // This is the group that crossed the random line, so we do the assignment.
128 int FieldTrial::group() { function in class:base::FieldTrial
136 // Call |group()| t
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/infobar/
H A DInfoBarLayout.java281 * Adds a group of Views that are measured and laid out together.
284 Group group = new Group();
285 group.views = views;
290 return group;
414 * Places a group of views on the current row, or stacks them over multiple rows if
415 * group.isStacked is true. mStart, mEnd, and mBottom are updated to reflect the space taken by
416 * the group.
418 private void placeGroup(Group group) { argument
419 if (group.gravity == Gravity.END) {
420 for (int i = group
474 getWidthWithMargins(Group group) argument
[all...]
/external/chromium_org/chrome/app/
H A Dclient_util.cc75 // being in an experiment population and experimental group thereof.
76 void GetPreReadPopulationAndGroup(double* population, double* group) { argument
102 *group = base::BitsToOpenEndedUnitInterval(random_bits[1]);
105 // Gets the amount of pre-read to use as well as the experiment group in which
118 // in which experimental group.
120 double group = 0.0; local
121 GetPreReadPopulationAndGroup(&population, &group);
136 value = static_cast<size_t>(group * 21.0) * 5;
143 // Generate the group name corresponding to this percentage value.
147 // Persist the group nam
[all...]
/external/chromium_org/chrome/browser/extensions/
H A Dextension_system_impl.cc245 const std::string group = base::FieldTrialList::FindFullName( local
247 if (group == "EnforceStrict")
249 else if (group == "Enforce")
251 else if (group == "Bootstrap")
285 // if the experiment group says it should be on, or malware may just modify
/external/chromium_org/chrome/browser/search/
H A Dhotword_service.cc427 std::string group = base::FieldTrialList::FindFullName( local
429 return !group.empty() &&
430 group != hotword_internal::kHotwordFieldTrialDisabledGroupName &&
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_metrics.cc41 // First, translates |field_type| to the corresponding logical |group| from
46 // The interpolation maps the pair (|group|, |metric|) to a single index, so
47 // that all the indicies for a given group are adjacent. In particular, with
67 FieldTypeGroupForMetrics group = AMBIGUOUS; local
68 switch (AutofillType(field_type).group()) {
70 group = AMBIGUOUS;
75 group = NAME;
79 group = COMPANY;
86 group = ADDRESS_LINE_1;
89 group
[all...]
/external/chromium_org/content/browser/appcache/
H A Dappcache_host.cc99 // after cache or group loading is complete.
221 AppCacheGroup* group = associated_cache_->owning_group(); local
222 if (!group->is_obsolete() && !group->is_being_deleted()) {
224 group->StartUpdate();
322 // A cache without an owning group represents the cache being constructed
344 void AppCacheHost::OnGroupLoaded(AppCacheGroup* group, argument
348 FinishCacheSelection(NULL, group);
368 AppCache *cache, AppCacheGroup* group) {
392 } else if (group
367 FinishCacheSelection( AppCache *cache, AppCacheGroup* group) argument
437 ObserveGroupBeingUpdated(AppCacheGroup* group) argument
444 OnUpdateComplete(AppCacheGroup* group) argument
464 SetSwappableCache(AppCacheGroup* group) argument
[all...]
H A Dappcache_storage.h49 // If a load fails the 'group' will be NULL.
51 AppCacheGroup* group, const GURL& manifest_url) {}
55 AppCacheGroup* group, AppCache* newest_cache, bool success,
59 virtual void OnGroupMadeObsolete(AppCacheGroup* group, argument
72 // containing cache and group are also returned.
97 // Schedules a group and its newest cache, if any, to be loaded from storage.
98 // Upon load completion the delegate will be called back. If the group
101 // the delegate will be called back with a NULL group pointer.
114 // Schedules a group and its newest complete cache to be initially stored or
116 // will be called back. A group withou
50 OnGroupLoaded( AppCacheGroup* group, const GURL& manifest_url) argument
54 OnGroupAndNewestCacheStored( AppCacheGroup* group, AppCache* newest_cache, bool success, bool would_exceed_quota) argument
[all...]
H A Dmock_appcache_storage.cc71 AppCacheGroup* group = working_set_.GetGroup(manifest_url); local
72 if (ShouldGroupLoadAppearAsync(group)) {
84 AppCacheGroup* group, AppCache* newest_cache, Delegate* delegate) {
85 DCHECK(group && delegate && newest_cache);
90 weak_factory_.GetWeakPtr(), make_scoped_refptr(group),
142 void MockAppCacheStorage::MakeGroupObsolete(AppCacheGroup* group, argument
145 DCHECK(group && delegate);
151 make_scoped_refptr(group),
199 scoped_refptr<AppCacheGroup> group(working_set_.GetGroup(manifest_url));
203 if (!group
83 StoreGroupAndNewestCache( AppCacheGroup* group, AppCache* newest_cache, Delegate* delegate) argument
210 ProcessStoreGroupAndNewestCache( scoped_refptr<AppCacheGroup> group, scoped_refptr<AppCache> newest_cache, scoped_refptr<DelegateReference> delegate_ref) argument
253 MaybeTakeNewNamespaceEntry( AppCacheNamespaceType namespace_type, const AppCacheEntry &entry, const GURL& namespace_url, bool cache_is_in_use, FoundCandidate* best_candidate, GURL* best_candidate_namespace, AppCache* cache, AppCacheGroup* group) argument
336 AppCacheGroup* group = it->second.get(); local
420 ProcessMakeGroupObsolete( scoped_refptr<AppCacheGroup> group, scoped_refptr<DelegateReference> delegate_ref, int response_code) argument
490 AddStoredGroup(AppCacheGroup* group) argument
498 RemoveStoredGroup(AppCacheGroup* group) argument
502 ShouldGroupLoadAppearAsync( const AppCacheGroup* group) argument
[all...]
/external/chromium_org/net/spdy/
H A Dspdy_priority_forest.h466 std::vector<NodeId> group; local
467 group.push_back(node_id);
476 group.push_back(next->child);
480 return group[base::RandGenerator(group.size())];
/external/chromium_org/sync/sessions/
H A Dmodel_type_registry.cc147 ModelSafeGroup group = routing_iter->second; local
149 worker_it = workers_map_.find(group);
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebPluginScrollbarImpl.cpp60 ScrollbarGroup* group,
62 : m_group(group)
59 WebPluginScrollbarImpl(Orientation orientation, ScrollbarGroup* group, WebPluginScrollbarClient* client) argument
/external/chromium_org/third_party/boringssl/src/crypto/ec/
H A Dec.c283 EC_GROUP *group = NULL; local
311 if (((group = ec_group_new(meth)) == NULL) ||
312 (!(group->meth->group_set_curve(group, p, a, b, ctx)))) {
317 if ((group = ec_group_new_curve_GFp(p, a, b, ctx)) == NULL) {
323 if ((P = EC_POINT_new(group)) == NULL) {
334 if (!EC_POINT_set_affine_coordinates_GFp(group, P, x, y, ctx)) {
344 group->generator = P;
346 if (!BN_copy(&group->order, order) ||
347 !BN_set_word(&group
400 EC_GROUP_free(EC_GROUP *group) argument
501 EC_GROUP_get0_generator(const EC_GROUP *group) argument
505 EC_GROUP_get_order(const EC_GROUP *group, BIGNUM *order, BN_CTX *ctx) argument
513 EC_GROUP_get_cofactor(const EC_GROUP *group, BIGNUM *cofactor, BN_CTX *ctx) argument
522 EC_GROUP_get_curve_GFp(const EC_GROUP *group, BIGNUM *out_p, BIGNUM *out_a, BIGNUM *out_b, BN_CTX *ctx) argument
532 EC_GROUP_get_curve_name(const EC_GROUP *group) argument
534 EC_GROUP_get_degree(const EC_GROUP *group) argument
543 EC_GROUP_set_point_conversion_form(EC_GROUP *group, point_conversion_form_t form) argument
548 EC_GROUP_precompute_mult(EC_GROUP *group, BN_CTX *ctx) argument
561 EC_GROUP_have_precompute_mult(const EC_GROUP *group) argument
574 EC_POINT_new(const EC_GROUP *group) argument
642 EC_POINT_dup(const EC_POINT *a, const EC_GROUP *group) argument
664 EC_POINT_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
677 EC_POINT_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
690 EC_POINT_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
704 EC_POINT_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
717 EC_POINT_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
730 EC_POINTs_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
748 EC_POINT_get_affine_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
764 EC_POINT_set_affine_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
780 EC_POINT_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
795 EC_POINT_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
809 EC_POINT_invert(const EC_GROUP *group, EC_POINT *a, BN_CTX *ctx) argument
821 EC_POINT_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *g_scalar, const EC_POINT *point, const BIGNUM *p_scalar, BN_CTX *ctx) argument
835 EC_POINTs_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar, size_t num, const EC_POINT *points[], const BIGNUM *scalars[], BN_CTX *ctx) argument
846 ec_point_set_Jprojective_coordinates_GFp(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx) argument
[all...]
H A Dec_asn1.c158 ECPKPARAMETERS *ec_asn1_group2pkparameters(const EC_GROUP *group, argument
176 nid = EC_GROUP_get_curve_name(group);
204 * group order. */
238 EC_GROUP *group = NULL; local
248 group = ec_asn1_pkparameters2group(params);
249 if (group == NULL) {
259 *groupp = group;
263 return group;
266 static int i2d_ECPKParameters(const EC_GROUP *group, uint8_t **outp) { argument
268 ECPKPARAMETERS *tmp = ec_asn1_group2pkparameters(group, NUL
[all...]
H A Dinternal.h164 int (*mul)(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
167 int (*precompute_mult)(EC_GROUP *group, BN_CTX *);
168 int (*have_precompute_mult)(const EC_GROUP *group);
255 int ec_wNAF_mul(const EC_GROUP *group, EC_POINT *r, const BIGNUM *scalar,
258 int ec_wNAF_precompute_mult(EC_GROUP *group, BN_CTX *);
259 int ec_wNAF_have_precompute_mult(const EC_GROUP *group);
328 int ec_point_set_Jprojective_coordinates_GFp(const EC_GROUP *group,
336 EC_GROUP *group; member in struct:ec_key_st
358 /* cofactor is the cofactor of the group (i.e. the number of elements in the
359 * group divide
[all...]
H A Dsimple.c133 int ec_GFp_simple_group_init(EC_GROUP *group) { argument
134 BN_init(&group->field);
135 BN_init(&group->a);
136 BN_init(&group->b);
137 group->a_is_minus3 = 0;
141 void ec_GFp_simple_group_finish(EC_GROUP *group) { argument
142 BN_free(&group->field);
143 BN_free(&group->a);
144 BN_free(&group->b);
147 void ec_GFp_simple_group_clear_finish(EC_GROUP *group) { argument
164 ec_GFp_simple_group_set_curve(EC_GROUP *group, const BIGNUM *p, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
223 ec_GFp_simple_group_get_curve(const EC_GROUP *group, BIGNUM *p, BIGNUM *a, BIGNUM *b, BN_CTX *ctx) argument
268 ec_GFp_simple_group_get_degree(const EC_GROUP *group) argument
272 ec_GFp_simple_group_check_discriminant(const EC_GROUP *group, BN_CTX *ctx) argument
377 ec_GFp_simple_point_set_to_infinity(const EC_GROUP *group, EC_POINT *point) argument
384 ec_GFp_simple_set_Jprojective_coordinates_GFp( const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, const BIGNUM *z, BN_CTX *ctx) argument
440 ec_GFp_simple_get_Jprojective_coordinates_GFp(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BIGNUM *z, BN_CTX *ctx) argument
489 ec_GFp_simple_point_set_affine_coordinates(const EC_GROUP *group, EC_POINT *point, const BIGNUM *x, const BIGNUM *y, BN_CTX *ctx) argument
503 ec_GFp_simple_point_get_affine_coordinates(const EC_GROUP *group, const EC_POINT *point, BIGNUM *x, BIGNUM *y, BN_CTX *ctx) argument
610 ec_GFp_simple_add(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
795 ec_GFp_simple_dbl(const EC_GROUP *group, EC_POINT *r, const EC_POINT *a, BN_CTX *ctx) argument
934 ec_GFp_simple_invert(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
942 ec_GFp_simple_is_at_infinity(const EC_GROUP *group, const EC_POINT *point) argument
946 ec_GFp_simple_is_on_curve(const EC_GROUP *group, const EC_POINT *point, BN_CTX *ctx) argument
1049 ec_GFp_simple_cmp(const EC_GROUP *group, const EC_POINT *a, const EC_POINT *b, BN_CTX *ctx) argument
1156 ec_GFp_simple_make_affine(const EC_GROUP *group, EC_POINT *point, BN_CTX *ctx) argument
1195 ec_GFp_simple_points_make_affine(const EC_GROUP *group, size_t num, EC_POINT *points[], BN_CTX *ctx) argument
1351 ec_GFp_simple_field_mul(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, const BIGNUM *b, BN_CTX *ctx) argument
1356 ec_GFp_simple_field_sqr(const EC_GROUP *group, BIGNUM *r, const BIGNUM *a, BN_CTX *ctx) argument
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/evp/
H A Dp_ec_asn1.c70 const EC_GROUP *group; local
73 if (ec_key == NULL || (group = EC_KEY_get0_group(ec_key)) == NULL) {
78 nid = EC_GROUP_get_curve_name(group);
145 EC_GROUP *group; local
154 group = EC_GROUP_new_by_curve_name(OBJ_obj2nid(poid));
155 if (group == NULL) {
158 if (EC_KEY_set_group(eckey, group) == 0) {
161 EC_GROUP_free(group);
211 const EC_GROUP *group = EC_KEY_get0_group(b->pkey.ec); local
214 r = EC_POINT_cmp(group, p
250 const EC_GROUP *group; local
347 const EC_GROUP *group; local
370 EC_GROUP *group = EC_GROUP_dup(EC_KEY_get0_group(from->pkey.ec)); local
394 const EC_GROUP *group; local
[all...]
/external/chromium_org/third_party/re2/re2/testing/
H A Dre2_test.cc352 StringPiece group[4]; local
357 group, arraysize(group)));
362 group, arraysize(group)));
363 CHECK_EQ(group[0], "chrisr:9000");
364 CHECK_EQ(group[1], "chrisr:9000");
365 CHECK_EQ(group[2], "chrisr");
366 CHECK_EQ(group[3], "9000");
1361 // Opening parentheses annotated with group ID
[all...]
/external/chromium_org/third_party/webrtc/video_engine/
H A Dvie_channel_manager.cc87 // Create a new channel group and add this channel.
88 ChannelGroup* group = new ChannelGroup(engine_id_, module_process_thread_, local
90 BitrateController* bitrate_controller = group->GetBitrateController();
100 group->GetRemoteBitrateEstimator();
102 group->GetEncoderStateFeedback();
104 group->GetCallStats()->rtcp_rtt_stats();
114 delete group;
127 group->AddChannel(*channel_id);
128 channel_groups_.push_back(group);
130 group
211 ChannelGroup* group = NULL; local
344 ChannelGroup* group = FindGroup(channel_id); local
357 ChannelGroup* group = FindGroup(channel_id); local
391 ChannelGroup* group = FindGroup(channel_id); local
402 ChannelGroup* group = FindGroup(channel_id); local
413 ChannelGroup* group = FindGroup(channel_id); local
[all...]
/external/compiler-rt/lib/asan/
H A Dasan_mac.cc342 INTERCEPTOR(void, dispatch_group_async_f, dispatch_group_t group, argument
352 REAL(dispatch_group_async_f)(group, dq, (void*)asan_ctxt,
/external/deqp/executor/tools/
H A DxeBatchResultToXml.cpp293 const xe::TestGroup* group = static_cast<const xe::TestGroup*>(testNode); local
298 for (int childNdx = 0; childNdx < group->getNumChildren(); childNdx++)
299 writeTestCaseListNode(group->getChild(childNdx), resultMap, dst);
H A DxeCommandLineExecutor.cpp247 static void addMatchingCases (const xe::TestGroup& group, xe::TestSet& testSet, const char* filter) argument
249 for (int childNdx = 0; childNdx < group.getNumChildren(); childNdx++)
251 const xe::TestNode* child = group.getChild(childNdx);
259 // Recurse into group.
271 static void removeMatchingCases (const xe::TestGroup& group, xe::TestSet& testSet, const char* filter) argument
273 for (int childNdx = 0; childNdx < group.getNumChildren(); childNdx++)
275 const xe::TestNode* child = group.getChild(childNdx);
283 // Recurse into group.
/external/deqp/executor/
H A DxeBatchExecutor.cpp311 const TestGroup* group = static_cast<const TestGroup*>(node); local
316 for (int ndx = 0; ndx < group->getNumChildren(); ndx++)
318 const TestNode* child = group->getChild(ndx);
H A DxeTestCase.cpp258 void addChildGroupsToMap (std::map<std::string, TestGroup*>& groupMap, TestGroup* group) argument
260 for (int ndx = 0; ndx < group->getNumChildren(); ndx++)
262 TestNode* node = group->getChild(ndx);
328 static void addChildren (std::set<const TestNode*>& nodeSet, const TestGroup* group) argument
330 for (int ndx = 0; ndx < group->getNumChildren(); ndx++)
332 const TestNode* child = group->getChild(ndx);
340 static void removeChildren (std::set<const TestNode*>& nodeSet, const TestGroup* group) argument
342 for (int ndx = 0; ndx < group->getNumChildren(); ndx++)
344 const TestNode* child = group->getChild(ndx);
352 static bool hasChildrenInSet (const std::set<const TestNode*>& nodeSet, const TestGroup* group) argument
362 removeEmptyGroups(std::set<const TestNode*>& nodeSet, const TestGroup* group) argument
465 const TestGroup* group = m_iterStack.back().group; local
[all...]

Completed in 362 milliseconds

1234567891011>>