HomeSort by relevance Sort by last modified time
    Searched defs:props (Results 101 - 125 of 204) sorted by null

1 2 3 45 6 7 8 9

  /external/srec/tools/thirdparty/OpenFst/fst/lib/
rmepsilon.h 227 uint64 props; local
229 SccVisitor<Arc> scc_visitor(&scc, 0, 0, &props);
341 uint64 props = fst.Properties(kFstProperties, false); local
342 SetProperties(RmEpsilonProperties(props, true), kCopyProperties);
synchronize.h 75 uint64 props = fst.Properties(kFstProperties, false); local
76 SetProperties(SynchronizeProperties(props), kCopyProperties);
determinize.h 138 uint64 props = fst.Properties(kFstProperties, false); local
139 SetProperties(DeterminizeProperties(props), kCopyProperties);
map.h 60 // uint64 Properties(uint64 props) const;
88 uint64 props = fst->Properties(kFstProperties, false);
143 fst->SetProperties(mapper->Properties(props), kFstProperties);
410 uint64 props = fst_->Properties(kCopyProperties, false); local
411 SetProperties(mapper_->Properties(props));
629 uint64 Properties(uint64 props) const { return props; }
644 uint64 Properties(uint64 props) const {
645 return props & kAddSuperFinalProperties;
661 uint64 Properties(uint64 props) const { return props;
    [all...]
  /frameworks/av/media/mtp/
MtpDevice.cpp 254 MtpObjectPropertyList* props = getObjectPropsSupported(format); local
255 if (props) {
256 for (int j = 0; j < props->size(); j++) {
257 MtpObjectProperty prop = (*props)[j];
  /frameworks/native/cmds/dumpstate/
utils.c 243 static char* props[2000]; variable
247 if (num_props < sizeof(props) / sizeof(props[0])) {
250 props[num_props++] = strdup(buf);
263 qsort(&props, num_props, sizeof(props[0]), compare_prop);
267 fputs(props[i], stdout);
268 free(props[i]);
  /libcore/luni/src/main/java/java/util/logging/
LogManager.java 144 private Properties props; field in class:LogManager
183 props = new Properties();
304 return props.getProperty(name);
369 props.load(ins);
379 String configs = props.getProperty("config");
391 String property = props.getProperty(logger.getName() + ".level");
425 props = new Properties();
  /libcore/luni/src/test/java/libcore/java/util/logging/
OldLogManagerTest.java 39 Properties props; field in class:OldLogManagerTest
49 props = new Properties();
50 props.put("handlers", className + "$MockHandler " + className + "$MockHandler");
51 props.put("java.util.logging.FileHandler.pattern", "%h/java%u.log");
52 props.put("java.util.logging.FileHandler.limit", "50000");
53 props.put("java.util.logging.FileHandler.count", "5");
54 props.put("java.util.logging.FileHandler.formatter", "java.util.logging.XMLFormatter");
55 props.put(".level", "FINE");
56 props.put("java.util.logging.ConsoleHandler.level", "OFF");
57 props.put("java.util.logging.ConsoleHandler.formatter","java.util.logging.SimpleFormatter")
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
LocalSdkParser.java 186 Properties props = parseProperties(new File(target.getLocation(), local
192 pkg = PlatformPackage.create(target, props);
211 pkg = AddonPackage.create(target, props);
316 Properties props = parseProperties(new File(dir, SdkConstants.FN_SOURCE_PROP)); local
317 if (props != null) {
321 props, //properties
363 Properties props = parseProperties(new File(dir, SdkConstants.FN_SOURCE_PROP)); local
364 if (props != null) {
366 Package pkg = SamplePackage.create(dir.getAbsolutePath(), props);
449 Properties props = local
488 Properties props = local
508 Properties props = parseProperties(new File(toolFolder, SdkConstants.FN_SOURCE_PROP)); local
560 Properties props = parseProperties(new File(platformToolsFolder, local
599 Properties props = parseProperties(new File(docFolder, SdkConstants.FN_SOURCE_PROP)); local
638 Properties props = new Properties(); local
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/archives/
Archive.java 209 * Uses the properties from props first, if possible. Props can be null.
212 public Archive(Package pkg, Properties props, Os os, Arch arch, String localOsPath) {
215 mOs = props == null ? os : Os.valueOf( props.getProperty(PROP_OS, os.toString()));
216 mArch = props == null ? arch : Arch.valueOf(props.getProperty(PROP_ARCH, arch.toString()));
229 void saveProperties(Properties props) {
230 props.setProperty(PROP_OS, mOs.toString());
231 props.setProperty(PROP_ARCH, mArch.toString());
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/packages/
AddonPackage.java 213 public static Package create(IAndroidTarget target, Properties props) {
214 return new AddonPackage(target, props);
218 protected AddonPackage(IAndroidTarget target, Properties props) {
219 this(null /*source*/, target, props);
223 protected AddonPackage(SdkSource source, IAndroidTarget target, Properties props) {
225 props, //properties
241 String nameId = getProperty(props, PkgProps.ADDON_NAME_ID, ""); //$NON-NLS-1$
242 String nameDisp = getProperty(props, PkgProps.ADDON_NAME_DISPLAY, ""); //$NON-NLS-1$
243 String name = getProperty(props, PkgProps.ADDON_NAME, target.getName());
264 String vendorId = getProperty(props, PkgProps.ADDON_VENDOR_ID, ""); //$NON-NLS-1$
    [all...]
ExtraPackage.java 183 Properties props,
193 ExtraPackage ep = new ExtraPackage(source, props, vendor, path, revision, license,
201 * When not defined, they will be extracted from the {@code props} properties.
205 Properties props,
216 props,
226 mPath = path != null ? path : getProperty(props, PkgProps.EXTRA_PATH, path);
228 String name = getProperty(props, PkgProps.EXTRA_NAME_DISPLAY, ""); //$NON-NLS-1$
229 String vname = getProperty(props, PkgProps.EXTRA_VENDOR_DISPLAY, ""); //$NON-NLS-1$
231 getProperty(props, PkgProps.EXTRA_VENDOR_ID, ""); //$NON-NLS-1$
236 String vendor = getProperty(props, PkgProps.EXTRA_VENDOR, ""); //$NON-NLS-1$
    [all...]
Package.java 125 * Properties from props are used first when possible, e.g. if props is non null.
131 Properties props,
148 getProperty(props, PkgProps.PKG_REVISION, Integer.toString(revision)));
149 mLicense = getProperty(props, PkgProps.PKG_LICENSE, license);
150 mDescription = getProperty(props, PkgProps.PKG_DESC, description);
151 mDescUrl = getProperty(props, PkgProps.PKG_DESC_URL, descUrl);
152 mReleaseNote = getProperty(props, PkgProps.PKG_RELEASE_NOTE, ""); //$NON-NLS-1$
153 mReleaseUrl = getProperty(props, PkgProps.PKG_RELEASE_URL, ""); //$NON-NLS-1$
154 mObsolete = getProperty(props, PkgProps.PKG_OBSOLETE, null);
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
PropertiesTest.java 125 MyProperties props = new MyProperties(); local
126 assertNull(props.getProperty("key"));
135 MyProperties props = new MyProperties(); local
136 assertEquals("defaultValue", props.getProperty("key", "defaultValue"));
285 Properties props = new Properties(); local
286 props.load(is);
288 assertEquals("1", "\n \t \f", props.getProperty(" \r"));
289 assertEquals("2", "a", props.getProperty("a"));
290 assertEquals("3", "bb as,dn ", props.getProperty("b"));
291 assertEquals("4", ":: cu", props.getProperty("c\r \t\nu"))
438 Properties props = new Properties(); local
954 Properties props = new Properties(); local
1073 Properties props = new Properties(); local
1082 Properties props = new Properties(); local
1091 Properties props = new Properties(); local
1100 Properties props = new Properties(); local
1109 Properties props = new Properties(); local
1118 Properties props = new Properties(); local
1127 Properties props = new Properties(); local
1136 Properties props = new Properties(); local
1145 Properties props = new Properties(); local
1154 Properties props = new Properties(); local
1163 Properties props = new Properties(); local
1172 Properties props = new Properties(); local
1182 Properties props = new Properties(); local
    [all...]
  /external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
SocketHandlerTest.java 63 private Properties props; field in class:SocketHandlerTest
81 .PropertiesToInputStream(props));
93 props = new Properties();
94 props.put("handlers", className + "$MockHandler " + className
96 props.put("java.util.logging.FileHandler.pattern", "%h/java%u.log");
97 props.put("java.util.logging.FileHandler.limit", "50000");
98 props.put("java.util.logging.FileHandler.count", "5");
99 props.put("java.util.logging.FileHandler.formatter",
101 props.put(".level", "FINE");
102 props.put("java.util.logging.ConsoleHandler.level", "OFF")
    [all...]
  /external/bluetooth/bluez/src/
attrib-server.c 202 uint8_t props; local
209 for (l = database, props = 0; l != NULL; l = l->next) {
217 props = att_get_u8(&a->data[0]);
229 if ((cfg_val & 0x0001) && !(props & ATT_CHAR_PROPER_NOTIFY))
232 if ((cfg_val & 0x0002) && !(props & ATT_CHAR_PROPER_INDICATE))
  /external/chromium/third_party/libjingle/source/talk/session/phone/
devicemanager.cc 453 CComPtr<IPropertyStore> props; local
455 HRESULT hr = device->OpenPropertyStore(STGM_READ, &props);
462 hr = GetStringProp(props, PKEY_Device_FriendlyName, &name);
464 hr = GetStringProp(props, PKEY_AudioEndpoint_GUID, &guid);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-javamail.jar 
  /external/icu4c/common/
ucase.c 83 #define GET_EXCEPTIONS(csp, props) ((csp)->exceptions+((props)>>UCASE_EXC_SHIFT))
85 #define PROPS_HAS_EXCEPTION(props) ((props)&UCASE_EXCEPTION)
133 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
134 if(!PROPS_HAS_EXCEPTION(props)) {
135 if(UCASE_GET_TYPE(props)>=UCASE_UPPER) {
136 c+=UCASE_GET_DELTA(props);
139 const uint16_t *pe=GET_EXCEPTIONS(csp, props);
150 uint16_t props=UTRIE2_GET16(&csp->trie, c) local
167 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
198 uint16_t props; local
397 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
404 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
420 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
436 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
781 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
925 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
1071 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
1135 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/objects/
Properties.java 214 List<Properties> props = (List<Properties>) value; local
215 for (Properties p : props) {
  /external/openfst/src/include/fst/
determinize.h 156 uint64 props = fst.Properties(kFstProperties, false); local
157 SetProperties(DeterminizeProperties(props,
matcher.h 83 // uint64 Properties(uint64 props) const;
110 virtual uint64 Properties(uint64 props) const = 0;
191 uint64 props = fst_->Properties(true_prop | false_prop, test); local
193 if (props & true_prop)
195 else if (props & false_prop)
453 virtual uint64 Properties(uint64 props) const;
632 virtual uint64 Properties(uint64 props) const;
794 virtual uint64 Properties(uint64 props) const;
986 uint64 Properties(uint64 props) const { return matcher_->Properties(props); }
    [all...]
queue.h 548 uint64 props = fst.Properties(kAcyclic | kCyclic | local
550 if ((props & kTopSorted) || fst.Start() == kNoStateId) {
553 } else if (props & kAcyclic) {
556 } else if ((props & kUnweighted) && (Weight::Properties() & kIdempotent)) {
randgen.h 358 uint64 props = fst.Properties(kFstProperties, false); local
359 SetProperties(RandGenProperties(props, weighted_), kCopyProperties);
  /frameworks/opt/calendar/src/com/android/calendarcommon/
ICalendar.java 139 ArrayList<Property> props = mPropsMap.get(name); local
140 if (props == null) {
141 props = new ArrayList<Property>();
142 mPropsMap.put(name, props);
144 props.add(prop);
172 List<Property> props = mPropsMap.get(name); local
173 if (props == null || props.size() == 0) {
176 return props.get(0);

Completed in 904 milliseconds

1 2 3 45 6 7 8 9