Searched defs:props (Results 176 - 200 of 237) sorted by relevance

12345678910

/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcucdtst.c2100 props[][3]={ /* code point, property, value */ local
2583 for(i=0; i<sizeof(props)/sizeof(props[0]); ++i) {
2586 if(props[i][0]<0) {
2588 if(uVersion<props[i][1]) {
2595 c=(UChar32)props[i][0];
2596 which=(UProperty)props[i][1];
2601 if(result!=props[i][2]) {
2602 log_data_err("error: u_hasBinaryProperty(U+%04lx, %s)=%d is wrong (props[%d]) - (Are you missing data?)\n",
2608 if(result!=props[
[all...]
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dintltest.cpp1087 const char *props[IntlTest::kMaxProps]; local
1129 props[nProps] = str + 5;
1185 major.setProperty(props[i]);
1222 fprintf(stdout, " Custom property (prop:) : %s\n", props[i]);
/external/chromium_org/v8/tools/gcmole/
H A Dgcmole.cc777 CallProps props; local
780 props.SetEffect(i, VisitExpr(exprs[i], env));
783 if (!props.IsSafe()) ReportUnsafe(parent, BAD_EXPR_MSG);
785 return props.ComputeCumulativeEffect(IsRawPointerType(parent->getType()));
826 CallProps props; local
827 VisitArguments<>(call, &props, env);
828 if (!props.IsSafe()) ReportUnsafe(call, BAD_EXPR_MSG);
829 return props.ComputeCumulativeEffect(IsRawPointerType(call->getType()));
834 CallProps* props,
837 props
833 VisitArguments(ExprType* call, CallProps* props, const Environment& env) argument
844 CallProps props; local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.help.appserver_3.1.400.v20100427.jar ... .net.URL url java.util.Properties props java.io.InputStream is java.io. ...
H A Dorg.eclipse.equinox.app_1.3.1.R36x_v20100803.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.equinox.p2.reconciler.dropins_1.1.2.R36x_v20101111-1430.jar ... .io.File parentConfiguration java.util.Properties props java.io.OutputStream os String externalForm java. ...
H A Dorg.eclipse.equinox.p2.console_1.0.200.v20100601.jar ... location String flavor String environments java.util.Map props org.eclipse.equinox.p2.core. ...
/external/icu4c/test/intltest/
H A Dintltest.cpp1114 const char *props[IntlTest::kMaxProps]; local
1159 props[nProps] = str + 5;
1217 major.setProperty(props[i]);
1255 fprintf(stdout, " Custom property (prop:) : %s\n", props[i]);
/external/lzma/CPP/7zip/UI/Common/
H A DBench.cpp585 PROPVARIANT props[kNumProps]; local
586 props[0].vt = VT_UI4;
587 props[0].ulVal = dictionarySize;
589 props[1].vt = VT_UI4;
590 props[1].ulVal = numThreads;
597 RINOK(setCoderProperties->SetCoderProperties(propIDs, props, kNumProps));
/external/openfst/src/include/fst/extensions/ngram/
H A Dngram-fst.h291 int64 props = kAcceptor | kIDeterministic | kIEpsilons | kILabelSorted; local
292 if (fst.Properties(props, true) != props) {
787 virtual uint64 Properties(uint64 props) const {
788 return props;
/external/openfst/src/include/fst/
H A Dfst.h629 void SetProperties(uint64 props) { argument
631 properties_ |= props;
634 void SetProperties(uint64 props, uint64 mask) { argument
636 properties_ |= props & mask;
640 void SetProperties(uint64 props, uint64 mask) const { argument
H A Dreplace.h1303 uint64 props = fst_.Properties(true_prop | false_prop, test); local
1305 if (props & true_prop)
1307 else if (props & false_prop)
1317 virtual uint64 Properties(uint64 props) const {
1318 return props;
/external/v8/src/
H A Dfactory.cc1301 Handle<Object> props = Handle<Object>(obj->property_accessors()); local
1302 if (!props->IsUndefined()) {
1303 array = CopyAppendCallbackDescriptors(array, props);
/external/v8/tools/gcmole/
H A Dgcmole.cc779 CallProps props; local
782 props.SetEffect(i, VisitExpr(exprs[i], env));
785 if (!props.IsSafe()) ReportUnsafe(parent, BAD_EXPR_MSG);
787 return props.ComputeCumulativeEffect(IsRawPointerType(parent->getType()));
828 CallProps props; local
829 VisitArguments<>(call, &props, env);
830 if (!props.IsSafe()) ReportUnsafe(call, BAD_EXPR_MSG);
831 return props.ComputeCumulativeEffect(IsRawPointerType(call->getType()));
836 CallProps* props,
839 props
835 VisitArguments(ExprType* call, CallProps* props, const Environment& env) argument
846 CallProps props; local
[all...]
/external/wpa_supplicant_8/wpa_supplicant/
H A Dconfig.c2152 char **props; local
2157 props = os_calloc(2 * NUM_SSID_FIELDS + 1, sizeof(char *));
2158 if (!props)
2180 props[fields_num * 2] = key;
2181 props[fields_num * 2 + 1] = value;
2186 return props;
2189 value = *props;
2192 os_free(props);
/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_new_handlers.c3608 char **props = wpa_config_get_all(net->ssid, 1); local
3611 if (!props) {
3623 iterator = props;
3644 iterator = props;
3649 os_free(props);
/external/chromium_org/v8/src/
H A Dfactory.cc1622 Object* props = local
1625 if (!props->IsUndefined()) {
1626 Handle<Object> props_handle(props, isolate());
1632 Object* props = info->property_accessors(); local
1633 if (!props->IsUndefined()) {
1634 Handle<Object> props_handle(props, isolate());
1659 Handle<Object> props = Handle<Object>(instance->property_accessors(), local
1661 if (!props->IsUndefined()) {
1662 Map::AppendCallbackDescriptors(map, props);
1667 Handle<Object> props local
[all...]
/external/icu4c/test/cintltst/
H A Dcucdtst.c2222 props[][3]={ /* code point, property, value */ local
2715 for(i=0; i<sizeof(props)/sizeof(props[0]); ++i) {
2718 if(props[i][0]<0) {
2720 if(uVersion<props[i][1]) {
2727 c=(UChar32)props[i][0];
2728 which=(UProperty)props[i][1];
2733 if(result!=props[i][2]) {
2734 log_data_err("error: u_hasBinaryProperty(U+%04lx, %s)=%d is wrong (props[%d]) - (Are you missing data?)\n",
2740 if(result!=props[
[all...]
/external/libmtp/src/
H A Dptp-pack.c976 ptp_pack_OPL (PTPParams *params, MTPProperties *props, int nrofprops, unsigned char** opldataptr) argument
991 propitr = props;
1045 MTPProperties *props = NULL; local
1055 props = malloc(prop_count * sizeof(MTPProperties));
1056 if (!props) return 0;
1062 qsort (props, i, sizeof(MTPProperties),_compare_func);
1063 *pprops = props;
1066 props[i].ObjectHandle = dtoh32a(data);
1070 props[i].property = dtoh16a(data);
1074 props[
[all...]
H A Dptp.c1861 * uint16_t** props - the pointer to the array of changed properties
1862 * uint32_t* propnum - the number of elements in the *props array
1866 ptp_canon_getchanges (PTPParams* params, uint16_t** props, uint32_t* propnum) argument
1879 *propnum=ptp_unpack_uint16_t_array(params,data,0,props);
2035 ptp_nikon_get_vendorpropcodes (PTPParams* params, uint16_t **props, unsigned int *size) { argument
2041 *props = NULL;
2048 *size = ptp_unpack_uint16_t_array(params,xdata,0,props);
2401 * uint16_t *props - array of supported properties
2408 uint32_t *propnum, uint16_t **props
2421 *propnum=ptp_unpack_uint16_t_array(params,data,0,props);
2573 ptp_mtp_getobjectproplist(PTPParams* params, uint32_t handle, MTPProperties **props, int *nrofprops) argument
2596 ptp_mtp_sendobjectproplist(PTPParams* params, uint32_t* store, uint32_t* parenthandle, uint32_t* handle, uint16_t objecttype, uint64_t objectsize, MTPProperties *props, int nrofprops) argument
2625 ptp_mtp_setobjectproplist(PTPParams* params, MTPProperties *props, int nrofprops) argument
4619 ptp_get_new_object_prop_entry(MTPProperties **props, int *nrofprops) argument
4658 ptp_destroy_object_prop_list(MTPProperties *props, int nrofprops) argument
4845 MTPProperties *props = NULL; local
[all...]
H A Dlibmtp.c1086 uint16_t *props = NULL; local
1093 ret = ptp_mtp_getobjectpropssupported(device->params, map_libmtp_type_to_ptp_type(filetype), &propcnt, &props);
1100 if (props[i] == ptp_prop) {
1106 free(props);
2142 MTPProperties *props = NULL; local
2163 ret = ptp_mtp_getobjectproplist(params, 0xffffffff, &props, &nrofprops);
2168 // you cannot use it to get all props for AT LEAST one object?
2179 if (props == NULL && nrofprops != 0) {
2191 prop = props;
2201 prop = props;
2392 uint16_t *props = NULL; local
2907 uint16_t *props = NULL; local
3999 uint16_t *props = NULL; local
4117 uint16_t *props = NULL; local
4333 uint16_t *props = NULL; local
5696 MTPProperties *props = NULL; local
5856 MTPProperties *props = NULL; local
6273 MTPProperties *props = NULL; local
7100 MTPProperties *props = NULL; local
7385 MTPProperties *props = NULL; local
7776 uint16_t *props = NULL; local
8045 uint16_t *props = NULL; local
8182 uint16_t *props = NULL; local
8276 uint16_t *props = NULL; local
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/27/1/.cp/lib/
H A Dantsupportlib.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/eclipse/ org/eclipse/ant/ org/eclipse/ant/internal/ ...
/external/chromium_org/third_party/lzma_sdk/
H A DLzmaEnc.c78 CLzmaEncProps props = *props2; local
79 LzmaEncProps_Normalize(&props);
80 return props.dictSize;
394 CLzmaEncProps props = *props2; local
395 LzmaEncProps_Normalize(&props);
397 if (props.lc > LZMA_LC_MAX || props.lp > LZMA_LP_MAX || props.pb > LZMA_PB_MAX ||
398 props.dictSize > ((UInt32)1 << kDicLogSizeMaxCompress) || props
1686 CLzmaEncProps props; local
2191 LzmaEnc_WriteProperties(CLzmaEncHandle pp, Byte *props, SizeT *size) argument
2248 LzmaEncode(Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen, const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark, ICompressProgress *progress, ISzAlloc *alloc, ISzAlloc *allocBig) argument
[all...]
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
H A DLzmaEnc.c79 CLzmaEncProps props = *props2; local
80 LzmaEncProps_Normalize(&props);
81 return props.dictSize;
395 CLzmaEncProps props = *props2; local
396 LzmaEncProps_Normalize(&props);
398 if (props.lc > LZMA_LC_MAX || props.lp > LZMA_LP_MAX || props.pb > LZMA_PB_MAX ||
399 props.dictSize > ((UInt32)1 << kDicLogSizeMaxCompress) || props
1687 CLzmaEncProps props; local
2192 LzmaEnc_WriteProperties(CLzmaEncHandle pp, Byte *props, SizeT *size) argument
2249 LzmaEncode(Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen, const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark, ICompressProgress *progress, ISzAlloc *alloc, ISzAlloc *allocBig) argument
[all...]
/external/lzma/C/
H A DLzmaEnc.c78 CLzmaEncProps props = *props2; local
79 LzmaEncProps_Normalize(&props);
80 return props.dictSize;
394 CLzmaEncProps props = *props2; local
395 LzmaEncProps_Normalize(&props);
397 if (props.lc > LZMA_LC_MAX || props.lp > LZMA_LP_MAX || props.pb > LZMA_PB_MAX ||
398 props.dictSize > ((UInt32)1 << kDicLogSizeMaxCompress) || props
1686 CLzmaEncProps props; local
2191 LzmaEnc_WriteProperties(CLzmaEncHandle pp, Byte *props, SizeT *size) argument
2248 LzmaEncode(Byte *dest, SizeT *destLen, const Byte *src, SizeT srcLen, const CLzmaEncProps *props, Byte *propsEncoded, SizeT *propsSize, int writeEndMark, ICompressProgress *progress, ISzAlloc *alloc, ISzAlloc *allocBig) argument
[all...]

Completed in 1614 milliseconds

12345678910