HomeSort by relevance Sort by last modified time
    Searched defs:props (Results 126 - 150 of 419) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/openfst/src/include/fst/
replace-util.h 93 uint64 props = kAccessible | kCoAccessible; local
97 if (fst_array_[i]->Properties(props, true) != props || !depaccess_[i])
185 mutable uint64 depprops_; // dependency Fst props
383 uint64 props = kAccessible | kCoAccessible; local
387 if (mutable_fst_array_[i]->Properties(props, false) != props)
rmepsilon.h 275 uint64 props; local
277 SccVisitor<Arc> scc_visitor(&scc, 0, 0, &props);
408 uint64 props = fst.Properties(kFstProperties, false); local
409 SetProperties(RmEpsilonProperties(props, true), kCopyProperties);
  /external/openfst/src/include/fst/script/
info-impl.h 137 uint64 props = 0; local
138 SccVisitor<Arc> scc_visitor(&scc, &access, &coaccess, &props);
  /external/qemu/android/
main-common-ui.c 351 part_properties *props,
360 part_properties *p = get_part_properties(props, parts[i]);
422 part_properties* props = read_all_part_properties(aconfig_find(root, "parts")); local
432 part_properties *p = get_part_properties(props, parts[i]);
470 add_parts_to_layout(node, parts, N_PARTS, props, width, x_margin, y_margin);
479 add_parts_to_layout(node, parts, N_PARTS, props, height, x_margin, y_margin);
483 free_all_part_properties(props);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
factor-weight.h 164 uint64 props = fst.Properties(kFstProperties, false); local
165 SetProperties(FactorWeightProperties(props), kCopyProperties);
minimize.h 515 uint64 props = fst->Properties(kAcceptor | kIDeterministic| local
517 if (!(props & kIDeterministic))
520 if (!(props & kAcceptor)) { // weighted transducer
544 } else if (props & kWeighted) { // weighted acceptor
queue.h 511 uint64 props = fst.Properties(kAcyclic | kCyclic | local
513 if ((props & kTopSorted) || fst.Start() == kNoStateId) {
516 } else if (props & kAcyclic) {
519 } else if ((props & kUnweighted) && (Weight::Properties() & kIdempotent)) {
523 uint64 props; local
525 SccVisitor<Arc> scc_visitor(&scc_, 0, 0, &props);
rmepsilon.h 225 uint64 props; local
227 SccVisitor<Arc> scc_visitor(&scc, 0, 0, &props);
339 uint64 props = fst.Properties(kFstProperties, false); local
340 SetProperties(RmEpsilonProperties(props, true), kCopyProperties);
synchronize.h 75 uint64 props = fst.Properties(kFstProperties, false); local
76 SetProperties(SynchronizeProperties(props), kCopyProperties);
  /frameworks/av/media/mtp/
MtpDevice.cpp 254 MtpObjectPropertyList* props = getObjectPropsSupported(format); local
255 if (props) {
256 for (size_t j = 0; j < props->size(); j++) {
257 MtpObjectProperty prop = (*props)[j];
  /hardware/intel/img/psb_video/src/x11/
psb_xrandr.c 98 Atom *props; local
107 props = XRRListOutputProperties(psb_xrandr_info->dpy, psb_xrandr_info->extend_output->output_id, &nprop);
108 if (!props) {
116 XRRGetOutputProperty(psb_xrandr_info->dpy, psb_xrandr_info->extend_output->output_id, props[i],
120 propinfo = XRRQueryOutputProperty(psb_xrandr_info->dpy, psb_xrandr_info->extend_output->output_id, props[i]);
122 drv_debug_msg(VIDEO_DEBUG_ERROR, "Xrandr: get output %08x prop %08x failed\n", psb_xrandr_info->extend_output->output_id, props[i]);
126 prop_name = XGetAtomName(psb_xrandr_info->dpy, props[i]);
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
SystemTest.java 131 String[] props = { "java.version", "java.vendor", "java.vendor.url", local
140 for (int i = 0; i < props.length; i++) {
141 assertNotNull(props[i], System.getProperty(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...]
  /packages/apps/Camera2/src/com/android/camera/settings/
SettingsUtil.java 488 CameraDeviceInfo.Characteristics props = info.getCharacteristics(i); local
489 if (props == null) {
493 if (chooser.useCamera(props)) {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
PropertiesTest.java 123 MyProperties props = new MyProperties(); local
124 assertNull(props.getProperty("key"));
133 MyProperties props = new MyProperties(); local
134 assertEquals("defaultValue", props.getProperty("key", "defaultValue"));
283 Properties props = new Properties(); local
284 props.load(is);
286 assertEquals("1", "\n \t \f", props.getProperty(" \r"));
287 assertEquals("2", "a", props.getProperty("a"));
288 assertEquals("3", "bb as,dn ", props.getProperty("b"));
289 assertEquals("4", ":: cu", props.getProperty("c\r \t\nu"))
436 Properties props = new Properties(); local
892 Properties props = new Properties(); local
963 Properties props = new Properties(); local
972 Properties props = new Properties(); local
981 Properties props = new Properties(); local
990 Properties props = new Properties(); local
999 Properties props = new Properties(); local
1008 Properties props = new Properties(); local
1017 Properties props = new Properties(); local
1026 Properties props = new Properties(); local
1035 Properties props = new Properties(); local
1044 Properties props = new Properties(); local
1053 Properties props = new Properties(); local
1062 Properties props = new Properties(); local
1072 Properties props = new Properties(); local
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/camera2/cts/
CameraManagerTest.java 146 CameraCharacteristics props = mCameraManager.getCameraCharacteristics(ids[i]); local
147 assertNotNull("Can't get camera characteristics for camera " + ids[i], props);
148 Integer lensFacing = props.get(CameraCharacteristics.LENS_FACING);
178 CameraCharacteristics props = mCameraManager.getCameraCharacteristics(ids[i]); local
180 String.format("Can't get camera characteristics from: ID %s", ids[i]), props);
  /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/chromium_org/third_party/harfbuzz-ng/src/
hb-uniscribe.cc 285 TEXTRANGE_PROPERTIES props; member in struct:range_record_t
683 range->props.potfRecords = reinterpret_cast<OPENTYPE_FEATURE_RECORD *> (offset);
684 range->props.cotfRecords = feature_records.len - offset;
710 range->props.potfRecords = feature_records.array + reinterpret_cast<uintptr_t> (range->props.potfRecords);
814 bidi_state.uBidiLevel = HB_DIRECTION_IS_FORWARD (buffer->props.direction) ? 0 : 1;
830 OPENTYPE_TAG language_tag = hb_uint32_swap (hb_ot_tag_from_language (buffer->props.language));
836 bool backward = HB_DIRECTION_IS_BACKWARD (buffer->props.direction);
857 &range->props != range_properties[range_properties.len - 1])
859 TEXTRANGE_PROPERTIES **props = range_properties.push () local
    [all...]
  /external/chromium_org/third_party/icu/source/common/
ucase.cpp 86 #define GET_EXCEPTIONS(csp, props) ((csp)->exceptions+((props)>>UCASE_EXC_SHIFT))
88 #define PROPS_HAS_EXCEPTION(props) ((props)&UCASE_EXCEPTION)
136 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
137 if(!PROPS_HAS_EXCEPTION(props)) {
138 if(UCASE_GET_TYPE(props)>=UCASE_UPPER) {
139 c+=UCASE_GET_DELTA(props);
142 const uint16_t *pe=GET_EXCEPTIONS(csp, props);
153 uint16_t props=UTRIE2_GET16(&csp->trie, c) local
170 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
201 uint16_t props; local
433 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
440 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
447 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
463 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
808 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
952 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
1098 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
1162 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
    [all...]
  /external/chromium_org/ui/display/chromeos/x11/
native_display_delegate_x11.cc 550 Atom* props = XRRListOutputProperties(display_, id, &nprop); local
552 Atom prop = props[j];
584 if (props)
585 XFree(props);
  /external/chromium_org/v8/src/compiler/
simplified-lowering.cc 908 Operator::Properties props = node->op()->properties(); local
    [all...]
  /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/harfbuzz_ng/src/
hb-uniscribe.cc 285 TEXTRANGE_PROPERTIES props; member in struct:range_record_t
682 range->props.potfRecords = reinterpret_cast<OPENTYPE_FEATURE_RECORD *> (offset);
683 range->props.cotfRecords = feature_records.len - offset;
709 range->props.potfRecords = feature_records.array + reinterpret_cast<uintptr_t> (range->props.potfRecords);
813 bidi_state.uBidiLevel = HB_DIRECTION_IS_FORWARD (buffer->props.direction) ? 0 : 1;
829 OPENTYPE_TAG language_tag = hb_uint32_swap (hb_ot_tag_from_language (buffer->props.language));
835 bool backward = HB_DIRECTION_IS_BACKWARD (buffer->props.direction);
856 &range->props != range_properties[range_properties.len - 1])
858 TEXTRANGE_PROPERTIES **props = range_properties.push () local
    [all...]
  /external/icu/icu4c/source/common/
ucase.cpp 86 #define GET_EXCEPTIONS(csp, props) ((csp)->exceptions+((props)>>UCASE_EXC_SHIFT))
88 #define PROPS_HAS_EXCEPTION(props) ((props)&UCASE_EXCEPTION)
136 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
137 if(!PROPS_HAS_EXCEPTION(props)) {
138 if(UCASE_GET_TYPE(props)>=UCASE_UPPER) {
139 c+=UCASE_GET_DELTA(props);
142 const uint16_t *pe=GET_EXCEPTIONS(csp, props);
153 uint16_t props=UTRIE2_GET16(&csp->trie, c) local
170 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
201 uint16_t props; local
433 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
440 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
447 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
463 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
808 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
952 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
1098 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
1162 uint16_t props=UTRIE2_GET16(&csp->trie, c); local
    [all...]

Completed in 1482 milliseconds

1 2 3 4 56 7 8 91011>>