HomeSort by relevance Sort by last modified time
    Searched defs:props (Results 26 - 50 of 383) sorted by null

12 3 4 5 6 7 8 91011>>

  /libcore/luni/src/test/java/libcore/java/sql/
OldDriverPropertyInfoTest.java 51 Properties props = new Properties(); local
54 props);
  /build/core/tasks/
product-graph.mk 60 define emit-product-node-props
78 $(foreach p,$(PRIVATE_PRODUCTS),$(call emit-product-node-props,$(p),$@.in))
  /external/chromium_org/ppapi/cpp/dev/
scriptable_object_deprecated.cc 68 std::vector<Var> props; local
69 static_cast<ScriptableObject*>(object)->GetAllPropertyNames(&props, e.Get());
70 if (props.empty())
72 *property_count = static_cast<uint32_t>(props.size());
77 memory_if->MemAlloc(sizeof(PP_Var) * props.size()));
79 for (size_t i = 0; i < props.size(); ++i)
80 (*properties)[i] = props[i].Detach();
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-shape-private.hh 39 hb_segment_properties_t props; member in struct:hb_ot_shape_plan_t
69 hb_segment_properties_t props; member in struct:hb_ot_shape_planner_t
75 props (master_plan->props),
77 map (face, &props) {}
82 plan.props = props;
91 plan.kern_mask = plan.map.get_mask (HB_DIRECTION_IS_HORIZONTAL (plan.props.direction) ?
hb-shape-plan.cc 89 * @props:
102 const hb_segment_properties_t *props,
107 assert (props->direction != HB_DIRECTION_INVALID);
114 if (unlikely (!props || hb_object_is_inert (face)))
126 shape_plan->props = *props;
154 HB_SEGMENT_PROPERTIES_DEFAULT, /* props */
280 assert (hb_segment_properties_equal (&shape_plan->props, &buffer->props));
311 return hb_segment_properties_hash (&shape_plan->props)
323 const hb_segment_properties_t props; member in struct:hb_shape_plan_proposal_t
    [all...]
hb-ot-map-private.hh 232 hb_segment_properties_t props; variable
  /external/chromium_org/v8/test/mjsunit/es6/
weak_collections.js 159 function props(x) {
164 assertArrayEquals([], props(func));
165 assertArrayEquals([], props(func.prototype));
166 assertArrayEquals([], props(new func()));
  /external/chromium_org/v8/test/mjsunit/harmony/
collections.js 179 function props(x) {
184 assertArrayEquals([], props(func));
185 assertArrayEquals([], props(func.prototype));
186 assertArrayEquals([], props(new func()));
typedarrays.js 553 function props(x) {
558 assertArrayEquals([], props(func));
559 assertArrayEquals([], props(func.prototype));
561 assertArrayEquals([], props(obj));
  /external/harfbuzz_ng/src/
hb-ot-shape-private.hh 39 hb_segment_properties_t props; member in struct:hb_ot_shape_plan_t
69 hb_segment_properties_t props; member in struct:hb_ot_shape_planner_t
75 props (master_plan->props),
77 map (face, &props) {}
82 plan.props = props;
91 plan.kern_mask = plan.map.get_mask (HB_DIRECTION_IS_HORIZONTAL (plan.props.direction) ?
hb-shape-plan.cc 89 * @props:
102 const hb_segment_properties_t *props,
112 if (unlikely (!props || hb_object_is_inert (face)))
121 assert (props->direction != HB_DIRECTION_INVALID);
126 shape_plan->props = *props;
154 HB_SEGMENT_PROPERTIES_DEFAULT, /* props */
280 assert (hb_segment_properties_equal (&shape_plan->props, &buffer->props));
311 return hb_segment_properties_hash (&shape_plan->props)
323 const hb_segment_properties_t props; member in struct:hb_shape_plan_proposal_t
    [all...]
hb-ot-map-private.hh 232 hb_segment_properties_t props; variable
  /external/lzma/CPP/7zip/Compress/
LzmaEncoder.cpp 104 CLzmaEncProps props; local
105 LzmaEncProps_Init(&props);
114 if (prop.vt != VT_BOOL) return E_INVALIDARG; props.writeEndMark = (prop.boolVal == VARIANT_TRUE); break;
116 if (prop.vt != VT_UI4) return E_INVALIDARG; props.numThreads = prop.ulVal; break;
118 RINOK(SetLzmaProp(propID, prop, props));
121 return SResToHRESULT(LzmaEnc_SetProps(_encoder, &props));
126 Byte props[LZMA_PROPS_SIZE]; local
128 RINOK(LzmaEnc_WriteProperties(_encoder, props, &size));
129 return WriteStream(outStream, props, size);
  /external/qemu/distrib/sdl-1.2.15/src/video/photon/
SDL_phyuv_c.h 37 PgScalerProps_t props; member in struct:private_yuvhwdata
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
equivalent.h 115 uint64 props = kNoEpsilons | kIDeterministic | kAcceptor; local
116 if (fst1.Properties(props, true) != props) {
120 if (fst2.Properties(props, true) != props) {
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
OutputPropertiesFactory.java 355 Properties props = new Properties(defaults); local
381 props.load(bis);
442 Enumeration keys = ((Properties) props.clone()).keys();
459 value = (String) props.get(key);
478 props.remove(key);
479 props.put(newKey, newValue);
484 return props;
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/
BeanGenerator.java 35 public Object newInstance(String superclass, Map props);
39 private Map props = new HashMap(); field in class:BeanGenerator
60 if (props.containsKey(name)) {
63 props.put(name, Type.getType(type));
89 Object key = KEY_FACTORY.newInstance(superName, props);
94 int size = props.size();
95 String[] names = (String[])props.keySet().toArray(new String[size]);
98 types[i] = (Type)props.get(names[i]);
129 public static void addProperties(BeanGenerator gen, Map props) {
130 for (Iterator it = props.keySet().iterator(); it.hasNext();)
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/multiwaveview/
Tweener.java 64 ArrayList<PropertyValuesHolder> props = new ArrayList<PropertyValuesHolder>(vars.length/2); local
84 props.add(PropertyValuesHolder.ofFloat(key,
87 props.add(PropertyValuesHolder.ofInt(key,
91 props.add(PropertyValuesHolder.ofFloat(key, floatValue));
103 props.toArray(new PropertyValuesHolder[props.size()]));
109 replace(props, object); // Cancel all animators for given object
163 private static void replace(ArrayList<PropertyValuesHolder> props, Object... args) {
168 if (props != null) {
170 props.toArray(new PropertyValuesHolder[props.size()]))
    [all...]
  /packages/apps/InCallUI/src/com/android/incallui/widget/multiwaveview/
Tweener.java 64 ArrayList<PropertyValuesHolder> props = new ArrayList<PropertyValuesHolder>(vars.length/2); local
85 props.add(PropertyValuesHolder.ofFloat(key,
88 props.add(PropertyValuesHolder.ofInt(key,
92 props.add(PropertyValuesHolder.ofFloat(key, floatValue));
104 props.toArray(new PropertyValuesHolder[props.size()]));
110 replace(props, object); // Cancel all animators for given object
164 private static void replace(ArrayList<PropertyValuesHolder> props, Object... args) {
169 if (props != null) {
171 props.toArray(new PropertyValuesHolder[props.size()]))
    [all...]
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/
MessageParser.java 198 Properties props = new Properties(); local
199 props.load(new StringReader(data));
203 = props.getProperty(EXTRA_PROVISIONING_TIME_ZONE);
204 if ((s = props.getProperty(EXTRA_PROVISIONING_LOCALE)) != null) {
207 params.mWifiSsid = props.getProperty(EXTRA_PROVISIONING_WIFI_SSID);
208 params.mWifiSecurityType = props.getProperty(EXTRA_PROVISIONING_WIFI_SECURITY_TYPE);
209 params.mWifiPassword = props.getProperty(EXTRA_PROVISIONING_WIFI_PASSWORD);
210 params.mWifiProxyHost = props.getProperty(EXTRA_PROVISIONING_WIFI_PROXY_HOST);
211 params.mWifiProxyBypassHosts = props.getProperty(EXTRA_PROVISIONING_WIFI_PROXY_BYPASS);
212 params.mWifiPacUrl = props.getProperty(EXTRA_PROVISIONING_WIFI_PAC_URL)
    [all...]
  /external/apache-http/src/org/apache/http/util/
VersionInfo.java 252 Properties props = new Properties(); local
253 props.load(is);
254 vip = props;
  /external/chromium_org/device/bluetooth/
bluetooth_remote_gatt_characteristic_chromeos.cc 115 Properties props = kPropertyNone; local
121 props |= kPropertyBroadcast;
123 props |= kPropertyRead;
125 props |= kPropertyWriteWithoutResponse;
127 props |= kPropertyWrite;
129 props |= kPropertyNotify;
131 props |= kPropertyIndicate;
133 props |= kPropertyAuthenticatedSignedWrites;
135 props |= kPropertyExtendedProperties;
137 props |= kPropertyReliableWrite
    [all...]
  /external/chromium_org/third_party/icu/source/common/
ubidi_props.c 131 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local
132 return (UCharDirection)UBIDI_GET_CLASS(props);
137 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local
138 return (UBool)UBIDI_GET_FLAG(props, UBIDI_IS_MIRRORED_SHIFT);
143 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local
144 int32_t delta=((int16_t)props)>>UBIDI_MIRROR_DELTA_SHIFT;
176 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local
177 return (UBool)UBIDI_GET_FLAG(props, UBIDI_BIDI_CONTROL_SHIFT);
182 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local
183 return (UBool)UBIDI_GET_FLAG(props, UBIDI_JOIN_CONTROL_SHIFT)
188 uint16_t props=UTRIE2_GET16(&bdp->trie, c); local
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
xorg_output.c 127 drmModePropertyPtr props = NULL; local
133 props = drmModeGetProperty(priv->fd, drm_connector->props[i]);
134 if (!props)
137 if (!(props->flags & DRM_MODE_PROP_BLOB))
140 if (!strcmp(props->name, "EDID")) {
148 drmModeFreeProperty(props);
279 prop = drmModeGetProperty(ms->fd, drm_connector->props[p]);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
Mailer.java 73 Properties props = System.getProperties(); local
76 props.put("mail.smtp.host", buildProperties.getHost());
79 Session session = Session.getDefaultInstance(props, null);
126 Properties props = System.getProperties(); local
129 props.put("mail.smtp.host", buildProperties.getHost());
132 Session session = Session.getDefaultInstance(props, null);
173 Properties props = System.getProperties(); local
176 props.put("mail.smtp.host", buildProperties.getHost());
179 Session session = Session.getDefaultInstance(props, null);

Completed in 1766 milliseconds

12 3 4 5 6 7 8 91011>>