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

1 2 3 4 5 67 8 91011>>

  /external/chromium/googleurl/src/
url_canon_stdurl.cc 4 // Redistribution and use in source and binary forms, with or without
8 // * Redistributions of source code must retain the above copyright
41 bool DoCanonicalizeStandardURL(const URLComponentSource<CHAR>& source,
47 bool success = CanonicalizeScheme(source.scheme, parsed.scheme,
63 success &= CanonicalizeUserInfo(source.username, parsed.username,
64 source.password, parsed.password,
69 success &= CanonicalizeHost(source.host, parsed.host,
79 success &= CanonicalizePort(source.port, parsed.port, default_port,
93 success &= CanonicalizePath(source.path, parsed.path,
108 CanonicalizeQuery(source.query, parsed.query, query_converter
    [all...]
url_canon_mailtourl.cc 4 // Redistribution and use in source and binary forms, with or without
8 // * Redistributions of source code must retain the above copyright
43 bool DoCanonicalizeMailtoURL(const URLComponentSource<CHAR>& source,
72 UCHAR uch = static_cast<UCHAR>(source.path[i]);
74 success &= AppendUTF8EscapedChar(source.path, &i, end, output);
86 CanonicalizeQuery(source.query, parsed.query, NULL,
117 URLComponentSource<char> source(base);
119 SetupOverrideComponents(base, replacements, &source, &parsed);
121 source, parsed, output, new_parsed);
130 URLComponentSource<char> source(base)
    [all...]
url_canon_pathurl.cc 4 // Redistribution and use in source and binary forms, with or without
8 // * Redistributions of source code must retain the above copyright
42 bool DoCanonicalizePathURL(const URLComponentSource<CHAR>& source,
47 bool success = CanonicalizeScheme(source.scheme, parsed.scheme,
64 UCHAR uch = static_cast<UCHAR>(source.path[i]);
66 success &= AppendUTF8EscapedChar(source.path, &i, end, output);
108 URLComponentSource<char> source(base);
110 SetupOverrideComponents(base, replacements, &source, &parsed);
112 source, parsed, output, new_parsed);
121 URLComponentSource<char> source(base)
    [all...]
  /frameworks/base/core/java/android/view/inputmethod/
EditorInfo.java 2 * Copyright (C) 2008 The Android Open Source Project
290 public EditorInfo createFromParcel(Parcel source) {
292 res.inputType = source.readInt();
293 res.imeOptions = source.readInt();
294 res.privateImeOptions = source.readString();
295 res.actionLabel = TextUtils.CHAR_SEQUENCE_CREATOR.createFromParcel(source);
296 res.actionId = source.readInt();
297 res.initialSelStart = source.readInt();
298 res.initialSelEnd = source.readInt();
299 res.initialCapsMode = source.readInt()
    [all...]
  /frameworks/base/core/java/android/content/pm/
ApplicationInfo.java 2 * Copyright (C) 2007 The Android Open Source Project
508 public ApplicationInfo createFromParcel(Parcel source) {
509 return new ApplicationInfo(source);
516 private ApplicationInfo(Parcel source) {
517 super(source);
518 taskAffinity = source.readString();
519 permission = source.readString();
520 processName = source.readString();
521 className = source.readString();
522 theme = source.readInt()
    [all...]
ActivityInfo.java 2 * Copyright (C) 2007 The Android Open Source Project
416 public ActivityInfo createFromParcel(Parcel source) {
417 return new ActivityInfo(source);
424 private ActivityInfo(Parcel source) {
425 super(source);
426 theme = source.readInt();
427 launchMode = source.readInt();
428 permission = source.readString();
429 taskAffinity = source.readString();
430 targetActivity = source.readString()
    [all...]
PackageStats.java 2 * Copyright (C) 2008 The Android Open Source Project
55 public PackageStats(Parcel source) {
56 packageName = source.readString();
57 codeSize = source.readLong();
58 dataSize = source.readLong();
59 cacheSize = source.readLong();
  /external/webkit/WebCore/platform/graphics/win/
FontPlatformDataCairoWin.cpp 83 FontPlatformData::FontPlatformData(const FontPlatformData& source)
84 : m_font(source.m_font)
85 , m_size(source.m_size)
88 , m_syntheticBold(source.m_syntheticBold)
89 , m_syntheticOblique(source.m_syntheticOblique)
90 , m_useGDI(source.m_useGDI)
92 if (source.m_fontFace)
93 m_fontFace = cairo_font_face_reference(source.m_fontFace);
95 if (source.m_scaledFont)
96 m_scaledFont = cairo_scaled_font_reference(source.m_scaledFont)
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SearchableSources.java 2 * Copyright (C) 2009 The Android Open Source Project
43 private HashMap<String, Source> mSources;
45 // The web search source to use.
46 private Source mWebSearchSource;
50 * @param context Used for looking up source information etc.
65 public Collection<Source> getSources() {
69 public Source getSource(String name) {
73 public Source getWebSearchSource() {
82 mSources = new HashMap<String,Source>();
97 SearchableSource source = createSearchableSource(searchable) local
106 mSources.put(source.getName(), source); local
125 SearchableSource source = createSearchableSource(info); local
    [all...]
  /external/bluetooth/glib/glib/
gmain.h 72 GSource *source,
81 gboolean (*prepare) (GSource *source,
83 gboolean (*check) (GSource *source);
84 gboolean (*dispatch) (GSource *source,
87 void (*finalize) (GSource *source); /* Can be NULL */
150 /* Low level functions for use by source implementations
177 GSource *g_source_ref (GSource *source);
178 void g_source_unref (GSource *source);
180 guint g_source_attach (GSource *source,
182 void g_source_destroy (GSource *source);
    [all...]
  /cts/tests/tests/text/src/android/text/cts/
AlteredCharSequenceTest.java 2 * Copyright (C) 2008 The Android Open Source Project
40 CharSequence source = "abcdefgh"; local
41 mAlteredCharSequence = AlteredCharSequence.make(source, sub, 0, sub.length);
45 // chars in source.
109 CharSequence source = SOURCE_STR; local
111 source = source + "a";
112 mAlteredCharSequence = AlteredCharSequence.make(source, sub, 0, sub.length);
113 assertEquals(source.length(), mAlteredCharSequence.length());
126 CharSequence source = SOURCE_STR local
149 CharSequence source = SOURCE_STR; local
169 CharSequence source = SOURCE_STR; local
    [all...]
  /external/freetype/src/base/
ftdbgmem.c 96 FT_MemSource source; member in struct:FT_MemNodeRec_
373 FT_FILENAME( node->source->file_name ),
374 node->source->line_no );
400 FT_MemSource source, next; local
403 for ( source = table->sources[i]; source != NULL; source = next )
405 next = source->link;
406 ft_mem_table_free( table, source );
519 FT_MemSource source; local
621 FT_MemSource source; local
940 FT_MemSource source = *bucket; local
953 FT_MemSource source = *bucket; local
974 FT_MemSource source = sources[nn]; local
    [all...]
  /external/webkit/JavaScriptCore/runtime/
Executable.h 4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
107 ScriptExecutable(JSGlobalData* globalData, const SourceCode& source)
109 , m_source(source)
120 ScriptExecutable(ExecState* exec, const SourceCode& source)
122 , m_source(source)
133 const SourceCode& source() { return m_source; } function in class:JSC::ScriptExecutable
176 static PassRefPtr<EvalExecutable> create(ExecState* exec, const SourceCode& source) { return adoptRef(new EvalExecutable(exec, source)); }
179 EvalExecutable(ExecState* exec, const SourceCode& source)
    [all...]
  /libcore/luni/src/main/java/org/apache/xpath/
SourceTreeManager.java 26 import javax.xml.transform.Source;
40 * This class bottlenecks all management of source trees. The methods
41 * in this class should allow easy garbage collection of source
42 * trees (not yet!), and should centralize parsing for those source trees.
59 /** The TrAX URI resolver used to obtain source trees. */
113 * @return a Source that can be used to process the resource.
118 public Source resolveURI(
123 Source source = null; local
127 source = m_uriResolver.resolve(urlString, base)
245 Source source = this.resolveURI(base, urlString, locator); local
    [all...]
  /external/chromium/third_party/icu/source/i18n/
dtrule.cpp 51 DateTimeRule::DateTimeRule(const DateTimeRule& source)
52 : UObject(source),
53 fMonth(source.fMonth), fDayOfMonth(source.fDayOfMonth), fDayOfWeek(source.fDayOfWeek),
54 fWeekInMonth(source.fWeekInMonth), fMillisInDay(source.fMillisInDay),
55 fDateRuleType(source.fDateRuleType), fTimeRuleType(source.fTimeRuleType) {
  /external/icu4c/i18n/
dtrule.cpp 51 DateTimeRule::DateTimeRule(const DateTimeRule& source)
52 : UObject(source),
53 fMonth(source.fMonth), fDayOfMonth(source.fDayOfMonth), fDayOfWeek(source.fDayOfWeek),
54 fWeekInMonth(source.fWeekInMonth), fMillisInDay(source.fMillisInDay),
55 fDateRuleType(source.fDateRuleType), fTimeRuleType(source.fTimeRuleType) {
  /external/v8/test/mjsunit/
const-eval-init.js 2 // Redistribution and use in source and binary forms, with or without
6 // * Redistributions of source code must retain the above copyright
34 var source =
41 eval(source);
48 var source =
55 eval(source);
63 var source = "delete x; const x = 7; assertEquals(7, x)";
64 eval(source);
77 var source = "delete x; const x = 8";
78 eval(source);
    [all...]
  /frameworks/base/core/java/android/text/
AlteredCharSequence.java 2 * Copyright (C) 2006 The Android Open Source Project
30 * are mirrored from <code>source</code>, except that the range of
34 public static AlteredCharSequence make(CharSequence source, char[] sub,
36 if (source instanceof Spanned)
37 return new AlteredSpanned(source, sub, substart, subend);
39 return new AlteredCharSequence(source, sub, substart, subend);
42 private AlteredCharSequence(CharSequence source, char[] sub,
44 mSource = source;
60 private AlteredSpanned(CharSequence source, char[] sub,
62 super(source, sub, substart, subend)
    [all...]
  /external/bluetooth/glib/gio/xdgmime/
xdgmimeint.h 70 xdg_unichar_t _xdg_utf8_to_ucs4 (const char *source);
71 xdg_unichar_t _xdg_ucs4_to_lower (xdg_unichar_t source);
72 int _xdg_utf8_validate (const char *source);
73 xdg_unichar_t *_xdg_convert_to_ucs4 (const char *source, int *len);
74 void _xdg_reverse_ucs4 (xdg_unichar_t *source, int len);
  /external/chromium/base/third_party/xdg_mime/
xdgmimeint.h 70 xdg_unichar_t _xdg_utf8_to_ucs4 (const char *source);
71 xdg_unichar_t _xdg_ucs4_to_lower (xdg_unichar_t source);
72 int _xdg_utf8_validate (const char *source);
73 xdg_unichar_t *_xdg_convert_to_ucs4 (const char *source, int *len);
74 void _xdg_reverse_ucs4 (xdg_unichar_t *source, int len);
  /external/libvpx/vpx_scale/blackfin/
yv12extend.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.
151 // Now copy the top and bottom source lines into each line of the respective borders
194 // Now copy the top and bottom source lines into each line of the respective borders
232 // Now copy the top and bottom source lines into each line of the respective borders
262 * FUNCTION : Copies the source image into the destination image and
273 unsigned char *source, *dest; local
275 source = src_ybc->y_buffer;
280 extend_memcpy(dest, source, src_ybc->y_width)
    [all...]
  /external/skia/src/core/
SkBlitter_Sprite.cpp 3 ** Copyright 2006, The Android Open Source Project
20 SkSpriteBlitter::SkSpriteBlitter(const SkBitmap& source)
21 : fSource(&source)
66 // have wrapped the source bitmap inside a shader
69 const SkBitmap& source,
87 blitter = SkSpriteBlitter::ChooseD16(source, paint, storage, storageSize);
90 blitter = SkSpriteBlitter::ChooseD32(source, paint, storage, storageSize);
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
fst.cpp 52 bool FstHeader::Read(istream &strm, const string &source) {
56 LOG(ERROR) << "FstHeader::Read: Bad FST header: " << source;
69 LOG(ERROR) << "FstHeader::Read: read failed: " << source;
74 bool FstHeader::Write(ostream &strm, const string &source) const {
85 LOG(ERROR) << "FstHeader::Write: write failed: " << source;
  /external/webkit/WebCore/css/
CSSFontFace.cpp 4 * Redistribution and use in source and binary forms, with or without
7 * 1. Redistributions of source code must retain the above copyright
74 void CSSFontFace::addSource(CSSFontFaceSource* source)
76 m_sources.append(source);
77 source->setFontFace(this);
80 void CSSFontFace::fontLoaded(CSSFontFaceSource* source)
82 if (source != m_activeSource)
  /frameworks/base/core/java/android/content/
PeriodicSync.java 2 * Copyright (C) 2010 The Android Open Source Project
58 public PeriodicSync createFromParcel(Parcel source) {
59 return new PeriodicSync(Account.CREATOR.createFromParcel(source),
60 source.readString(), source.readBundle(), source.readLong());

Completed in 554 milliseconds

1 2 3 4 5 67 8 91011>>