HomeSort by relevance Sort by last modified time
    Searched refs:source (Results 226 - 250 of 4581) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /development/ndk/platforms/android-3/include/netinet/
udp.h 2 * Copyright (C) 2008 The Android Open Source Project
5 * Redistribution and use in source and binary forms, with or without
8 * * Redistributions of source code must retain the above copyright
38 u_int16_t uh_sport; /* source port */
47 __u16 source; member in struct:udphdr
  /external/bluetooth/glib/gobject/
gsourceclosure.h 30 void g_source_set_closure (GSource *source,
  /external/nist-sip/java/gov/nist/javax/sip/
LogRecordFactory.java 19 * @param source -- host:port of the source of the message.
33 public LogRecord createLogRecord(String message, String source,
  /external/skia/src/animator/
SkMatrixParts.cpp 3 ** Copyright 2006, The Android Open Source Project
170 SK_MEMBER(source, Rect)
178 source(NULL), destination(NULL) {
185 if (source == NULL || destination == NULL)
188 temp.setRectToRect(source->fRect, destination->fRect,
199 if (source) {
200 SkDebugf("%*s<source>\n", SkDisplayList::fIndent, "");
202 source->dump(maker);
204 SkDebugf("%*s</source>\n", SkDisplayList::fIndent, "");
219 if (source == NULL
    [all...]
  /external/v8/src/
natives.h 2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
35 Vector<const char> source,
  /external/webkit/JavaScriptCore/parser/
SourceProvider.h 4 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
64 static PassRefPtr<UStringSourceProvider> create(const UString& source, const UString& url)
66 return adoptRef(new UStringSourceProvider(source, url));
74 UStringSourceProvider(const UString& source, const UString& url)
76 , m_source(source)
  /external/webkit/JavaScriptCore/runtime/
Completion.cpp 36 Completion checkSyntax(ExecState* exec, const SourceCode& source)
41 RefPtr<ProgramExecutable> program = ProgramExecutable::create(exec, source);
49 Completion evaluate(ExecState* exec, ScopeChain& scopeChain, const SourceCode& source, JSValue thisValue)
54 RefPtr<ProgramExecutable> program = ProgramExecutable::create(exec, source);
  /external/webkit/WebCore/bindings/js/
ScriptSourceProvider.h 5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
43 virtual const String& source() const = 0;
  /external/webkit/WebCore/dom/
TransformSource.h 38 TransformSource(const PlatformTransformSource& source);
  /external/webkit/WebCore/platform/image-decoders/haiku/
ImageDecoderHaiku.cpp 5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
39 const uint8* source = reinterpret_cast<const uint8*>(m_bytes.data()); local
46 memcpy(dst, source, bytesPerRow);
48 const uint8* sourceHandle = source;
67 source += bytesPerRow;
  /external/webkit/WebCore/platform/text/mac/
ShapeArabic.h 4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
37 int32_t shapeArabic(const UChar *source, int32_t sourceLength, UChar *dest, int32_t destCapacity, uint32_t options, UErrorCode *pErrorCode);
  /external/webkit/WebCore/xml/
XSLTProcessor.h 49 bool transformToString(Node* source, String& resultMIMEType, String& resultString, String& resultEncoding);
50 PassRefPtr<Document> createDocumentFromSource(const String& source, const String& sourceEncoding, const String& sourceMIMEType, Node* sourceNode, Frame* frame);
54 PassRefPtr<DocumentFragment> transformToFragment(Node* source, Document* ouputDoc);
55 PassRefPtr<Document> transformToDocument(Node* source);
XSLTProcessor.idl 4 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
32 // http://lxr.mozilla.org/seamonkey/source/content/xsl/public/nsIXSLTException.idl
41 [Custom] DocumentFragment transformToFragment(in Node source, in Document docVal);
42 [Custom] Document transformToDocument(in Node source);
  /external/webkit/WebKit/chromium/src/
WebImageCG.cpp 4 * Redistribution and use in source and binary forms, with or without
8 * * Redistributions of source code must retain the above copyright
56 ImageSource source; local
57 source.setData(PassRefPtr<SharedBuffer>(data).get(), true);
58 if (!source.isSizeAvailable())
61 RetainPtr<CGImageRef> frame0(AdoptCF, source.createFrameAtIndex(0));
  /external/webkit/WebKit/mac/Misc/
WebNSPasteboardExtras.h 4 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
75 source:(WebHTMLView *)source; variable
81 source:(WebHTMLView *)source; variable
  /frameworks/base/core/java/android/content/pm/
ResolveInfo.java 2 * Copyright (C) 2007 The Android Open Source Project
268 public ResolveInfo createFromParcel(Parcel source) {
269 return new ResolveInfo(source);
276 private ResolveInfo(Parcel source) {
277 switch (source.readInt()) {
279 activityInfo = ActivityInfo.CREATOR.createFromParcel(source);
283 serviceInfo = ServiceInfo.CREATOR.createFromParcel(source);
291 if (source.readInt() != 0) {
292 filter = IntentFilter.CREATOR.createFromParcel(source);
294 priority = source.readInt()
    [all...]
  /frameworks/base/core/java/android/os/
Parcelable.java 2 * Copyright (C) 2006 The Android Open Source Project
102 * @param source The Parcel to read the object's data from.
105 public T createFromParcel(Parcel source);
  /frameworks/base/core/java/android/text/method/
TransformationMethod.java 2 * Copyright (C) 2006 The Android Open Source Project
31 * Returns a CharSequence that is a transformation of the source text --
34 * the source text, and that if the source text is Editable, the returned
37 public CharSequence getTransformation(CharSequence source, View view);
  /frameworks/base/core/java/com/android/internal/os/
PkgUsageStats.java 2 * Copyright (C) 2009 The Android Open Source Project
55 public PkgUsageStats(Parcel source) {
56 packageName = source.readString();
57 launchCount = source.readInt();
58 usageTime = source.readLong();
  /libcore/luni/src/main/java/com/ibm/icu4jni/text/
CollationElementIterator.java 97 * @param source text containing the collation elements.
100 public void setText(String source) {
101 NativeCollation.setText(m_collelemiterator_, source);
105 public void setText(CharacterIterator source) {
106 NativeCollation.setText(m_collelemiterator_, source.toString());
111 * Get the offset of the current source character.
114 * @return offset of the current source character.
122 * Set the offset of the current source character.
  /libcore/luni/src/main/java/javax/net/ssl/
SSLSessionBindingEvent.java 62 return (SSLSession) this.source;
  /libcore/luni/src/main/java/org/apache/harmony/archive/util/
Util.java 26 * Returns whether the given source string ends with the suffix, ignoring
29 * @param source
33 * @return {@code true} if the source does end with the given suffix, or
36 public static boolean asciiEndsWithIgnoreCase(String source, String suffix) {
38 if (length > source.length()) {
41 int offset = source.length() - length;
43 char c1 = source.charAt(i + offset);
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/netinet/
udp.h 2 * Copyright (C) 2008 The Android Open Source Project
5 * Redistribution and use in source and binary forms, with or without
8 * * Redistributions of source code must retain the above copyright
38 u_int16_t uh_sport; /* source port */
47 __u16 source; member in struct:udphdr
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/netinet/
udp.h 2 * Copyright (C) 2008 The Android Open Source Project
5 * Redistribution and use in source and binary forms, with or without
8 * * Redistributions of source code must retain the above copyright
38 u_int16_t uh_sport; /* source port */
47 __u16 source; member in struct:udphdr
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/netinet/
udp.h 2 * Copyright (C) 2008 The Android Open Source Project
5 * Redistribution and use in source and binary forms, with or without
8 * * Redistributions of source code must retain the above copyright
38 u_int16_t uh_sport; /* source port */
47 __u16 source; member in struct:udphdr

Completed in 1993 milliseconds

1 2 3 4 5 6 7 8 91011>>