Searched defs:extras (Results 1 - 25 of 58) sorted by relevance

123

/external/fonttools/Lib/fontTools/ttLib/tables/
H A DT_S_I__3.py7 extras = {0xfffa: "reserved0", 0xfffb: "reserved1", 0xfffc: "reserved2", 0xfffd: "reserved3"} variable in class:table_T_S_I__3
H A DT_S_I__1.py7 extras = {0xfffa: "ppgm", 0xfffb: "cvt", 0xfffc: "reserved", 0xfffd: "fpgm"} variable in class:table_T_S_I__1
30 if self.extras[extraCode] == "fpgm": # this is the last one
37 self.extraPrograms[self.extras[extraCode]] = text
63 codes = sorted(self.extras.items())
/external/fonttools/Tools/fontTools/ttLib/tables/
H A DT_S_I__3.py7 extras = {0xfffa: "reserved0", 0xfffb: "reserved1", 0xfffc: "reserved2", 0xfffd: "reserved3"} variable in class:table_T_S_I__3
H A DT_S_I__1.py7 extras = {0xfffa: "ppgm", 0xfffb: "cvt", 0xfffc: "reserved", 0xfffd: "fpgm"} variable in class:table_T_S_I__1
30 if self.extras[extraCode] == "fpgm": # this is the last one
37 self.extraPrograms[self.extras[extraCode]] = text
63 codes = sorted(self.extras.items())
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DRbnfLenientScannerProvider.java28 * @param extras extra collation rules
33 RbnfLenientScanner get(ULocale locale, String extras); argument
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DRbnfLenientScannerProvider.java26 * @param extras extra collation rules
31 RbnfLenientScanner get(ULocale locale, String extras); argument
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowPeriodicSync.java17 public void __constructor__(Account account, String authority, Bundle extras, long period) throws Exception { argument
21 setField("extras", extras);
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowWallpaperManager.java20 public void sendWallpaperCommand(IBinder windowToken, String action, int x, int y, int z, Bundle extras) { argument
H A DShadowContentProviderClient.java36 public Bundle call(String method, String arg, Bundle extras) throws RemoteException { argument
37 return provider.call(method, arg, extras);
H A DShadowCursorWrapper.java212 public void setExtras(Bundle extras) { argument
213 wrappedCursor.setExtras(extras);
/external/chromium-trace/catapult/devil/devil/android/sdk/
H A Dintent.py30 category=None, component=None, data=None, extras=None,
41 extras: A dict containing extra parameters to be passed along with the
55 self._extras = extras
85 def extras(self): member in class:Intent
114 if self.extras:
115 for key, value in self.extras.iteritems():
128 'Intent does not know how to pass %s extras' % type(value))
/external/libmojo/third_party/catapult/devil/devil/android/sdk/
H A Dintent.py30 category=None, component=None, data=None, extras=None,
41 extras: A dict containing extra parameters to be passed along with the
55 self._extras = extras
85 def extras(self): member in class:Intent
114 if self.extras:
115 for key, value in self.extras.iteritems():
128 'Intent does not know how to pass %s extras' % type(value))
/external/python/futures/
H A Dsetup.py12 extras = {} variable
15 extras['zip_safe'] = False
41 **extras
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
H A DCommonIntentsFacade.java81 @RpcParameter(name = "extras", description = "a Map of extras to add to the Intent") @RpcOptional JSONObject extras)
83 mAndroidFacade.startActivity(Intent.ACTION_VIEW, uri, type, extras, true, null, null);
78 view( @pcParametername = �) String uri, @RpcParameter(name = �, description = �) @RpcOptional String type, @RpcParameter(name = �, description = �) @RpcOptional JSONObject extras) argument
H A DApplicationManagerFacade.java100 @RpcParameter(name = "extras")@RpcOptional JSONObject extras)
102 if(extras != null) {
103 mAndroidFacade.putExtrasFromJsonObject(extras, intent);
98 launchForResultWithIntent( @pcParametername = �) Intent intent, @RpcParameter(name = �)@RpcOptional JSONObject extras) argument
/external/icu/android_icu4j/src/main/java/android/icu/impl/text/
H A DRbnfScannerProviderImpl.java77 public RbnfLenientScanner get(ULocale locale, String extras) { argument
79 String key = locale.toString() + "/" + extras;
86 result = createScanner(locale, extras);
98 protected RbnfLenientScanner createScanner(ULocale locale, String extras) { argument
106 if (extras != null) {
107 String rules = collator.getRules() + extras;
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/text/
H A DRbnfScannerProviderImpl.java75 public RbnfLenientScanner get(ULocale locale, String extras) { argument
77 String key = locale.toString() + "/" + extras;
84 result = createScanner(locale, extras);
96 protected RbnfLenientScanner createScanner(ULocale locale, String extras) { argument
104 if (extras != null) {
105 String rules = collator.getRules() + extras;
/external/libxml2/doc/examples/
H A Dindex.py16 extras = ['examples.xsl', 'index.html', 'index.py'] variable
220 extras.append(file)
222 extras.append(file)
256 extras.sort()
259 for extra in extras:
/external/robolectric-shadows/shadows/playservices/src/main/java/org/robolectric/shadows/gms/
H A DShadowGoogleAuthUtil.java72 Bundle extras) throws IOException, UserRecoverableAuthException, GoogleAuthException {
73 return googleAuthUtilImpl.getToken(context, account, scope, extras);
84 Bundle extras) throws IOException, UserRecoverableAuthException, GoogleAuthException {
85 return googleAuthUtilImpl.getToken(context, accountName, scope, extras);
90 String scope, Bundle extras)
92 return googleAuthUtilImpl.getTokenWithNotification(context, account, scope, extras);
97 String scope, Bundle extras, Intent callback)
100 .getTokenWithNotification(context, account, scope, extras, callback);
105 String scope, Bundle extras, String authority, Bundle syncBundle)
108 .getTokenWithNotification(context, account, scope, extras, authorit
71 getToken(Context context, Account account, String scope, Bundle extras) argument
83 getToken(Context context, String accountName, String scope, Bundle extras) argument
89 getTokenWithNotification(Context context, Account account, String scope, Bundle extras) argument
96 getTokenWithNotification(Context context, Account account, String scope, Bundle extras, Intent callback) argument
104 getTokenWithNotification(Context context, Account account, String scope, Bundle extras, String authority, Bundle syncBundle) argument
112 getTokenWithNotification(Context context, String accountName, String scope, Bundle extras, Intent callback) argument
120 getTokenWithNotification(Context context, String accountName, String scope, Bundle extras) argument
127 getTokenWithNotification(Context context, String accountName, String scope, Bundle extras, String authority, Bundle syncBundle) argument
161 getToken(Context context, Account account, String scope, Bundle extras) argument
171 getToken(Context context, String accountName, String scope, Bundle extras) argument
176 getTokenWithNotification(Context context, Account account, String scope, Bundle extras) argument
182 getTokenWithNotification(Context context, Account account, String scope, Bundle extras, Intent callback) argument
191 getTokenWithNotification(Context context, Account account, String scope, Bundle extras, String authority, Bundle syncBundle) argument
200 getTokenWithNotification(Context context, String accountName, String scope, Bundle extras) argument
207 getTokenWithNotification(Context context, String accountName, String scope, Bundle extras, Intent callback) argument
214 getTokenWithNotification(Context context, String accountName, String scope, Bundle extras, String authority, Bundle syncBundle) argument
[all...]
/external/autotest/site_utils/sponge_lib/
H A Dacts_job_info.py227 def extras(self): member in class: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
[all...]
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_state_constants.c502 float extras[MAX_EXTRA_CONSTS][4]; local
508 count = svga_get_extra_vs_constants(svga, (float *) extras);
512 count = svga_get_extra_fs_constants(svga, (float *) extras);
521 assert(count <= ARRAY_SIZE(extras));
526 (const float (*) [4])extras);
530 ret = emit_const(svga, shader, offset + i, extras[i]);
551 float extras[MAX_EXTRA_CONSTS][4]; local
568 extra_count = svga_get_extra_vs_constants(svga, (float *) extras);
572 extra_count = svga_get_extra_fs_constants(svga, (float *) extras);
576 extra_count = svga_get_extra_gs_constants(svga, (float *) extras);
[all...]
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/database/
H A DTestCursor.java198 public Bundle respond(Bundle extras) { argument
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/fakes/
H A DBaseCursor.java201 public void setExtras(Bundle extras) { argument
211 public Bundle respond(Bundle extras) { argument
H A DRoboCursor.java22 private Bundle extras; field in class:RoboCursor
186 return extras;
190 public void setExtras(Bundle extras) { argument
191 this.extras = extras;
/external/tensorflow/tensorflow/core/kernels/
H A Drange_sampler.cc47 gtl::ArraySlice<int64> extras,
50 extras, extras_expected_count,
79 MutableArraySlice<float> batch_expected_count, ArraySlice<int64> extras,
115 CHECK_EQ(extras.size(), extras_expected_count.size());
116 for (size_t i = 0; i < extras.size(); i++) {
118 ExpectedCountHelper(Probability(extras[i]), batch_size, num_tries);
126 MutableArraySlice<float> batch_expected_count, ArraySlice<int64> extras,
141 CHECK_EQ(extras.size(), extras_expected_count.size());
142 for (size_t i = 0; i < extras.size(); i++) {
218 MutableArraySlice<float> batch_expected_count, ArraySlice<int64> extras,
44 SampleBatchGetExpectedCount( random::SimplePhilox* rnd, bool unique, gtl::MutableArraySlice<int64> batch, gtl::MutableArraySlice<float> batch_expected_count, gtl::ArraySlice<int64> extras, gtl::MutableArraySlice<float> extras_expected_count) const argument
77 SampleBatchGetExpectedCountAvoid( random::SimplePhilox* rnd, bool unique, MutableArraySlice<int64> batch, MutableArraySlice<float> batch_expected_count, ArraySlice<int64> extras, MutableArraySlice<float> extras_expected_count, ArraySlice<int64> avoided_values) const argument
124 SampleBatchGetExpectedCountAvoid( random::SimplePhilox* rnd, bool unique, MutableArraySlice<int64> batch, MutableArraySlice<float> batch_expected_count, ArraySlice<int64> extras, MutableArraySlice<float> extras_expected_count, ArraySlice<int64> avoided_values) const argument
216 SampleBatchGetExpectedCountAvoid( random::SimplePhilox* rnd, bool unique, MutableArraySlice<int64> batch, MutableArraySlice<float> batch_expected_count, ArraySlice<int64> extras, MutableArraySlice<float> extras_expected_count, ArraySlice<int64> avoided_values) const argument
[all...]

Completed in 983 milliseconds

123