Searched defs:props (Results 1 - 25 of 195) sorted by last modified time

12345678

/external/wpa_supplicant_8/wpa_supplicant/dbus/
H A Ddbus_new_handlers.c4017 char **props = wpa_config_get_all(net->ssid, 1); local
4020 if (!props) {
4032 iterator = props;
4053 iterator = props;
4058 os_free(props);
H A Ddbus_new_helpers.c24 const struct wpa_dbus_property_desc *props,
30 for (dsc = props; dsc && dsc->dbus_property; dsc++) {
22 fill_dict_with_properties( DBusMessageIter *dict_iter, const struct wpa_dbus_property_desc *props, const char *interface, void *user_data, DBusError *error) argument
/external/vogar/lib/
H A Dmockito-all-1.8.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/hamcrest/ org/hamcrest/core/ org/hamcrest/internal/ org/ ...
/external/v8/test/webkit/
H A Ddelete-then-put.js28 function props(o) function
41 shouldBe("props(a)", "'a,b,c,d,e'");
44 shouldBe("props(a)", "'a,b,d,e'");
47 shouldBe("props(a)", "'a,b,d,e,c'");
/external/v8/tools/gcmole/
H A Dgcmole.cc759 CallProps props; local
762 props.SetEffect(i, VisitExpr(exprs[i], env));
765 if (!props.IsSafe()) ReportUnsafe(parent, BAD_EXPR_MSG);
767 return props.ComputeCumulativeEffect(IsRawPointerType(parent->getType()));
808 CallProps props; local
809 VisitArguments<>(call, &props, env);
810 if (!props.IsSafe()) ReportUnsafe(call, BAD_EXPR_MSG);
811 return props.ComputeCumulativeEffect(IsRawPointerType(call->getType()));
816 CallProps* props,
819 props
815 VisitArguments(ExprType* call, CallProps* props, const Environment& env) argument
826 CallProps props; local
[all...]
/external/v8/test/cctest/
H A Dtest-api.cc14656 v8::Handle<v8::Array> props = obj->GetPropertyNames(); local
14657 CHECK_EQ(elmc, props->Length());
14659 v8::String::Utf8Value elm(props->Get(v8::Integer::New(isolate, i)));
14670 v8::Handle<v8::Array> props = obj->GetOwnPropertyNames(); local
14671 CHECK_EQ(elmc, props->Length());
14673 v8::String::Utf8Value elm(props->Get(v8::Integer::New(isolate, i)));
14744 v8::Handle<v8::Array> props = val.As<v8::Object>()->GetPropertyNames(); local
14745 CHECK_EQ(0, props->Length());
14746 for (uint32_t i = 0; i < props->Length(); i++) {
/external/v8/test/mjsunit/es6/
H A Dcollections.js186 function props(x) {
191 assertArrayEquals([], props(func));
192 assertArrayEquals([], props(func.prototype));
193 assertArrayEquals([], props(new func()));
/external/v8/test/mjsunit/es7/
H A Dobject-observe.js1704 var props = [1, "1", "a"]; variable
1734 for (var i in props)
1736 TestFastElements(props[i], mutation[j], b1 != 0, b2 != 0, b3 != 0);
/external/v8/test/mjsunit/
H A Dfor-in.js28 function props(x) { function
34 assertEquals(0, props({}).length, "olen0");
35 assertEquals(1, props({x:1}).length, "olen1");
36 assertEquals(2, props({x:1, y:2}).length, "olen2");
38 assertArrayEquals(["x"], props({x:1}), "x");
39 assertArrayEquals(["x", "y"], props({x:1, y:2}), "xy");
40 assertArrayEquals(["x", "y", "zoom"], props({x:1, y:2, zoom:3}), "xyzoom");
42 assertEquals(0, props([]).length, "alen0");
43 assertEquals(1, props([1]).length, "alen1");
44 assertEquals(2, props([
[all...]
H A Dsimple-constructor.js28 function props(x) { function
59 assertArrayEquals(["x"], props(o1_1), "3");
60 assertArrayEquals(["x"], props(o1_2), "4");
64 assertArrayEquals(["x"], props(o2_1));
65 assertArrayEquals(["x"], props(o2_2));
69 assertArrayEquals(["x", "y", "z"], props(o3_1));
70 assertArrayEquals(["x", "y", "z"], props(o3_2));
74 assertArrayEquals(["x", "y", "z"], props(o4_0_1));
75 assertArrayEquals(["x", "y", "z"], props(o4_0_2));
79 assertArrayEquals(["x", "y"], props(o4_1_
[all...]
/external/v8/test/mjsunit/harmony/
H A Dblock-for.js32 function props(x) { function
38 assertEquals(0, props({}).length);
39 assertEquals(1, props({x:1}).length);
40 assertEquals(2, props({x:1, y:2}).length);
42 assertArrayEquals(["x"], props({x:1}));
43 assertArrayEquals(["x", "y"], props({x:1, y:2}));
44 assertArrayEquals(["x", "y", "zoom"], props({x:1, y:2, zoom:3}));
46 assertEquals(0, props([]).length);
47 assertEquals(1, props([1]).length);
48 assertEquals(2, props([
[all...]
H A Dtypedarrays.js553 function props(x) {
558 assertArrayEquals([], props(func));
559 assertArrayEquals([], props(func.prototype));
561 assertArrayEquals([], props(obj));
/external/v8/test/mjsunit/regress/
H A Dregress-crbug-3867.js28 function props(x) { function
52 assertArrayEquals(["a1", "a2", "a3"], props(new A()));
53 assertArrayEquals(["b3", "b2", "b1"], props(new B()));
54 assertArrayEquals(["c3", "c1", "c2"], props(new C()));
55 assertArrayEquals(["s1", "s2", "s3"], props({s1: 0, s2: 0, s3: 0}));
56 assertArrayEquals(["s3", "s2", "s1"], props({s3: 0, s2: 0, s1: 0}));
57 assertArrayEquals(["s3", "s1", "s2"], props({s3: 0, s1: 0, s2: 0}));
62 assertArrayEquals(["a1", "a2", "a3", "a0", "a4"], props(a));
67 assertArrayEquals(["b3", "b2", "b1", "b4", "b0"], props(b));
72 assertArrayEquals(["s1", "s2", "s3", "s0", "s4"], props(o
[all...]
/external/toybox/toys/pending/
H A Dxzcat.c400 * big enough, and XZ_OPTIONS_ERROR if props indicates something that this
404 uint8_t props);
1947 static int lzma_props(struct xz_dec_lzma2 *s, uint8_t props) argument
1949 if (props > (4 * 5 + 4) * 9 + 8)
1953 while (props >= 9 * 5) {
1954 props -= 9 * 5;
1961 while (props >= 9) {
1962 props -= 9;
1966 s->lzma.lc = props;
2264 enum xz_ret xz_dec_lzma2_reset(struct xz_dec_lzma2 *s, uint8_t props) argument
[all...]
/external/v8/src/arm64/
H A Dfull-codegen-arm64.cc2795 Register props = x12; local
2798 __ Ldr(props, FieldMemOperand(object, JSObject::kPropertiesOffset));
2799 __ Ldr(props_map, FieldMemOperand(props, HeapObject::kMapOffset));
/external/v8/src/compiler/
H A Dsimplified-lowering.cc908 Operator::Properties props = node->op()->properties(); local
911 CallDescriptor* desc = Linkage::GetRuntimeCallDescriptor(f, 2, props, zone());
/external/v8/src/
H A Dfactory.cc2242 Object* props = local
2245 if (!props->IsUndefined()) {
2246 Handle<Object> props_handle(props, isolate());
2252 Object* props = info->property_accessors(); local
2253 if (!props->IsUndefined()) {
2254 Handle<Object> props_handle(props, isolate());
2279 Handle<Object> props = Handle<Object>(instance->property_accessors(), local
2281 if (!props->IsUndefined()) {
2282 Map::AppendCallbackDescriptors(map, props);
2287 Handle<Object> props local
[all...]
/external/svox/pico/lib/
H A Dpicoktab.c683 picoos_uint8 *props; member in struct:ktabphones_subobj
687 /* bitmasks to extract the property info from props */
707 ktabphones->props = &(this->base[KTAB_START_PROPS]);
747 return (KTAB_PPROP_VOWEL & ((ktabphones_SubObj)this)->props[ch]);
751 return (KTAB_PPROP_DIPHTH & ((ktabphones_SubObj)this)->props[ch]);
755 return (KTAB_PPROP_GLOTT & ((ktabphones_SubObj)this)->props[ch]);
759 return (KTAB_PPROP_NONSYLLVOWEL & ((ktabphones_SubObj)this)->props[ch]);
763 return (KTAB_PPROP_SYLLCONS & ((ktabphones_SubObj)this)->props[ch]);
768 picoos_uint8 props; local
769 props
[all...]
/external/slf4j/log4j-over-slf4j/compatibility/lib/
H A Dlog4j-1.2.14.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ...
H A Dlog4j-1.3alpha-8.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/log4j/ org/apache/log4j/Appender ...
H A Dlogback-core-0.9.8-SNAPSHOT.jarMETA-INF/ META-INF/MANIFEST.MF ch/ ch/qos/ ch/qos/logback/ ch/qos/logback/core/ ...
/external/slf4j/log4j-over-slf4j/src/main/java/org/apache/log4j/xml/
H A DDOMConfigurator.java62 public static String subst(String value, Properties props) { argument
/external/skia/samplecode/
H A DSampleApp.cpp275 SkSurfaceProps props(win->getSurfaceProps());
276 return SkSurface::NewRenderTargetDirect(fCurRenderTarget, &props);
1709 SkSurfaceProps props = this->getSurfaceProps(); local
1710 uint32_t flags = props.flags() ^ SkSurfaceProps::kUseDistanceFieldFonts_Flag;
1711 this->setSurfaceProps(SkSurfaceProps(flags, props.pixelGeometry()));
/external/skia/src/core/
H A DSkBitmapDevice.cpp73 const SkDeviceProperties* props) {
95 if (props) {
96 return SkNEW_ARGS(SkBitmapDevice, (bitmap, *props));
353 SkSurface* SkBitmapDevice::newSurface(const SkImageInfo& info, const SkSurfaceProps& props) { argument
354 return SkSurface::NewRaster(info, &props);
72 Create(const SkImageInfo& origInfo, const SkDeviceProperties* props) argument
H A DSkCanvas.cpp91 static uint32_t filter_paint_flags(const SkSurfaceProps& props, uint32_t flags) { argument
92 const uint32_t propFlags = props.flags();
336 AutoDrawLooper(SkCanvas* canvas, const SkSurfaceProps& props, const SkPaint& paint, argument
391 fNewPaintFlags = filter_paint_flags(props, oldFlags);
577 SkCanvas::SkCanvas(int width, int height, const SkSurfaceProps* props) argument
579 , fProps(SkSurfacePropsCopyOrDefault(props))
596 SkCanvas::SkCanvas(SkBaseDevice* device, const SkSurfaceProps* props, InitFlags flags) argument
598 , fProps(SkSurfacePropsCopyOrDefault(props))
614 SkCanvas::SkCanvas(const SkBitmap& bitmap, const SkSurfaceProps& props) argument
616 , fProps(props)
1111 newSurface(const SkImageInfo& info, const SkSurfaceProps* props) argument
1118 onNewSurface(const SkImageInfo& info, const SkSurfaceProps& props) argument
[all...]

Completed in 607 milliseconds

12345678