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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/Frontend/
verify2.c 10 #error source
18 // CHECK-NEXT: Line 10: source
  /external/chromium_org/third_party/WebKit/Source/wtf/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
36 static void copy(LChar* destination, const uint8_t* source)
38 memcpy(destination, source, 4);
41 static void copy(UChar* destination, const uint8_t* source)
43 destination[0] = source[0];
44 destination[1] = source[1];
45 destination[2] = source[2];
46 destination[3] = source[3];
50 static void copy(LChar* destination, const uint8_t* source)
    [all...]
  /external/chromium_org/ui/keyboard/
keyboard_ui_controller.cc 2 // Use of this source code is governed by a BSD-style license that can be
18 content::WebUIDataSource* source = local
21 source->SetDefaultResource(IDR_KEYBOARD_WEBUI_INDEX);
22 source->AddResourcePath("elements/kb-altkey.html",
24 source->AddResourcePath("elements/kb-altkey-container.html",
26 source->AddResourcePath("elements/kb-altkey-data.html",
28 source->AddResourcePath("elements/kb-altkey-set.html",
30 source->AddResourcePath("elements/kb-key.html", IDR_KEYBOARD_ELEMENTS_KEY);
31 source->AddResourcePath("elements/kb-key-base.html",
33 source->AddResourcePath("elements/kb-key-codes.html"
    [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 protected transient Object source; field in class:EventObject
39 * @param source
42 public EventObject(Object source) {
43 if (source == null) {
44 throw new IllegalArgumentException("source == null");
46 this.source = source;
53 return source;
60 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...]
  /external/chromium_org/chrome/browser/ui/webui/task_manager/
task_manager_ui.cc 2 // Use of this source code is governed by a BSD-style license that can be
27 content::WebUIDataSource* source = local
29 source->SetUseJsonJSFormatV2();
31 source->AddLocalizedString("closeWindow", IDS_CLOSE);
32 source->AddLocalizedString("title", IDS_TASK_MANAGER_TITLE);
33 source->AddLocalizedString("aboutMemoryLink",
35 source->AddLocalizedString("killButton", IDS_TASK_MANAGER_KILL);
36 source->AddLocalizedString("processIDColumn",
38 source->AddLocalizedString("taskColumn", IDS_TASK_MANAGER_TASK_COLUMN);
39 source->AddLocalizedString("profileNameColumn"
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/performance_monitor/
performance_monitor_ui.cc 2 // Use of this source code is governed by a BSD-style license that can be
21 content::WebUIDataSource* source = local
24 source->SetJsonPath("strings.js");
25 source->AddResourcePath("chart.css", IDR_PERFORMANCE_MONITOR_CHART_CSS);
26 source->AddResourcePath("chart.js", IDR_PERFORMANCE_MONITOR_CHART_JS);
27 source->AddResourcePath("jquery.js", IDR_PERFORMANCE_MONITOR_JQUERY_JS);
28 source->AddResourcePath("flot.js", IDR_PERFORMANCE_MONITOR_JQUERY_FLOT_JS);
29 source->SetDefaultResource(IDR_PERFORMANCE_MONITOR_HTML);
31 source->AddString("enableFlagsURL", ASCIIToUTF16(chrome::kChromeUIFlagsURL));
33 source->AddLocalizedString("title", IDS_PERFORMANCE_MONITOR_TITLE)
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/local_discovery/
local_discovery_ui.cc 2 // Use of this source code is governed by a BSD-style license that can be
20 content::WebUIDataSource* source = local
23 source->SetDefaultResource(IDR_LOCAL_DISCOVERY_HTML);
24 source->AddResourcePath("local_discovery.css", IDR_LOCAL_DISCOVERY_CSS);
25 source->AddResourcePath("local_discovery.js", IDR_LOCAL_DISCOVERY_JS);
26 source->AddResourcePath("printer.png", IDR_LOCAL_DISCOVERY_PRINTER_PNG);
28 source->SetUseJsonJSFormatV2();
29 source->AddLocalizedString("serviceRegister",
32 source->AddLocalizedString("registerConfirmMessage",
34 source->AddLocalizedString("registerUser"
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/help/
help_ui.cc 2 // Use of this source code is governed by a BSD-style license that can be
18 content::WebUIDataSource* source = local
21 source->SetJsonPath("strings.js");
22 source->SetUseJsonJSFormatV2();
23 source->AddResourcePath("help.js", IDR_HELP_JS);
24 source->AddResourcePath("help_focus_manager.js", IDR_HELP_FOCUS_MANAGER_JS);
25 source->AddResourcePath("help_base_page.js", IDR_HELP_BASE_PAGE_JS);
26 source->AddResourcePath("channel_change_page.js", IDR_CHANNEL_CHANGE_PAGE_JS);
27 source->SetDefaultResource(IDR_HELP_HTML);
28 source->DisableDenyXFrameOptions()
37 content::WebUIDataSource* source = CreateAboutPageHTMLSource(); local
    [all...]
  /external/chromium_org/components/dom_distiller/webui/
dom_distiller_ui.cc 2 // Use of this source code is governed by a BSD-style license that can be
24 content::WebUIDataSource* source = local
26 source->SetDefaultResource(IDR_ABOUT_DOM_DISTILLER_HTML);
27 source->AddResourcePath("about_dom_distiller.css",
29 source->AddResourcePath("about_dom_distiller.js",
32 source->SetUseJsonJSFormatV2();
33 source->AddLocalizedString("domDistillerTitle",
35 source->AddLocalizedString("addArticleUrl",
37 source->AddLocalizedString("addArticleAddButtonLabel",
39 source->AddLocalizedString("addArticleFailedLabel"
    [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/chromium_org/chrome/browser/ui/webui/
downloads_ui.cc 2 // Use of this source code is governed by a BSD-style license that can be
39 content::WebUIDataSource* source = local
42 source->AddLocalizedString("title", IDS_DOWNLOAD_TITLE);
43 source->AddLocalizedString("searchbutton", IDS_DOWNLOAD_SEARCH_BUTTON);
44 source->AddLocalizedString("searchresultsfor", IDS_DOWNLOAD_SEARCHRESULTSFOR);
45 source->AddLocalizedString("downloads", IDS_DOWNLOAD_TITLE);
46 source->AddLocalizedString("clear_all", IDS_DOWNLOAD_LINK_CLEAR_ALL);
47 source->AddLocalizedString("open_downloads_folder",
51 source->AddLocalizedString("status_cancelled", IDS_DOWNLOAD_TAB_CANCELLED);
52 source->AddLocalizedString("status_removed", IDS_DOWNLOAD_FILE_REMOVED)
112 content::WebUIDataSource* source = CreateDownloadsUIHTMLSource(profile); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
InputStreamPreprocessor.h 6 * Redistribution and use in source and binary forms, with or without
9 * 1. Redistributions of source code must retain the above copyright
53 // characters in |source| (after collapsing \r\n, etc).
54 ALWAYS_INLINE bool peek(SegmentedString& source)
56 m_nextInputCharacter = source.currentChar();
67 return processNextInputCharacter(source);
70 // Returns whether there are more characters in |source| after advancing.
71 ALWAYS_INLINE bool advance(SegmentedString& source)
73 source.advanceAndUpdateLineNumber();
74 if (source.isEmpty()
    [all...]
  /external/chromium_org/extensions/common/
extension_urls.cc 2 // Use of this source code is governed by a BSD-style license that can be
18 bool IsSourceFromAnExtension(const base::string16& source) {
19 return GURL(source).SchemeIs(kExtensionScheme) ||
20 StartsWith(source,
  /external/chromium_org/net/proxy/
proxy_config_source.cc 2 // Use of this source code is governed by a BSD-style license that can be
30 const char* ProxyConfigSourceToString(ProxyConfigSource source) {
31 DCHECK_GT(NUM_PROXY_CONFIG_SOURCES, source);
32 return kSourceNames[source];
  /external/chromium_org/third_party/WebKit/Source/modules/mediasource/
URLMediaSource.cpp 4 * Redistribution and use in source and binary forms, with or without
8 * * Redistributions of source code must retain the above copyright
40 String URLMediaSource::createObjectURL(ExecutionContext* executionContext, MediaSourceBase* source)
45 if (!executionContext || !source)
47 return DOMURL::createPublicURL(executionContext, 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 + "]";
  /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/chromium_org/chrome/browser/tab_contents/
language_state_observer.h 2 // Use of this source code is governed by a BSD-style license that can be
16 virtual void OnIsPageTranslatedChanged(content::WebContents* source) = 0;
19 virtual void OnTranslateEnabledChanged(content::WebContents* source) = 0;
  /external/chromium_org/content/browser/speech/endpointer/
energy_endpointer_params.cc 2 // Use of this source code is governed by a BSD-style license that can be
33 void EnergyEndpointerParams::operator=(const EnergyEndpointerParams& source) {
34 frame_period_ = source.frame_period();
35 frame_duration_ = source.frame_duration();
36 endpoint_margin_ = source.endpoint_margin();
37 onset_window_ = source.onset_window();
38 speech_on_window_ = source.speech_on_window();
39 offset_window_ = source.offset_window();
40 onset_detect_dur_ = source.onset_detect_dur();
41 onset_confirm_dur_ = source.onset_confirm_dur()
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
syscall_mount.c 2 * Use of this source code is governed by a BSD-style license that can be
8 int mount(const char* source, const char* target, const char* filesystemtype,
10 return ki_mount(source, target, filesystemtype, mountflags, data);
  /external/chromium_org/sandbox/win/tests/common/
test_utils.h 2 // Use of this source code is governed by a BSD-style license that can be
10 // Sets a reparse point. |source| will now point to |target|. Returns true if
12 bool SetReparsePoint(HANDLE source, const wchar_t* target);
14 // Delete the reparse point referenced by |source|. Returns true if the call
16 bool DeleteReparsePoint(HANDLE source);

Completed in 1143 milliseconds

1 2 3 4 5 6 7 8 91011>>