/external/netcat/data/ |
dns-any.d | 5 # you should get at least *one* record back out
|
/external/proguard/src/proguard/ |
UpToDateChecker.java | 68 ClassPathEntry classPathEntry = programJars.get(index); 100 ClassPathEntry classPathEntry = libraryJars.get(index);
|
/external/protobuf/src/google/protobuf/compiler/cpp/ |
cpp_generator.cc | 104 io::Printer printer(output.get(), '$'); 112 io::Printer printer(output.get(), '$');
|
/external/skia/src/ports/ |
SkXMLParser_tinyxml.cpp | 72 char* buf = (char*)buffer.get(); 83 char* buf = (char*)buffer.get();
|
/external/webkit/JavaScriptCore/runtime/ |
DateInstanceCache.h | 72 return entry.value.get(); 76 return entry.value.get();
|
ErrorPrototype.cpp | 52 JSValue name = thisObj->get(exec, exec->propertyNames().name); 53 JSValue message = thisObj->get(exec, exec->propertyNames().message);
|
/external/webkit/JavaScriptCore/wtf/ |
OwnArrayPtr.h | 35 T* get() const { return m_ptr; } function in class:WTF::OwnArrayPtr 68 return p.get();
|
PtrAndFlags.h | 42 T* get() const { return reinterpret_cast<T*>(m_ptrAndFlags & ~3); } 52 bool operator!() const { return !get(); }
|
/external/webkit/WebCore/bindings/js/ |
JSHTMLFormElementCustom.cpp | 58 return toJS(exec, namedItems[0].get()); 61 return toJS(exec, jsForm->globalObject(), StaticNodeList::adopt(namedItems).get());
|
JSInspectorFrontendHostCustom.cpp | 64 JSValue label = item->get(execState, Identifier(execState, "label")); 65 JSValue id = item->get(execState, Identifier(execState, "id"));
|
JSWebGLArrayHelper.h | 49 int length = array->get(exec, JSC::Identifier(exec, "length")).toInt32(exec); 54 JSC::JSValue v = array->get(exec, i);
|
JSWebGLByteArrayConstructor.cpp | 55 RefPtr<WebGLByteArray> array = static_cast<WebGLByteArray*>(construct<WebGLByteArray, signed char>(exec, args).get()); 56 return asObject(toJS(exec, jsConstructor->globalObject(), array.get()));
|
JSWebGLFloatArrayConstructor.cpp | 55 RefPtr<WebGLFloatArray> array = static_cast<WebGLFloatArray*>(construct<WebGLFloatArray, float>(exec, args).get()); 56 return asObject(toJS(exec, jsConstructor->globalObject(), array.get()));
|
JSWebGLIntArrayConstructor.cpp | 55 RefPtr<WebGLIntArray> array = static_cast<WebGLIntArray*>(construct<WebGLIntArray, int>(exec, args).get()); 56 return asObject(toJS(exec, jsConstructor->globalObject(), array.get()));
|
JSWebGLShortArrayConstructor.cpp | 56 RefPtr<WebGLShortArray> array = static_cast<WebGLShortArray*>(construct<WebGLShortArray, short>(exec, args).get()); 57 return asObject(toJS(exec, jsConstructor->globalObject(), array.get()));
|
JSWebGLUnsignedByteArrayConstructor.cpp | 55 RefPtr<WebGLUnsignedByteArray> array = static_cast<WebGLUnsignedByteArray*>(construct<WebGLUnsignedByteArray, unsigned char>(exec, args).get()); 56 return asObject(toJS(exec, jsConstructor->globalObject(), array.get()));
|
JSWebGLUnsignedIntArrayConstructor.cpp | 55 RefPtr<WebGLUnsignedIntArray> array = static_cast<WebGLUnsignedIntArray*>(construct<WebGLUnsignedIntArray, unsigned int>(exec, args).get()); 56 return asObject(toJS(exec, jsConstructor->globalObject(), array.get()));
|
JSWebGLUnsignedShortArrayConstructor.cpp | 55 RefPtr<WebGLUnsignedShortArray> array = static_cast<WebGLUnsignedShortArray*>(construct<WebGLUnsignedShortArray, unsigned short>(exec, args).get()); 56 return asObject(toJS(exec, jsConstructor->globalObject(), array.get()));
|
/external/webkit/WebCore/bindings/v8/custom/ |
V8SharedWorkerCustom.cpp | 69 // Get the script execution context. 83 V8DOMWrapper::setDOMWrapper(wrapperObject, V8ClassIndex::SHAREDWORKER, obj.get()); 86 V8DOMWrapper::setJSWrapperForActiveDOMObject(obj.get(), v8::Persistent<v8::Object>::New(wrapperObject));
|
/external/webkit/WebCore/css/ |
CSSImportRule.h | 46 MediaList* media() const { return m_lstMedia.get(); } 47 CSSStyleSheet* styleSheet() const { return m_styleSheet.get(); }
|
/external/webkit/WebCore/dom/ |
Clipboard.h | 61 CachedImage* dragImage() const { return m_dragImage.get(); } 63 Node* dragImageElement() const { return m_dragImageElement.get(); }
|
MessagePortChannel.h | 85 SerializedScriptValue* message() { return m_message.get(); } 105 PlatformMessagePortChannel* channel() const { return m_channel.get(); }
|
NamedAttrMap.cpp | 184 return m_attributes[i].get(); 190 return m_attributes[i].get(); 237 m_element->attributeChanged(m_attributes[i].get(), true); 253 m_element->attributeChanged(attribute.get()); 256 m_element->dispatchAttrAdditionEvent(attribute.get()); 277 RefPtr<Attribute> attr = m_attributes[index].get(); 288 m_element->attributeChanged(attr.get()); 292 m_element->dispatchAttrRemovalEvent(attr.get());
|
/external/webkit/WebCore/editing/ |
InsertTextCommand.cpp | 63 insertNodeAt(textNode.get(), pos); 64 return Position(textNode.get(), 0); 69 insertNodeAtTabSpanPosition(textNode.get(), pos); 70 return Position(textNode.get(), 0); 139 // we get a chance to insert into it. We check for a placeholder now, though, because doing so requires 204 typingStyle->setProperty(CSSPropertyUnicodeBidi, static_cast<CSSPrimitiveValue*>(unicodeBidi.get())->getIdent()); 207 typingStyle->setProperty(CSSPropertyDirection, static_cast<CSSPrimitiveValue*>(direction.get())->getIdent()); 236 insertNodeAt(spanNode.get(), insertPos); 240 insertNodeAfter(spanNode.get(), textNode);
|
/external/webkit/WebCore/html/ |
HTMLOptionsCollection.cpp | 31 : HTMLCollection(select.get(), SelectOptions, select->collectionInfo()) 47 HTMLOptionElement* newOption = element.get();
|