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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
2010-08-12-asm-aggr-arg.c 6 struct wrapper { struct
12 struct wrapper w;
  /external/chromium_org/base/android/
jni_int_wrapper.h 8 // Wrapper used to receive int when calling Java from native.
9 // The wrapper disallows automatic conversion of long to int.
13 // platforms. Note the wrapper allows other lossy conversions into
24 inline jint as_jint(JniIntWrapper wrapper) {
25 return wrapper;
50 inline jint as_jint(const JniIntWrapper& wrapper) {
51 return wrapper.as_jint();
  /external/chromium_org/mojo/apps/js/test/
handle_unittest.cc 39 TestHandleWrapper wrapper(MOJO_HANDLE_INVALID);
40 wrapper.AddCloseObserver(this);
42 wrapper.Close();
52 TestHandleWrapper wrapper(MOJO_HANDLE_INVALID);
53 wrapper.AddCloseObserver(this);
64 TestHandleWrapper wrapper(pipe.handle0.release().value());
65 wrapper.AddCloseObserver(this);
67 wrapper.Close();
70 wrapper.Close();
81 TestHandleWrapper wrapper(pipe.handle0.release().value())
    [all...]
  /cts/tests/tests/view/src/android/view/inputmethod/cts/
InputConnectionWrapperTest.java 36 InputConnectionWrapper wrapper = new InputConnectionWrapper(null, true); local
38 wrapper.beginBatchEdit();
43 wrapper.setTarget(inputConnection);
45 wrapper.beginBatchEdit();
47 wrapper.clearMetaKeyStates(KeyEvent.META_ALT_ON);
49 wrapper.commitCompletion(new CompletionInfo(1, 1, "testText"));
51 wrapper.commitCorrection(new CorrectionInfo(0, "oldText", "newText"));
53 wrapper.commitText("Text", 1);
55 wrapper.deleteSurroundingText(10, 100);
57 wrapper.endBatchEdit()
    [all...]
  /external/jemalloc/include/jemalloc/internal/
tsd.h 216 a_name##_tsd_wrapper_t *wrapper; \
218 wrapper = (a_name##_tsd_wrapper_t *) TlsGetValue(a_name##_tsd); \
219 if (wrapper == NULL) \
222 wrapper->initialized) { \
223 a_type val = wrapper->val; \
225 wrapper->initialized = false; \
226 wrapper->val = tsd_static_data; \
228 if (wrapper->initialized) { \
233 malloc_tsd_dalloc(wrapper); \
254 a_name##_tsd_wrapper_t *wrapper = (a_name##_tsd_wrapper_t *)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
V8DOMWrapper.h 53 static v8::Handle<v8::Object> associateObjectWithWrapper(RawPtr<T> object, const WrapperTypeInfo* wrapperTypeInfo, v8::Handle<v8::Object> wrapper, v8::Isolate* isolate)
55 return associateObjectWithWrapper<V8T, T>(object.get(), wrapperTypeInfo, wrapper, isolate);
69 inline void V8DOMWrapper::setNativeInfo(v8::Handle<v8::Object> wrapper, const WrapperTypeInfo* wrapperTypeInfo, ScriptWrappableBase* internalPointer)
71 ASSERT(wrapper->InternalFieldCount() >= 2);
79 wrapper->SetAlignedPointerInInternalField(v8DOMWrapperObjectIndex, internalPointer);
80 wrapper->SetAlignedPointerInInternalField(v8DOMWrapperTypeIndex, const_cast<WrapperTypeInfo*>(wrapperTypeInfo));
83 inline void V8DOMWrapper::setNativeInfoForHiddenWrapper(v8::Handle<v8::Object> wrapper, const WrapperTypeInfo* wrapperTypeInfo, ScriptWrappableBase* internalPointer)
86 ASSERT(wrapper->InternalFieldCount() >= 2);
97 wrapper->SetAlignedPointerInInternalField(wrapper->InternalFieldCount() - 1, 0)
    [all...]
ScriptWrappable.cpp 53 // It's possible that no one except for the new wrapper owns this object at
55 // object gets associated with the wrapper.
60 v8::Handle<v8::Object> wrapper = V8DOMWrapper::createWrapper(creationContext, wrapperTypeInfo, toScriptWrappableBase(), isolate); local
61 if (UNLIKELY(wrapper.IsEmpty()))
62 return wrapper;
64 wrapperTypeInfo->installConditionallyEnabledProperties(wrapper, isolate);
65 return associateWithWrapper(wrapperTypeInfo, wrapper, isolate);
68 v8::Handle<v8::Object> ScriptWrappable::associateWithWrapper(const WrapperTypeInfo* wrapperTypeInfo, v8::Handle<v8::Object> wrapper, v8::Isolate* isolate)
70 return V8DOMWrapper::associateObjectWithWrapperNonTemplate(this, wrapperTypeInfo, wrapper, isolate);
V8DOMWrapper.cpp 44 static v8::Local<v8::Object> wrapInShadowTemplate(v8::Local<v8::Object> wrapper, ScriptWrappableBase* internalPointer, v8::Isolate* isolate)
66 shadow->SetPrototype(wrapper);
67 V8DOMWrapper::setNativeInfoForHiddenWrapper(wrapper, &V8HTMLDocument::wrapperTypeInfo, internalPointer);
76 v8::Local<v8::Object> wrapper = perContextData ? perContextData->createWrapperFromCache(type) : V8ObjectConstructor::newInstance(isolate, type->domTemplate(isolate)->GetFunction()); local
78 if (type == &V8HTMLDocument::wrapperTypeInfo && !wrapper.IsEmpty())
79 wrapper = wrapInShadowTemplate(wrapper, internalPointer, isolate);
81 return wrapper;
92 v8::Handle<v8::Object> wrapper = v8::Handle<v8::Object>::Cast(value);
93 ASSERT(wrapper->GetAlignedPointerFromInternalField(v8DOMWrapperObjectIndex))
    [all...]
WrapperTypeInfo.h 62 inline void setObjectGroup(ScriptWrappableBase* internalPointer, const v8::Persistent<v8::Object>& wrapper, v8::Isolate* isolate)
64 isolate->SetObjectGroupId(wrapper, v8::UniqueId(reinterpret_cast<intptr_t>(internalPointer)));
113 void configureWrapper(v8::PersistentBase<v8::Object>* wrapper) const
115 wrapper->SetWrapperClassId(wrapperClassId);
117 wrapper->MarkIndependent();
169 void visitDOMWrapper(ScriptWrappableBase* internalPointer, const v8::Persistent<v8::Object>& wrapper, v8::Isolate* isolate) const
172 setObjectGroup(internalPointer, wrapper, isolate);
174 visitDOMWrapperFunction(internalPointer, wrapper, isolate);
208 inline T* getInternalField(v8::Handle<v8::Object> wrapper)
210 ASSERT(offset < wrapper->InternalFieldCount())
    [all...]
  /external/chromium_org/media/audio/alsa/
alsa_util.h 19 snd_pcm_t* OpenCaptureDevice(media::AlsaWrapper* wrapper,
26 snd_pcm_t* OpenPlaybackDevice(media::AlsaWrapper* wrapper,
33 int CloseDevice(media::AlsaWrapper* wrapper, snd_pcm_t* handle);
35 snd_mixer_t* OpenMixer(media::AlsaWrapper* wrapper,
38 void CloseMixer(media::AlsaWrapper* wrapper,
42 snd_mixer_elem_t* LoadCaptureMixerElement(media::AlsaWrapper* wrapper,
alsa_util.cc 14 static snd_pcm_t* OpenDevice(media::AlsaWrapper* wrapper,
22 int error = wrapper->PcmOpen(&handle, device_name, type, SND_PCM_NONBLOCK);
25 << wrapper->StrError(error);
29 error = wrapper->PcmSetParams(handle, pcm_format,
34 << wrapper->StrError(error) << " - Format: " << pcm_format
36 if (alsa_util::CloseDevice(wrapper, handle) < 0) {
84 int CloseDevice(media::AlsaWrapper* wrapper, snd_pcm_t* handle) {
85 std::string device_name = wrapper->PcmName(handle);
86 int error = wrapper->PcmClose(handle);
89 << wrapper->StrError(error)
    [all...]
  /external/compiler-rt/test/msan/wrap_indirect_calls/
wrapper.cc 6 extern "C" void *wrapper(void *p) { function
  /external/chromium_org/sync/api/attachments/
attachment_id.cc 14 Wrapper* wrapper) {
15 *wrapper = new sync_pb::AttachmentIdProto();
19 Wrapper* wrapper) {
20 delete *wrapper;
24 AttachmentId::ImmutableAttachmentIdProtoTraits::Unwrap(const Wrapper& wrapper) {
25 return *wrapper;
30 Wrapper* wrapper)
    [all...]
attachment_id.h 50 typedef sync_pb::AttachmentIdProto* Wrapper;
51 static void InitializeWrapper(Wrapper* wrapper);
52 static void DestroyWrapper(Wrapper* wrapper);
53 static const sync_pb::AttachmentIdProto& Unwrap(const Wrapper& wrapper);
54 static sync_pb::AttachmentIdProto* UnwrapMutable(Wrapper* wrapper);
  /external/compiler-rt/lib/interception/
interception_linux.cc 22 uptr real, uptr wrapper) {
24 return real == wrapper;
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/custom/
V8MessageChannelCustom.cpp 49 v8::Local<v8::Object> wrapper = info.Holder(); local
51 // Create references from the MessageChannel wrapper to the two
53 // stay alive as long as the MessageChannel wrapper is around.
54 V8HiddenValue::setHiddenValue(info.GetIsolate(), wrapper, V8HiddenValue::port1(info.GetIsolate()), toV8(obj->port1(), info.Holder(), info.GetIsolate()));
55 V8HiddenValue::setHiddenValue(info.GetIsolate(), wrapper, V8HiddenValue::port2(info.GetIsolate()), toV8(obj->port2(), info.Holder(), info.GetIsolate()));
57 V8DOMWrapper::associateObjectWithWrapper<V8MessageChannel>(obj.release(), &wrapperTypeInfo, wrapper, info.GetIsolate());
58 info.GetReturnValue().Set(wrapper);
V8EventTargetCustom.cpp 47 v8::Handle<v8::Value> wrapper = DOMDataStore::getWrapperNonTemplate(impl, isolate);
48 if (!wrapper.IsEmpty())
49 return wrapper;
V8MutationObserverCustom.cpp 61 v8::Handle<v8::Object> wrapper = info.Holder(); local
63 OwnPtr<MutationCallback> callback = V8MutationCallback::create(v8::Handle<v8::Function>::Cast(arg), wrapper, ScriptState::current(info.GetIsolate()));
66 V8DOMWrapper::associateObjectWithWrapper<V8MutationObserver>(observer.release(), &wrapperTypeInfo, wrapper, info.GetIsolate());
67 info.GetReturnValue().Set(wrapper);
70 void V8MutationObserver::visitDOMWrapper(ScriptWrappableBase* internalPointer, const v8::Persistent<v8::Object>& wrapper, v8::Isolate* isolate)
76 isolate->SetReferenceFromGroup(id, wrapper);
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/impl/
UndeclaredThrowableTransformer.java 27 private Type wrapper; field in class:UndeclaredThrowableTransformer
29 public UndeclaredThrowableTransformer(Class wrapper) {
30 this.wrapper = Type.getType(wrapper);
32 Constructor[] cstructs = wrapper.getConstructors();
41 throw new IllegalArgumentException(wrapper + " does not have a single-arg constructor that takes a Throwable");
56 EmitUtils.wrap_undeclared_throwable(this, handler, exceptions, wrapper);
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
DebuggeeRegister.java 84 DebuggeeWrapper wrapper = (DebuggeeWrapper)iter.next(); local
85 if (wrapper != null) {
86 wrapper.stop();
  /external/chromium_org/ash/system/tray/
tray_event_filter.h 28 void AddWrapper(TrayBubbleWrapper* wrapper);
29 void RemoveWrapper(TrayBubbleWrapper* wrapper);
tray_event_filter.cc 29 void TrayEventFilter::AddWrapper(TrayBubbleWrapper* wrapper) {
31 wrappers_.insert(wrapper);
36 void TrayEventFilter::RemoveWrapper(TrayBubbleWrapper* wrapper) {
37 wrappers_.erase(wrapper);
71 const TrayBubbleWrapper* wrapper = *iter; local
72 const views::Widget* bubble_widget = wrapper->bubble_widget();
77 bounds.Inset(wrapper->bubble_view()->GetBorderInsets());
86 if (wrapper->tray()) {
89 bounds = wrapper->tray()->GetBoundsInScreen();
98 // the wrapper, which shrinks |wrappers_| unsafely
    [all...]
  /external/chromium_org/content/browser/resources/media/
media_internals.css 59 #list-wrapper {
67 #player-list-wrapper,
68 #audio-component-list-wrapper {
75 #player-list-wrapper ul,
76 #player-list-wrapper li,
77 #audio-component-list-wrapper ul,
78 #audio-component-list-wrapper li {
82 #list-wrapper button {
86 #property-wrapper,
87 #log-wrapper {
    [all...]
  /external/apache-harmony/support/src/test/java/tests/util/
CallVerificationStack.java 202 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop(); local
203 Boolean value = (Boolean) wrapper.getValue();
213 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop(); local
214 Character value = (Character) wrapper.getValue();
224 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop(); local
225 Double value = (Double) wrapper.getValue();
235 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop(); local
236 Float value = (Float) wrapper.getValue();
246 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop(); local
247 Integer value = (Integer) wrapper.getValue()
257 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop(); local
268 BaseTypeWrapper wrapper = (BaseTypeWrapper) this.pop(); local
    [all...]
  /external/chromium_org/gin/
wrappable.cc 46 v8::Handle<v8::Object> wrapper = templ->NewInstance(); local
47 // |wrapper| may be empty in some extreme cases, e.g., when
49 if (wrapper.IsEmpty()) {
53 return wrapper;
55 wrapper->SetAlignedPointerInInternalField(kWrapperInfoIndex, info);
56 wrapper->SetAlignedPointerInInternalField(kEncodedValueIndex, this);
57 wrapper_.Reset(isolate, wrapper);
59 return wrapper;

Completed in 713 milliseconds

1 2 3 4 5 6 7 8 91011>>