HomeSort by relevance Sort by last modified time
    Searched refs:SetProperty (Results 1 - 25 of 46) sorted by null

1 2

  /external/bluetooth/bluez/test/
test-adapter 51 adapter.SetProperty("Name", args[1])
65 adapter.SetProperty("Powered", value)
79 adapter.SetProperty("Pairable", value)
88 adapter.SetProperty("PairableTimeout", timeout)
102 adapter.SetProperty("Discoverable", value)
111 adapter.SetProperty("DiscoverableTimeout", timeout)
test-device 123 device.SetProperty("Alias", args[2])
143 device.SetProperty("Trusted", value)
163 device.SetProperty("Blocked", value)
test-telephony 78 headset.SetProperty('SpeakerGain', dbus.UInt16(args[2]))
93 headset.SetProperty('MicrophoneGain', dbus.UInt16(args[2]))
  /development/simulator/app/
PropertyServer.h 37 bool SetProperty(const char* key, const char* value);
PropertyServer.cpp 163 SetProperty(propList[i].key, propList[i].value);
170 SetProperty(kPropCheckJni, "1");
172 SetProperty(kPropCheckJni, "0");
216 bool PropertyServer::SetProperty(const char* key, const char* value)
359 if (SetProperty(reqBuf, reqBuf + PROPERTY_KEY_MAX))
  /external/webkit/JavaScriptGlue/
JSObject.h 45 void SetProperty(CFStringRef propertyName, JSUserObject* value);
JSObject.cpp 67 void JSUserObject::SetProperty(CFStringRef propertyName, JSUserObject* value)
69 if (fCallBacks.setProperty)
71 fCallBacks.setProperty(fData, propertyName, (JSObjectRef)value);
UserObjectImp.cpp 161 fJSUserObject->SetProperty(cfPropName, jsValueObj);
  /external/v8/test/cctest/
test-heap.cc 219 Top::context()->global()->SetProperty(func_name, function, NONE);
225 obj->SetProperty(prop_name, Smi::FromInt(23), NONE);
226 obj->SetProperty(prop_namex, Smi::FromInt(24), NONE);
245 Top::context()->global()->SetProperty(obj_name, obj, NONE);
248 obj->SetProperty(prop_name, Smi::FromInt(23), NONE);
525 obj->SetProperty(prop_name, Smi::FromInt(23), NONE);
528 function->SetProperty(prop_name, Smi::FromInt(24), NONE);
549 obj->SetProperty(first, Smi::FromInt(1), NONE);
557 obj->SetProperty(first, Smi::FromInt(1), NONE);
558 obj->SetProperty(second, Smi::FromInt(2), NONE)
    [all...]
test-mark-compact.cc 182 Top::context()->global()->SetProperty(func_name, function, NONE);
195 Top::context()->global()->SetProperty(obj_name, obj, NONE);
197 obj->SetProperty(prop_name, Smi::FromInt(23), NONE);
test-compiler.cc 111 SetProperty(global, symbol, object, NONE);
  /external/v8/src/
math.js 42 %SetProperty(global, "Math", $Math, DONT_ENUM);
201 %SetProperty($Math,
206 %SetProperty($Math,
211 %SetProperty($Math,
216 %SetProperty($Math,
220 %SetProperty($Math,
224 %SetProperty($Math,
228 %SetProperty($Math,
232 %SetProperty($Math,
code-stubs.h 68 V(SetProperty) \
v8natives.js 57 %SetProperty(object, key, f, attributes);
155 %SetProperty(global, "NaN", $NaN, DONT_ENUM | DONT_DELETE);
158 %SetProperty(global, "Infinity", 1/0, DONT_ENUM | DONT_DELETE);
161 %SetProperty(global, "undefined", void 0, DONT_ENUM | DONT_DELETE);
191 %SetProperty($Boolean.prototype, "constructor", $Boolean, DONT_ENUM);
891 %SetProperty($Number.prototype, "constructor", $Number, DONT_ENUM);
895 %SetProperty($Number,
901 %SetProperty($Number, "MIN_VALUE", 5e-324, DONT_ENUM | DONT_DELETE | READ_ONLY);
904 %SetProperty($Number, "NaN", $NaN, DONT_ENUM | DONT_DELETE | READ_ONLY);
907 %SetProperty($Number
    [all...]
bootstrapper.cc 345 SetProperty(target, symbol, function, DONT_ENUM);
537 SetProperty(prototype, Factory::constructor_symbol(),
640 SetProperty(inner_global, object_name, Top::object_function(), DONT_ENUM);
745 SetProperty(global, name, json_object, DONT_ENUM);
774 SetProperty(result, Factory::callee_symbol(),
777 SetProperty(result, Factory::length_symbol(),
    [all...]
regexp.js 76 %SetProperty(object, 'source', pattern,
80 %SetProperty(object, 'global', global, DONT_DELETE | READ_ONLY | DONT_ENUM);
83 %SetProperty(object, 'ignoreCase', ignoreCase,
87 %SetProperty(object, 'multiline', multiline,
91 %SetProperty(object, 'lastIndex', 0, DONT_DELETE | DONT_ENUM);
329 %SetProperty($RegExp.prototype, 'constructor', $RegExp, DONT_ENUM);
apinatives.js 77 %SetProperty(fun.prototype, "constructor", fun, DONT_ENUM);
104 %SetProperty(obj, name, value, attributes);
handles.h 198 Handle<Object> SetProperty(Handle<JSObject> object,
203 Handle<Object> SetProperty(Handle<Object> object,
runtime.cc 149 result = copy->SetProperty(key_string, result, NONE);
286 result = SetProperty(boilerplate, name, value, NONE);
298 result = SetProperty(boilerplate, name, value, NONE);
485 value = JSObject::cast(object)->SetProperty(key, value, DONT_DELETE);
781 // SetProperty.
820 SetProperty(global, name, value, attributes);
826 // SetProperty). Also, we must use the handle-based version to
    [all...]
runtime.h 215 F(SetProperty, -1 /* 3 or 4 */, 1) \
handles.cc 220 Handle<Object> SetProperty(Handle<JSObject> object,
224 CALL_HEAP_FUNCTION(object->SetProperty(*key, *value, attributes), Object);
228 Handle<Object> SetProperty(Handle<Object> object,
  /external/v8/test/mjsunit/regress/
regress-334.js 40 %SetProperty(object, "foo", func1, DONT_ENUM | DONT_DELETE);
41 %SetProperty(object, "bar", func1, DONT_ENUM | READ_ONLY);
42 %SetProperty(object, "baz", func1, DONT_DELETE | READ_ONLY);
43 %SetProperty(object.__proto__, "bif", func1, DONT_ENUM | DONT_DELETE | READ_ONLY);
  /external/skia/src/xml/
SkJSDisplayable.cpp 72 static JSBool SetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp);
213 gDisplayableClasses[type].setProperty = SkJSDisplayable::SetProperty;
304 JSBool SkJSDisplayable::SetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp) {
354 displayable->setProperty(-1 - (int) info->fOffset, scriptValue);
  /external/quake/quake/src/QW/dxsdk/sdk/inc/
dinput.h 302 STDMETHOD(SetProperty)(THIS_ REFGUID,LPCDIPROPHEADER) PURE;
332 STDMETHOD(SetProperty)(THIS_ REFGUID,LPCDIPROPHEADER) PURE;
366 #define IDirectInputDevice_SetProperty(p,a,b) (p)->lpVtbl->SetProperty(p,a,b)
  /external/quake/quake/src/WinQuake/dxsdk/SDK/INC/
DINPUT.H 302 STDMETHOD(SetProperty)(THIS_ REFGUID,LPCDIPROPHEADER) PURE;
332 STDMETHOD(SetProperty)(THIS_ REFGUID,LPCDIPROPHEADER) PURE;
366 #define IDirectInputDevice_SetProperty(p,a,b) (p)->lpVtbl->SetProperty(p,a,b)

Completed in 316 milliseconds

1 2