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

1 2 3 4 5 6 7 8 91011>>

  /build/tools/apriori/
tweak.h 4 #include <source.h>
13 int tweak_bss_if_necessary(source_t *source);
apriori.c 20 #include <source.h>
59 static void print_shdr(source_t *source, Elf_Scn *scn)
72 static void print_shdr_idx(source_t *source, Elf *elf, int idx)
74 print_shdr(source, elf_getscn(elf, idx));
77 static void print_shdrs(source_t *source) {
80 while ((scn = elf_nextscn (source->elf, scn)) != NULL)
81 print_shdr(source, scn);
84 while ((scn = elf_nextscn (source->oldelf, scn)) != NULL)
85 print_shdr(source, scn);
91 for (i = 0; i < source->shnum; i++)
601 source_t *source = (source_t *)CALLOC(1, sizeof(source_t)); local
2091 source_t *source = local
2520 source_t *source; \/* for general usage *\/ local
    [all...]
  /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 * The event source.
36 protected transient Object source; field in class:EventObject
41 * @param source
44 public EventObject(Object source) {
45 if (source != null) {
46 this.source = source;
53 * Returns the event source.
58 return source;
68 return getClass().getName() + "[source=" + source + ']'
    [all...]
  /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...]
  /dalvik/vm/compiler/template/armv5te/
platform.S 13 .macro LDR_PC_LR source
15 ldr pc, \source
  /dalvik/vm/compiler/template/armv5te-vfp/
platform.S 13 .macro LDR_PC_LR source
15 ldr pc, \source
  /external/webkit/WebCore/dom/
TransformSourceQt.cpp 25 TransformSource::TransformSource(const PlatformTransformSource& source)
26 : m_source(source)
  /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.
30 unsigned char *source, /* pointer to source data pointer */
  /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...]
  /external/chromium/base/third_party/xdg_mime/
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;
  /dalvik/vm/mterp/armv5te/
platform.S 13 .macro LDR_PC source
14 ldr pc, \source
23 .macro LDR_PC_LR source
25 ldr pc, \source
  /external/libvpx/vp8/encoder/
psnr.c 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
8 * be found in the AUTHORS file in the root of the source tree.
33 double vp8_calc_psnr(YV12_BUFFER_CONFIG *source, YV12_BUFFER_CONFIG *dest, double *YPsnr, double *UPsnr, double *VPsnr, double *sq_error)
40 unsigned char *src = source->y_buffer;
47 for (i = 0; i < source->y_height; i++)
50 for (j = 0; j < source->y_width; j++)
56 src += source->y_stride;
61 *YPsnr = vp8_mse2psnr(source->y_height * source->y_width, 255.0, Total)
    [all...]
  /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/bluetooth/bluez/audio/
source.c 46 #include "source.h"
59 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
170 struct source *source = device->source; local
184 struct source *source = dev->source; local
246 struct source *source = user_data; local
274 struct source *source = user_data; local
452 struct source *source = user_data; local
538 struct source *source = dev->source; local
577 struct source *source = device->source; local
616 struct source *source = device->source; local
659 struct source *source = dev->source; local
702 struct source *source; local
726 struct source *source = dev->source; local
736 struct source *source = dev->source; local
744 struct source *source = dev->source; local
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
TextView_SaveStateTest.java 2 * Copyright (C) 2008 The Android Open Source Project
40 Parcel source = creatTestParcel(0, 0, true, "This is content"); local
41 TextView.SavedState state = TextView.SavedState.CREATOR.createFromParcel(source);
45 source = creatTestParcel(5, 10, false, "This is another content");
46 state = TextView.SavedState.CREATOR.createFromParcel(source);
57 Parcel source = creatTestParcel(0, 0, true, "This is content"); local
58 TextView.SavedState state = TextView.SavedState.CREATOR.createFromParcel(source);
72 Parcel source = Parcel.obtain(); local
74 source.writeParcelable(AbsSavedState.EMPTY_STATE, 0);
75 source.writeInt(start)
80 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/chromium/third_party/icu/
icuuc.scons 34 env.Dir('$SRC_DIR/third_party/icu/source/common'),
35 env.Dir('$SRC_DIR/third_party/icu/source/i18n')
131 env.Dir('$SRC_DIR/third_party/icu/source/common'),
132 env.Dir('$SRC_DIR/third_party/icu/source/i18n')
259 'source/common/bmpset.cpp',
260 'source/common/brkeng.cpp',
261 'source/common/brkiter.cpp',
262 'source/common/bytestream.cpp',
263 'source/common/caniter.cpp',
264 'source/common/chariter.cpp'
    [all...]
icui18n.scons 32 env.Dir('$SRC_DIR/third_party/icu/source/common'),
33 env.Dir('$SRC_DIR/third_party/icu/source/i18n')
127 env.Dir('$SRC_DIR/third_party/icu/source/common'),
128 env.Dir('$SRC_DIR/third_party/icu/source/i18n')
255 'source/i18n/anytrans.cpp',
256 'source/i18n/astro.cpp',
257 'source/i18n/basictz.cpp',
258 'source/i18n/bms.cpp',
259 'source/i18n/bmsearch.cpp',
260 'source/i18n/bocsu.c'
    [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();
  /build/tools/lsd/
lsd.c 29 source_t *source; member in struct:next_export_t
129 source_t *source = (source_t *)CALLOC(1, sizeof(source_t)); local
132 source->name = full_path;
133 source->elf_fd = -1;
136 source->elf_fd = open(full_path, O_RDONLY);
137 FAILIF(source->elf_fd < 0, "open(%s): %s (%d)\n",
142 source->elf = elf_begin(source->elf_fd, ELF_C_READ, NULL);
143 FAILIF_LIBELF(source->elf == NULL, elf_begin);
146 if (elf_kind(source->elf) != ELF_K_ELF)
652 source_t *source = find_source(libname, lib_lookup_dirs, num_lib_lookup_dirs); local
714 source_t *source; \/* for general usage *\/ local
    [all...]
  /dalvik/vm/mterp/armv4t/
platform.S 13 .macro LDR_PC source
14 ldr ip, \source
24 .macro LDR_PC_LR source
25 ldr ip, \source
  /dalvik/vm/mterp/armv7-a/
platform.S 13 .macro LDR_PC source
14 ldr pc, \source
23 .macro LDR_PC_LR source
25 ldr pc, \source

Completed in 444 milliseconds

1 2 3 4 5 6 7 8 91011>>