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

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/text/
CollationKey.java 35 * During the construction of a {@code CollationKey}, the entire source string
82 private final String source; field in class:CollationKey
84 protected CollationKey(String source) {
85 this.source = source;
100 * @return the source string of this collation key.
103 return source;
  /libcore/luni/src/main/java/java/util/
EventObject.java 34 protected transient Object source; field in class:EventObject
39 * @param source
42 public EventObject(Object source) {
43 if (source == null) {
46 this.source = source;
53 return source;
60 return getClass().getName() + "[source=" + source + ']';
  /frameworks/base/core/java/android/text/
SpannedString.java 2 * Copyright (C) 2006 The Android Open Source Project
29 public SpannedString(CharSequence source) {
30 super(source, 0, source.length());
33 private SpannedString(CharSequence source, int start, int end) {
34 super(source, start, end);
41 public static SpannedString valueOf(CharSequence source) {
42 if (source instanceof SpannedString) {
43 return (SpannedString) source;
45 return new SpannedString(source);
    [all...]
SpannableString.java 2 * Copyright (C) 2006 The Android Open Source Project
29 public SpannableString(CharSequence source) {
30 super(source, 0, source.length());
33 private SpannableString(CharSequence source, int start, int end) {
34 super(source, start, end);
37 public static SpannableString valueOf(CharSequence source) {
38 if (source instanceof SpannableString) {
39 return (SpannableString) source;
41 return new SpannableString(source);
    [all...]
  /external/webkit/Source/WebCore/dom/
TransformSourceQt.cpp 25 TransformSource::TransformSource(const PlatformTransformSource& source)
26 : m_source(source)
  /external/bluetooth/glib/gio/xdgmime/
xdgmimeint.c 61 _xdg_utf8_to_ucs4(const char *source)
64 if( ! ( *source & 0x80 ) )
66 ucs32 = *source;
72 if ( ! (*source & 0x40) )
74 ucs32 = *source;
78 if ( ! (*source & 0x20) )
80 result = *source++ & 0x1F;
83 else if ( ! (*source & 0x10) )
85 result = *source++ & 0x0F;
88 else if ( ! (*source & 0x08)
    [all...]
  /cts/tools/signature-tools/test/signature/converter/util/
CompilationUnit.java 2 * Copyright (C) 2009 The Android Open Source Project
23 private String source; field in class:CompilationUnit
25 public CompilationUnit(String name, String source) {
27 this.source = source;
35 return source;
  /external/guava/guava/src/com/google/common/eventbus/
DeadEvent.java 34 private final Object source; field in class:DeadEvent
40 * @param source object broadcasting the DeadEvent (generally the
44 public DeadEvent(Object source, Object event) {
45 this.source = source;
53 * @return the source of this event.
56 return source;
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
Envelope.java 5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
44 private Endpoint source; field in class:Envelope
50 * source. The 'reliable' flag further indicates on which mode of
53 public Envelope( Endpoint source, byte[] data, boolean reliable )
55 this.source = source;
62 return source;
77 return "Envelope[" + source + ", " + (reliable?"reliable":"unreliable") + ", " + data.length + "]";
EndpointEvent.java 5 * Redistribution and use in source and binary forms, with or without
9 * * Redistributions of source code must retain the above copyright
47 private Kernel source; field in class:EndpointEvent
51 public EndpointEvent( Kernel source, Endpoint p, Type type )
53 this.source = source;
58 public static EndpointEvent createAdd( Kernel source, Endpoint p )
60 return new EndpointEvent( source, p, Type.ADD );
63 public static EndpointEvent createRemove( Kernel source, Endpoint p )
65 return new EndpointEvent( source, p, Type.REMOVE )
    [all...]
  /external/chromium/chrome/browser/ui/tab_contents/
tab_contents_wrapper_delegate.cc 2 // Use of this source code is governed by a BSD-style license that can be
12 TabContentsWrapper* source,
17 TabContentsWrapper* source, int32 page_id) {
  /external/nist-sip/java/javax/sip/
TimeoutEvent.java 6 public TimeoutEvent(Object source, ServerTransaction serverTransaction,
8 super(source, serverTransaction);
12 public TimeoutEvent(Object source, ClientTransaction clientTransaction,
14 super(source, clientTransaction);
  /external/webkit/Source/WebCore/platform/text/
TextCodecASCIIFastPath.h 5 * Redistribution and use in source and binary forms, with or without
8 * 1. Redistributions of source code must retain the above copyright
52 static void copy(UChar* destination, const uint8_t* source)
54 destination[0] = source[0];
55 destination[1] = source[1];
56 destination[2] = source[2];
57 destination[3] = source[3];
61 static void copy(UChar* destination, const uint8_t* source)
63 destination[0] = source[0];
64 destination[1] = source[1]
    [all...]
  /external/zlib/contrib/puff/
puff.h 17 2. Altered source versions must be plainly marked as such, and must not be
19 3. This notice may not be removed or altered from any source distribution.
34 const unsigned char *source, /* pointer to source data pointer */
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/util/
Tokenizer.java 19 * @param source must be non-null
23 public static String[] parseTokens(String source, char delimiter)
27 for (int i = 0; i < source.length(); i++)
29 if (source.charAt(i) == delimiter)
38 if (nextfield >= source.length())
44 int idx = source.indexOf(delimiter, nextfield);
46 idx = source.length();
47 list[i] = source.substring(nextfield, idx);
  /sdk/sdkmanager/libs/sdkuilib/src/com/android/sdkuilib/internal/repository/sdkman2/
PkgCategorySource.java 2 * Copyright (C) 2011 The Android Open Source Project
28 * items, or more exactly a lack of remote source.
31 new SdkRepoSource("http://no.source", "Local Packages");
36 * This uses {@link SdkSource#toString()} to get the source's description.
37 * Note that if the name of the source isn't known, the description will use its URL.
39 public PkgCategorySource(SdkSource source, UpdaterData updaterData) {
41 source, // the source is the key and it can be null
42 source == UNKNOWN_SOURCE ? "Local Packages" : source.toString()
    [all...]
  /external/bluetooth/bluez/audio/
source.c 47 #include "source.h"
60 struct source { struct
96 error("Invalid source state %d", state);
103 struct source *source = dev->source; local
105 source_state_t old_state = source->state;
108 source->state = new_state;
128 struct source *source = dev->source local
167 struct source *source = dev->source; local
218 struct source *source = user_data; local
246 struct source *source = user_data; local
288 struct source *source = user_data; local
318 struct source *source = user_data; local
383 struct source *source = dev->source; local
417 struct source *source = device->source; local
452 struct source *source = device->source; local
495 struct source *source = dev->source; local
535 struct source *source; local
559 struct source *source = dev->source; local
569 struct source *source = dev->source; local
577 struct source *source = dev->source; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/
FontPlatformData.cpp 34 FontPlatformData::FontPlatformData(const FontPlatformData& source)
35 : m_syntheticBold(source.m_syntheticBold)
36 , m_syntheticOblique(source.m_syntheticOblique)
37 , m_orientation(source.m_orientation)
38 , m_textOrientation(source.m_textOrientation)
39 , m_size(source.m_size)
40 , m_widthVariant(source.m_widthVariant)
41 , m_isColorBitmapFont(source.m_isColorBitmapFont)
43 platformDataInit(source);
  /cts/tests/tests/widget/src/android/widget/cts/
TextView_SaveStateTest.java 2 * Copyright (C) 2008 The Android Open Source Project
31 Parcel source = creatTestParcel(0, 0, true, "This is content"); local
32 TextView.SavedState state = TextView.SavedState.CREATOR.createFromParcel(source);
36 source = creatTestParcel(5, 10, false, "This is another content");
37 state = TextView.SavedState.CREATOR.createFromParcel(source);
43 Parcel source = creatTestParcel(0, 0, true, "This is content"); local
44 TextView.SavedState state = TextView.SavedState.CREATOR.createFromParcel(source);
58 Parcel source = Parcel.obtain(); local
60 source.writeParcelable(AbsSavedState.EMPTY_STATE, 0);
61 source.writeInt(start)
66 TextUtils.writeToParcel(textView.getText(), source, 0); local
    [all...]
  /external/jpeg/
rdrle.c 83 rle_source_ptr source = (rle_source_ptr) sinfo; local
90 source->header = *rle_hdr_init(NULL);
91 source->header.rle_file = source->pub.input_file;
92 switch (rle_get_setup(&(source->header))) {
115 width = source->header.xmax - source->header.xmin + 1;
116 height = source->header.ymax - source->header.ymin + 1;
117 source->header.xmin = 0; /* realign horizontally *
189 rle_source_ptr source = (rle_source_ptr) sinfo; local
207 rle_source_ptr source = (rle_source_ptr) sinfo; local
243 rle_source_ptr source = (rle_source_ptr) sinfo; local
373 rle_source_ptr source; local
    [all...]
  /external/qemu/distrib/jpeg-6b/
rdrle.c 83 rle_source_ptr source = (rle_source_ptr) sinfo; local
90 source->header = *rle_hdr_init(NULL);
91 source->header.rle_file = source->pub.input_file;
92 switch (rle_get_setup(&(source->header))) {
115 width = source->header.xmax - source->header.xmin + 1;
116 height = source->header.ymax - source->header.ymin + 1;
117 source->header.xmin = 0; /* realign horizontally *
189 rle_source_ptr source = (rle_source_ptr) sinfo; local
207 rle_source_ptr source = (rle_source_ptr) sinfo; local
243 rle_source_ptr source = (rle_source_ptr) sinfo; local
373 rle_source_ptr source; local
    [all...]
  /cts/tests/src/android/app/cts/
IBinderParcelable.java 2 * Copyright (C) 2009 The Android Open Source Project
25 public IBinderParcelable(IBinder source) {
26 binder = source;
40 public IBinderParcelable createFromParcel(Parcel source) {
41 return new IBinderParcelable(source);
49 private IBinderParcelable(Parcel source) {
50 binder = source.readStrongBinder();
  /external/guava/guava-testlib/src/com/google/common/collect/testing/features/
ConflictingRequirementsException.java 31 private Object source; field in class:ConflictingRequirementsException
34 String message, Set<Feature<?>> conflicts, Object source) {
37 this.source = source;
45 return source;
49 return super.getMessage() + " (source: " + source + ")";
  /external/apache-harmony/beans/src/test/support/java/org/apache/harmony/beans/tests/support/mock/
MockPropertyChangeEvent.java 33 * @param source
35 public MockPropertyChangeEvent(Object source) {
36 super(source);
  /external/chromium/chrome/browser/cocoa/
file_metadata.h 2 // Use of this source code is governed by a BSD-style license that can be
15 // |source| should be the source URL for the download, and |referrer| should be
17 void AddOriginMetadataToFile(const FilePath& file, const GURL& source,
22 // |source| should be the source URL for the download, and |referrer| should be
24 void AddQuarantineMetadataToFile(const FilePath& file, const GURL& source,

Completed in 914 milliseconds

1 2 3 4 5 6 7 8 91011>>