Home
last modified time | relevance | path

Searched refs:extras (Results 1 – 25 of 276) sorted by relevance

12345678910>>...12

/external/robolectric-shadows/shadows/playservices/src/main/java/org/robolectric/shadows/gms/
DShadowGoogleAuthUtil.java72 Bundle extras) throws IOException, UserRecoverableAuthException, GoogleAuthException { in getToken() argument
73 return googleAuthUtilImpl.getToken(context, account, scope, extras); in getToken()
84 Bundle extras) throws IOException, UserRecoverableAuthException, GoogleAuthException { in getToken() argument
85 return googleAuthUtilImpl.getToken(context, accountName, scope, extras); in getToken()
90 String scope, Bundle extras) in getTokenWithNotification() argument
92 return googleAuthUtilImpl.getTokenWithNotification(context, account, scope, extras); in getTokenWithNotification()
97 String scope, Bundle extras, Intent callback) in getTokenWithNotification() argument
100 .getTokenWithNotification(context, account, scope, extras, callback); in getTokenWithNotification()
105 String scope, Bundle extras, String authority, Bundle syncBundle) in getTokenWithNotification() argument
108 .getTokenWithNotification(context, account, scope, extras, authority, syncBundle); in getTokenWithNotification()
[all …]
/external/tensorflow/tensorflow/python/platform/
Dbenchmark.py56 throughput=None, extras=None): argument
71 if extras is not None:
72 if not isinstance(extras, dict):
79 throughput is not None else -1, str(extras) if extras else "")
92 if extras is not None:
93 for (k, v) in extras.items():
95 entry.extras[k].double_value = v
97 entry.extras[k].string_value = str(v)
171 extras=None, argument
188 throughput=throughput, extras=extras)
[all …]
/external/skia/src/compute/skc/
Dstyling.c74 styling->extras.count = 0; in skc_styling_reset()
106 styling->groups.extent[group_id].cmds.enter = styling->extras.count; in skc_styling_group_enter()
108 memcpy(styling->extras.extent + styling->extras.count,cmds,n * sizeof(*cmds)); in skc_styling_group_enter()
110 styling->extras.count += n; in skc_styling_group_enter()
123 styling->groups.extent[group_id].cmds.leave = styling->extras.count; in skc_styling_group_leave()
125 memcpy(styling->extras.extent + styling->extras.count,cmds,n * sizeof(*cmds)); in skc_styling_group_leave()
127 styling->extras.count += n; in skc_styling_group_leave()
143 .base = styling->extras.count in skc_styling_group_parents()
147 styling->extras.extent[styling->extras.count++].parent = parents[n]; in skc_styling_group_parents()
187 .cmds = styling->extras.count, in skc_styling_group_layer()
[all …]
/external/skqp/src/compute/skc/
Dstyling.c74 styling->extras.count = 0; in skc_styling_reset()
106 styling->groups.extent[group_id].cmds.enter = styling->extras.count; in skc_styling_group_enter()
108 memcpy(styling->extras.extent + styling->extras.count,cmds,n * sizeof(*cmds)); in skc_styling_group_enter()
110 styling->extras.count += n; in skc_styling_group_enter()
123 styling->groups.extent[group_id].cmds.leave = styling->extras.count; in skc_styling_group_leave()
125 memcpy(styling->extras.extent + styling->extras.count,cmds,n * sizeof(*cmds)); in skc_styling_group_leave()
127 styling->extras.count += n; in skc_styling_group_leave()
143 .base = styling->extras.count in skc_styling_group_parents()
147 styling->extras.extent[styling->extras.count++].parent = parents[n]; in skc_styling_group_parents()
187 .cmds = styling->extras.count, in skc_styling_group_layer()
[all …]
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowNotification.java33 ? realNotification.extras.getCharSequence(Notification.EXTRA_TITLE) in getContentTitle()
39 ? realNotification.extras.getCharSequence(Notification.EXTRA_TEXT) in getContentText()
45 return realNotification.extras.getCharSequence(Notification.EXTRA_INFO_TEXT); in getContentInfo()
57 return realNotification.extras.getCharSequence(Notification.EXTRA_BIG_TEXT); in getBigText()
65 return realNotification.extras.getCharSequence(Notification.EXTRA_TITLE_BIG); in getBigContentTitle()
73 return realNotification.extras.getCharSequence(Notification.EXTRA_SUMMARY_TEXT); in getBigContentText()
81 return realNotification.extras.getParcelable(Notification.EXTRA_PICTURE); in getBigPicture()
91 ? realNotification.extras.getBoolean(Notification.EXTRA_SHOW_WHEN) in isWhenShown()
102 ? realNotification.extras.getBoolean(Notification.EXTRA_PROGRESS_INDETERMINATE) in isIndeterminate()
108 ? realNotification.extras.getInt(Notification.EXTRA_PROGRESS_MAX) in getMax()
[all …]
DShadowTelecomManager.java288 protected void addNewIncomingCall(PhoneAccountHandle phoneAccount, Bundle extras) { in addNewIncomingCall() argument
289 incomingCalls.add(new CallRecord(phoneAccount, extras)); in addNewIncomingCall()
298 public void addNewUnknownCall(PhoneAccountHandle phoneAccount, Bundle extras) { in addNewUnknownCall() argument
299 unknownCalls.add(new CallRecord(phoneAccount, extras)); in addNewUnknownCall()
328 protected void placeCall(Uri address, Bundle extras) {} in placeCall() argument
344 public CallRecord(PhoneAccountHandle phoneAccount, Bundle extras) { in CallRecord() argument
346 this.bundle = extras; in CallRecord()
/external/autotest/site_utils/sponge_lib/
Dacts_job_info.py227 def extras(self): member in ACTSRecord
239 extras = self.extras
240 if not extras:
243 test_tracker_info = self.extras.get('test_tracker_info')
245 return self.extras.get('test_tracker_environment_info')
252 extras = self.extras
253 if not extras:
256 test_tracker_info = self.extras.get('test_tracker_info')
258 return self.extras.get('test_tracker_uuid')
/external/tensorflow/tensorflow/contrib/recurrent/python/ops/
Drecurrent.py284 extras, argument
315 self._extras = extras
339 state1, extras = self._cell_fn(theta, state0, inputs)
344 _AssertIsCompatible(extras, self._extras)
345 return _Flatten([state1, extras])
370 state1, extras = _Pack(fwd, [self._state, self._extras])
373 acc_extras = _Update(acc_extras, extras, dev_t)
423 theta, state0, inputs, max_input_length, extras = _Pack(args, forward_sig)
429 acc_extras = _EmptyAcc(slen_dim, extras)
461 (theta, state0, inputs, extras, d_state1) = _Pack(args, bak_sig)
[all …]
/external/grpc-grpc/src/python/grpcio_testing/grpc_testing/_channel/
D_invocation.py138 def _with_extras_cancel(handler, extras): argument
139 with extras.condition:
141 extras.cancelled = True
147 def _extras_without_cancelled(extras): argument
148 with extras.condition:
149 return extras.cancelled
160 def _with_extras_unary_response(handler, extras): argument
161 with extras.condition:
162 if extras.unary_response is _NOT_YET_OBSERVED:
165 extras.unary_response = read.response
[all …]
/external/tensorflow/tensorflow/python/data/benchmarks/
Dbenchmark_base.py81 extras=None): argument
85 if extras is None:
86 extras = {}
87 extras["num_elements"] = num_elements
89 wall_time=wall_time, iters=iters, name=name, extras=extras)
/external/tensorflow/tensorflow/contrib/autograph/examples/benchmarks/
Dbenchmark_base.py50 extras = dict()
51 extras['all_times'] = all_times
54 extras['name'] = name
58 iters=iters, wall_time=avg_time, name=name, extras=extras)
/external/cldr/tools/java/org/unicode/cldr/draft/
DEnumLookup.java22 T to, Object... extras) { in of() argument
25 for (int i = 0; i < extras.length; i += 2) { in of()
26 newExtras.put(extras[i].toString(), (T) extras[i + 1]); in of()
32 Map<String, T> extras) { in of() argument
49 if (extras == null) { in of()
52 for (Entry<String, T> entry : extras.entrySet()) { in of()
/external/skia/src/compute/skc/platforms/cl_12/
Dstyling_cl_12.c68 skc_extent_phwN_pdrN_unmap(&impl->extras,styling->extras.extent,impl->cq,&complete); in skc_styling_grid_pfn_execute()
189 styling->extras.extent = skc_extent_phwN_pdrN_map(&impl->extras,impl->cq,&complete); in skc_styling_pfn_unseal()
246 skc_extent_phwN_pdrN_free(runtime,&impl->extras); in skc_styling_pfn_release()
317 …skc_extent_phwN_pdrN_alloc(runtime,&impl->extras,sizeof(*(*styling)->extras.extent) * extras_count… in skc_styling_cl_12_create()
322 (*styling)->extras.size = extras_count; in skc_styling_cl_12_create()
326 (*styling)->extras.count = 0; in skc_styling_cl_12_create()
/external/skqp/src/compute/skc/platforms/cl_12/
Dstyling_cl_12.c68 skc_extent_phwN_pdrN_unmap(&impl->extras,styling->extras.extent,impl->cq,&complete); in skc_styling_grid_pfn_execute()
189 styling->extras.extent = skc_extent_phwN_pdrN_map(&impl->extras,impl->cq,&complete); in skc_styling_pfn_unseal()
246 skc_extent_phwN_pdrN_free(runtime,&impl->extras); in skc_styling_pfn_release()
317 …skc_extent_phwN_pdrN_alloc(runtime,&impl->extras,sizeof(*(*styling)->extras.extent) * extras_count… in skc_styling_cl_12_create()
322 (*styling)->extras.size = extras_count; in skc_styling_cl_12_create()
326 (*styling)->extras.count = 0; in skc_styling_cl_12_create()
/external/tensorflow/tensorflow/core/kernels/
Drange_sampler.cc47 gtl::ArraySlice<int64> extras, in SampleBatchGetExpectedCount() argument
50 extras, extras_expected_count, in SampleBatchGetExpectedCount()
79 MutableArraySlice<float> batch_expected_count, ArraySlice<int64> extras, in SampleBatchGetExpectedCountAvoid() argument
115 CHECK_EQ(extras.size(), extras_expected_count.size()); in SampleBatchGetExpectedCountAvoid()
116 for (size_t i = 0; i < extras.size(); i++) { in SampleBatchGetExpectedCountAvoid()
118 ExpectedCountHelper(Probability(extras[i]), batch_size, num_tries); in SampleBatchGetExpectedCountAvoid()
126 MutableArraySlice<float> batch_expected_count, ArraySlice<int64> extras, in SampleBatchGetExpectedCountAvoid() argument
141 CHECK_EQ(extras.size(), extras_expected_count.size()); in SampleBatchGetExpectedCountAvoid()
142 for (size_t i = 0; i < extras.size(); i++) { in SampleBatchGetExpectedCountAvoid()
218 MutableArraySlice<float> batch_expected_count, ArraySlice<int64> extras, in SampleBatchGetExpectedCountAvoid() argument
[all …]
/external/libtextclassifier/java/com/google/android/textclassifier/
DRemoteActionTemplate.java60 public final NamedVariant[] extras; field in RemoteActionTemplate
76 NamedVariant[] extras, in RemoteActionTemplate() argument
88 this.extras = extras; in RemoteActionTemplate()
/external/tensorflow/tensorflow/contrib/learn/python/learn/datasets/
Dsynthetic.py87 extras = n_samples % n_classes
88 circ_x = np.append(circ_x, np.cos(np.random.rand(extras) * 2 * np.pi))
89 circ_y = np.append(circ_y, np.sin(np.random.rand(extras) * 2 * np.pi))
90 y = np.append(y, np.zeros(extras, dtype=np.int32))
160 extras = n_samples % n_classes
161 if extras > 0:
162 x_extra, y_extra = _modes[mode](np.random.rand(extras) * 2 * np.pi, *args,
166 y = np.append(y, np.zeros(extras, dtype=np.int32))
/external/chromium-trace/catapult/devil/devil/android/sdk/
Dintent.py30 category=None, component=None, data=None, extras=None, argument
55 self._extras = extras
85 def extras(self): member in Intent
114 if self.extras:
115 for key, value in self.extras.iteritems():
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/text/
DRbnfScannerProviderImpl.java75 public RbnfLenientScanner get(ULocale locale, String extras) { in get() argument
77 String key = locale.toString() + "/" + extras; in get()
84 result = createScanner(locale, extras); in get()
96 protected RbnfLenientScanner createScanner(ULocale locale, String extras) { in createScanner() argument
104 if (extras != null) { in createScanner()
105 String rules = collator.getRules() + extras; in createScanner()
/external/icu/android_icu4j/src/main/java/android/icu/impl/text/
DRbnfScannerProviderImpl.java77 public RbnfLenientScanner get(ULocale locale, String extras) { in get() argument
79 String key = locale.toString() + "/" + extras; in get()
86 result = createScanner(locale, extras); in get()
98 protected RbnfLenientScanner createScanner(ULocale locale, String extras) { in createScanner() argument
106 if (extras != null) { in createScanner()
107 String rules = collator.getRules() + extras; in createScanner()
/external/cldr/tools/java/org/unicode/cldr/tool/
DGenerateTransformCharts.java717 UnicodeSet extras;
719 extras = new UnicodeSet();
722 extras.addAll(d);
724 extras.removeAll(nonLatinUnicodeSet);
725 if (extras.size() != 0) {
726 System.out.println(script + "\tAdding2: " + extras);
727 nonLatinUnicodeSet.addAll(extras);
731 extras = scriptExtras.get(scriptName);
732 if (extras != null) {
733 System.out.println(script + "\tAdding1: " + extras);
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
DTBSCertificate.java127 int extras = seq.size() - (seqStart + 6) - 1; in TBSCertificate() local
128 if (extras != 0 && isV1) in TBSCertificate()
133 while (extras > 0) in TBSCertificate()
135 ASN1TaggedObject extra = (ASN1TaggedObject)seq.getObjectAt(seqStart + 6 + extras); in TBSCertificate()
155 extras--; in TBSCertificate()
/external/tensorflow/tensorflow/core/util/
Dreporter_test.cc135 const auto& extras = benchmark_entry.extras(); in TEST() local
136 ASSERT_EQ(2, extras.size()); in TEST()
137 EXPECT_EQ("abc", extras.at("string_prop").string_value()); in TEST()
138 EXPECT_EQ(4.0, extras.at("double_prop").double_value()); in TEST()
/external/tensorflow/tensorflow/core/platform/default/
Dplatform.bzl44 return "extras/CUPTI/lib/libcupti.dylib"
46 return "extras/CUPTI/lib/libcupti.{}.dylib".format(version)
48 return "extras/CUPTI/lib64/libcupti.so"
50 return "extras/CUPTI/lib64/libcupti.so.{}".format(version)
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/asn1/x509/
DTBSCertificate.java130 int extras = seq.size() - (seqStart + 6) - 1; in TBSCertificate() local
131 if (extras != 0 && isV1) in TBSCertificate()
136 while (extras > 0) in TBSCertificate()
138 ASN1TaggedObject extra = (ASN1TaggedObject)seq.getObjectAt(seqStart + 6 + extras); in TBSCertificate()
158 extras--; in TBSCertificate()

12345678910>>...12