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

1 23 4 5 6 7 8 91011>>

  /external/kernel-headers/original/linux/netfilter_ipv4/
ipt_addrtype.h 5 u_int16_t source; /* source-type mask */ member in struct:ipt_addrtype_info
  /external/webkit/WebCore/inspector/front-end/
Script.js 4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
26 WebInspector.Script = function(sourceID, sourceURL, source, startingLine, errorLine, errorMessage)
30 this.source = source;
42 var match = pattern.exec(source);
  /frameworks/base/media/libstagefright/
MediaExtractor.cpp 2 * Copyright (C) 2009 The Android Open Source Project
49 const sp<DataSource> &source, const char *mime) {
55 if (!source->sniff(&tmp, &confidence, &meta)) {
68 return new MPEG4Extractor(source);
70 return new MP3Extractor(source, meta);
73 return new AMRExtractor(source);
75 return new WAVExtractor(source);
77 return new OggExtractor(source);
79 return new MatroskaExtractor(source);
81 return new MPEG2TSExtractor(source);
    [all...]
  /frameworks/ex/common/java/com/android/common/
Rfc822InputFilter.java 2 * Copyright (C) 2008 The Android Open Source Project
33 public CharSequence filter(CharSequence source, int start, int end, Spanned dest,
37 if (end-start != 1 || source.charAt(start) != ' ') {
59 if (source instanceof Spanned) {
61 sb.append(source);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
CursorBackedSourceResult.java 2 * Copyright (C) 2010 The Android Open Source Project
23 private final Source mSource;
25 public CursorBackedSourceResult(Source source, String userQuery) {
26 this(source, userQuery, null);
29 public CursorBackedSourceResult(Source source, String userQuery, Cursor cursor) {
31 mSource = source;
34 public Source getSource() {
39 public Source getSuggestionSource()
    [all...]
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/netfilter_ipv4/
ipt_addrtype.h 16 u_int16_t source; member in struct:ipt_addrtype_info
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/netfilter_ipv4/
ipt_addrtype.h 16 u_int16_t source; member in struct:ipt_addrtype_info
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/netfilter_ipv4/
ipt_addrtype.h 16 u_int16_t source; member in struct:ipt_addrtype_info
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/netfilter_ipv4/
ipt_addrtype.h 16 u_int16_t source; member in struct:ipt_addrtype_info
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/netfilter_ipv4/
ipt_addrtype.h 16 u_int16_t source; member in struct:ipt_addrtype_info
  /prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/netfilter_ipv4/
ipt_addrtype.h 16 u_int16_t source; member in struct:ipt_addrtype_info
  /external/quake/quake/src/WinQuake/
draw.cpp 138 byte *source; local
157 source = draw_chars + (row<<10) + (col<<3);
162 source -= 128*y;
175 if (source[0])
176 dest[0] = source[0];
177 if (source[1])
178 dest[1] = source[1];
179 if (source[2])
180 dest[2] = source[2];
181 if (source[3]
253 byte *source; local
291 byte *dest, *source; local
342 byte *dest, *source, tbyte; local
429 byte *dest, *source, tbyte; local
512 byte *source; local
    [all...]
  /external/webkit/JavaScriptCore/wtf/unicode/
UTF8.cpp 4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
128 const UChar* source = *sourceStart; local
130 while (source < sourceEnd) {
135 const UChar* oldSource = source; // In case we have to back up because of target overflow.
136 ch = static_cast<unsigned short>(*source++);
139 // If the 16 bits following the high surrogate are in the source buffer...
140 if (source < sourceEnd) {
141 UChar32 ch2 = static_cast<unsigned short>(*source);
145 ++source;
239 const char* source = *sourceStart; local
    [all...]
  /external/libvpx/vpx_scale/include/generic/
vpxscale_nofp.h 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.
18 void vp8cx_horizontal_line_1_2_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
19 void vp8cx_horizontal_line_3_5_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
20 void vp8cx_horizontal_line_2_3_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
21 void vp8cx_horizontal_line_4_5_scale_c(const unsigned char *source, unsigned int source_width, unsigned char *dest, unsigned int dest_width);
25 void vp8cx_vertical_band_5_4_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width);
26 void vp8cx_vertical_band_5_3_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width);
27 void vp8cx_vertical_band_2_1_scale_c(unsigned char *source, unsigned int src_pitch, unsigned char *dest, unsigned int dest_pitch, unsigned int dest_width)
    [all...]
  /frameworks/base/core/java/android/content/pm/
InstrumentationInfo.java 2 * Copyright (C) 2007 The Android Open Source Project
106 public InstrumentationInfo createFromParcel(Parcel source) {
107 return new InstrumentationInfo(source);
114 private InstrumentationInfo(Parcel source) {
115 super(source);
116 targetPackage = source.readString();
117 sourceDir = source.readString();
118 publicSourceDir = source.readString();
119 dataDir = source.readString();
120 nativeLibraryDir = source.readString()
    [all...]
ConfigurationInfo.java 2 * Copyright (C) 2008 The Android Open Source Project
118 public ConfigurationInfo createFromParcel(Parcel source) {
119 return new ConfigurationInfo(source);
126 private ConfigurationInfo(Parcel source) {
127 reqTouchScreen = source.readInt();
128 reqKeyboardType = source.readInt();
129 reqNavigation = source.readInt();
130 reqInputFeatures = source.readInt();
131 reqGlEsVersion = source.readInt();
PermissionInfo.java 2 * Copyright (C) 2008 The Android Open Source Project
141 public PermissionInfo createFromParcel(Parcel source) {
142 return new PermissionInfo(source);
149 private PermissionInfo(Parcel source) {
150 super(source);
151 group = source.readString();
152 descriptionRes = source.readInt();
153 protectionLevel = source.readInt();
154 nonLocalizedDescription = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
  /libcore/luni/src/main/java/java/text/
RuleBasedCollator.java 308 * {@code CharacterIterator}. The source iterator's integrity will be
311 * @param source
312 * the source character iterator.
313 * @return a {@code CollationElementIterator} for {@code source}.
315 public CollationElementIterator getCollationElementIterator(CharacterIterator source) {
316 if (source == null) {
321 .getCollationElementIterator(source));
327 * @param source
328 * the source string.
329 * @return the {@code CollationElementIterator} for {@code source}
    [all...]
  /external/bluetooth/glib/glib/
gmain.c 144 /* this pipe is used to wake up the main loop when a source is added.
181 GSource source; member in struct:_GTimeoutSource
189 GSource source; member in struct:_GChildWatchSource
217 #define SOURCE_DESTROYED(source) (((source)->flags & G_HOOK_FLAG_ACTIVE) == 0)
218 #define SOURCE_BLOCKED(source) (((source)->flags & G_HOOK_FLAG_IN_CALL) != 0 && \
219 ((source)->flags & G_SOURCE_CAN_RECURSE) == 0)
221 #define SOURCE_UNREF(source, context) \
223 if ((source)->ref_count > 1)
349 GSource *source; local
572 GSource *source; local
1240 GSource *source; local
1280 GSource *source; local
1327 GSource *source; local
1375 GSource *source; local
1399 GSource *source; local
1426 GSource *source; local
1762 GSource *source = context->pending_dispatches->pdata[i]; local
2058 GSource *source; local
2255 GSource *source; local
3278 GSource *source = g_source_new (&g_timeout_funcs, sizeof (GTimeoutSource)); local
3310 GSource *source = g_source_new (&g_timeout_funcs, sizeof (GTimeoutSource)); local
3360 GSource *source; local
3467 GSource *source; local
3781 GSource *source = g_source_new (&g_child_watch_funcs, sizeof (GChildWatchSource)); local
3838 GSource *source; local
3942 GSource *source; local
3974 GSource *source; local
    [all...]
  /external/icu4c/samples/datefmt/
util.h 13 UnicodeString escape(const UnicodeString &source);
  /external/icu4c/samples/msgfmt/
util.h 13 UnicodeString escape(const UnicodeString &source);
  /external/icu4c/samples/numfmt/
util.h 14 UnicodeString escape(const UnicodeString &source);
  /external/icu4c/samples/translit/
util.h 13 UnicodeString escape(const UnicodeString &source);
  /external/webkit/JavaScriptCore/tests/mozilla/js1_2/regexp/
source.js 23 Filename: source.js
24 Description: 'Tests RegExp attribute source'
33 var TITLE = 'RegExp: source';
35 writeHeaderToLog('Executing script: source.js');
41 // /xyz/g.source
42 testcases[count++] = new TestCase ( SECTION, "/xyz/g.source",
43 "xyz", /xyz/g.source);
45 // /xyz/.source
46 testcases[count++] = new TestCase ( SECTION, "/xyz/.source",
47 "xyz", /xyz/.source);
    [all...]
  /frameworks/base/core/java/android/content/res/
ObbInfo.java 2 * Copyright (C) 2010 The Android Open Source Project
90 public ObbInfo createFromParcel(Parcel source) {
91 return new ObbInfo(source);
99 private ObbInfo(Parcel source) {
100 filename = source.readString();
101 packageName = source.readString();
102 version = source.readInt();
103 flags = source.readInt();
104 salt = source.createByteArray();

Completed in 180 milliseconds

1 23 4 5 6 7 8 91011>>