Searched defs:props (Results 51 - 75 of 250) sorted by relevance

12345678910

/external/apache-harmony/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DMemoryHandlerTest.java48 final static Properties props = new Properties(); field in class:MemoryHandlerTest
70 .PropertiesToInputStream(props));
80 props.put("java.util.logging.MemoryHandler.level", "FINE");
81 props.put("java.util.logging.MemoryHandler.filter", baseClassName
83 props.put("java.util.logging.MemoryHandler.size", "2");
84 props.put("java.util.logging.MemoryHandler.push", "WARNING");
85 props.put("java.util.logging.MemoryHandler.target", baseClassName
87 props.put("java.util.logging.MemoryHandler.formatter", baseClassName
97 props.clear();
170 props
[all...]
H A DFileHandlerTest.java48 final static Properties props = new Properties(); field in class:FileHandlerTest
72 .PropertiesToInputStream(props));
80 props.clear();
81 props.put("java.util.logging.FileHandler.level", "FINE");
82 props.put("java.util.logging.FileHandler.filter", className
84 props.put("java.util.logging.FileHandler.formatter", className
86 props.put("java.util.logging.FileHandler.encoding", "iso-8859-1");
88 props.put("java.util.logging.FileHandler.limit", "1000");
90 props.put("java.util.logging.FileHandler.count", "2");
92 props
[all...]
H A DSocketHandlerTest.java63 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
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_Configuration.java96 static Hashtable<String, String> props = null; field in class:Support_Configuration
106 Hashtable<String, String> props = new Hashtable<String, String>();
131 load(in, props);
135 if (props.size() == 0) {
140 value = props.get("DomainAddress");
145 value = props.get("WebName");
150 value = props.get("TestResourcesDir");
154 value = props.get("HomeAddressResponse");
159 value = props.get("HomeAddressSoftware");
164 value = props
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DOutputProperties.java381 * @param props the list of properties to search in.
385 public static QName getQNameProperty(String key, Properties props) argument
388 String s = props.getProperty(key);
478 * @param props the list of properties to search in.
482 public static Vector getQNameProperties(String key, Properties props) argument
485 String s = props.getProperty(key);
/external/chromium_org/ppapi/cpp/dev/
H A Dscriptable_object_deprecated.cc68 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/ppapi/cpp/private/
H A Dvar_private.cc77 PP_Var* props = NULL;
80 var_, &prop_count, &props, OutException(exception).get());
85 Var temp(PassRef(), props[i]); local
90 memory_if->MemFree(props);
/external/chromium_org/third_party/harfbuzz-ng/src/
H A Dhb-ot-shape-private.hh39 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) ?
H A Dhb-shape-plan.cc100 * @props:
113 const hb_segment_properties_t *props,
129 if (unlikely (!props || hb_object_is_inert (face)))
138 assert (props->direction != HB_DIRECTION_INVALID);
143 shape_plan->props = *props;
171 HB_SEGMENT_PROPERTIES_DEFAULT, /* props */
302 assert (hb_segment_properties_equal (&shape_plan->props, &buffer->props));
333 return hb_segment_properties_hash (&shape_plan->props)
112 hb_shape_plan_create(hb_face_t *face, const hb_segment_properties_t *props, const hb_feature_t *user_features, unsigned int num_user_features, const char * const *shaper_list) argument
345 const hb_segment_properties_t props; member in struct:hb_shape_plan_proposal_t
402 hb_shape_plan_create_cached(hb_face_t *face, const hb_segment_properties_t *props, const hb_feature_t *user_features, unsigned int num_user_features, const char * const *shaper_list) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xorg/
H A Dxorg_output.c127 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/chromium_org/third_party/skia/src/image/
H A DSkSurface_Gpu.cpp36 SkSurface_Gpu::SkSurface_Gpu(GrRenderTarget* renderTarget, bool cached, const SkSurfaceProps* props, argument
38 : INHERITED(renderTarget->width(), renderTarget->height(), props)
42 deviceFlags |= this->props().isUseDistanceFieldFonts() ? SkGpuDevice::kDFFonts_Flag : 0;
43 fDevice = SkGpuDevice::Create(renderTarget, this->props(), deviceFlags);
59 return SkNEW_ARGS(SkCanvas, (fDevice, &this->props(), flags));
65 return SkSurface::NewRenderTarget(fDevice->context(), info, sampleCount, &this->props());
110 SkSurface* SkSurface::NewRenderTargetDirect(GrRenderTarget* target, const SkSurfaceProps* props) { argument
114 return SkNEW_ARGS(SkSurface_Gpu, (target, false, props, false));
118 const SkSurfaceProps* props) {
135 return SkNEW_ARGS(SkSurface_Gpu, (tex->asRenderTarget(), false, props, tru
117 NewRenderTarget(GrContext* ctx, const SkImageInfo& info, int sampleCount, const SkSurfaceProps* props) argument
138 NewScratchRenderTarget(GrContext* ctx, const SkImageInfo& info, int sampleCount, const SkSurfaceProps* props) argument
[all...]
H A DSkSurface_Raster.cpp83 const SkSurfaceProps* props)
84 : INHERITED(info, props)
90 SkSurface_Raster::SkSurface_Raster(SkPixelRef* pr, const SkSurfaceProps* props) argument
91 : INHERITED(pr->info().width(), pr->info().height(), props)
105 return SkNEW_ARGS(SkCanvas, (fBitmap, this->props()));
145 void* context, const SkSurfaceProps* props) {
156 return SkNEW_ARGS(SkSurface_Raster, (info, pixels, rb, releaseProc, context, props));
160 const SkSurfaceProps* props) {
161 return NewRasterDirectReleaseProc(info, pixels, rowBytes, NULL, NULL, props);
164 SkSurface* SkSurface::NewRaster(const SkImageInfo& info, const SkSurfaceProps* props) { argument
81 SkSurface_Raster(const SkImageInfo& info, void* pixels, size_t rb, void (*releaseProc)(void* pixels, void* context), void* context, const SkSurfaceProps* props) argument
143 NewRasterDirectReleaseProc(const SkImageInfo& info, void* pixels, size_t rb, void (*releaseProc)(void* pixels, void* context), void* context, const SkSurfaceProps* props) argument
159 NewRasterDirect(const SkImageInfo& info, void* pixels, size_t rowBytes, const SkSurfaceProps* props) argument
[all...]
/external/harfbuzz_ng/src/
H A Dhb-ot-shape-private.hh39 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) ?
H A Dhb-shape-plan.cc89 * @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)
101 hb_shape_plan_create(hb_face_t *face, const hb_segment_properties_t *props, const hb_feature_t *user_features, unsigned int num_user_features, const char * const *shaper_list) argument
323 const hb_segment_properties_t props; member in struct:hb_shape_plan_proposal_t
380 hb_shape_plan_create_cached(hb_face_t *face, const hb_segment_properties_t *props, const hb_feature_t *user_features, unsigned int num_user_features, const char * const *shaper_list) argument
[all...]
/external/lzma/C/
H A DLzma86Enc.c25 CLzmaEncProps props; local
26 LzmaEncProps_Init(&props);
27 props.level = level;
28 props.dictSize = dictSize;
84 &props, dest + 1, &outPropsSize, 0,
/external/lzma/CPP/7zip/Compress/
H A DLzmaEncoder.cpp104 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/mesa3d/src/gallium/state_trackers/xorg/
H A Dxorg_output.c127 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/mockito/cglib-and-asm/src/org/mockito/cglib/beans/
H A DBeanMapEmitter.java80 private Map makePropertyMap(PropertyDescriptor[] props) { argument
82 for (int i = 0; i < props.length; i++) {
83 names.put(((PropertyDescriptor)props[i]).getName(), props[i]);
/external/openfst/src/include/fst/
H A Dequivalent.h145 uint64 props = kNoEpsilons | kIDeterministic | kAcceptor; local
146 if (fst1.Properties(props, true) != props) {
152 if (fst2.Properties(props, true) != props) {
H A Dpower-weight.h82 uint64 props = W::Properties(); local
83 return props & (kLeftSemiring | kRightSemiring |
H A Dtest-properties.h39 inline uint64 KnownProperties(uint64 props) { argument
40 return kBinaryProperties | (props & kTrinaryProperties) |
41 ((props & kPosTrinaryProperties) << 1) |
42 ((props & kNegTrinaryProperties) >> 1);
/external/qemu/include/hw/
H A Dqdev-core.h16 DeviceProperty *props; member in struct:DeviceState
81 DevicePropList *props; member in struct:DeviceInfo
/external/srec/tools/thirdparty/OpenFst/fst/lib/
H A Dconnect.h42 // props: related property bits (cyclicity, initial cyclicity,
45 vector<bool> *coaccess, uint64 *props)
46 : scc_(scc), access_(access), coaccess_(coaccess), props_(props) {}
47 SccVisitor(uint64 *props) argument
48 : scc_(0), access_(0), coaccess_(0), props_(props) {}
207 uint64 props = 0; local
208 SccVisitor<Arc> scc_visitor(0, &access, &coaccess, &props);
44 SccVisitor(vector<StateId> *scc, vector<bool> *access, vector<bool> *coaccess, uint64 *props) argument
H A Dequivalent.h115 uint64 props = kNoEpsilons | kIDeterministic | kAcceptor; local
116 if (fst1.Properties(props, true) != props) {
120 if (fst2.Properties(props, true) != props) {
H A Dtest-properties.h35 inline uint64 KnownProperties(uint64 props) { argument
36 return kBinaryProperties | (props & kTrinaryProperties) |
37 (props & kPosTrinaryProperties) << 1 |
38 (props & kNegTrinaryProperties) >> 1;

Completed in 284 milliseconds

12345678910