HomeSort by relevance Sort by last modified time
    Searched defs:Source (Results 1 - 25 of 113) sorted by null

1 2 3 4 5

  /external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/
source.h 32 // class MySource : public Source {
41 class Source {
46 virtual ~Source() {}
  /external/chromium_org/chrome/browser/
native_window_notification_source.h 2 // Use of this source code is governed by a BSD-style license that can be
13 // Specialization of the Source class for native windows. On Windows, these are
14 // HWNDs rather than pointers, and since the Source class expects a pointer
18 class Source<gfx::NativeWindow> : public content::NotificationSource {
20 explicit Source(gfx::NativeWindow wnd) : content::NotificationSource(wnd) {}
22 explicit Source(const content::NotificationSource& other)
  /external/okhttp/okio/src/main/java/okio/
Source.java 27 * <p>Most applications shouldn't operate on a source directly, but rather
29 * {@link Okio#buffer(Source)} to wrap any source with a buffer.
42 * <p>Source avoids the impossible-to-implement {@link
46 * <p>Source omits the unsafe-to-compose {@link java.io.InputStream#mark mark
50 * <p>When implementing a source, you need not worry about the {@link
54 * <p>And source has a stronger {@code skip} method: {@link BufferedSource#skip}
58 * Use {@link Okio#source} to adapt an {@code InputStream} to a source. Use
59 * {@link BufferedSource#inputStream} to adapt a source to an {@cod
    [all...]
  /libcore/luni/src/main/java/javax/xml/transform/
Source.java 18 // $Id: Source.java 446598 2006-09-15 12:55:40Z jeremias $
24 * needed to act as source input (XML source or transformation instructions).
26 public interface Source {
29 * Set the system identifier for this Source.
31 * <p>The system identifier is optional if the source does not
  /external/chromium_org/extensions/renderer/
request_sender.h 2 // Use of this source code is governed by a BSD-style license that can be
28 // Source represents a user of RequestSender. Every request is associated with
29 // a Source object, which will be notified when the corresponding response
30 // arrives. When a Source object is going away and there are pending requests,
33 class Source {
35 virtual ~Source() {}
72 void StartRequest(Source* source,
85 // Notifies this that a request source is no longer valid.
87 void InvalidateSource(Source* source)
    [all...]
  /external/chromium_org/chrome/browser/media/
desktop_media_list.h 2 // Use of this source code is governed by a BSD-style license that can be
15 // DesktopMediaList provides the list of desktop media source (screens, windows,
22 struct Source {
23 // Id of the source.
26 // Name of the source that should be shown to the user.
29 // The thumbnail for the source.
50 // notifications will be generated for each existing source as it is
57 virtual const Source& GetSource(int index) const = 0;
  /external/clang/lib/AST/
DeclFriend.cpp 5 // This file is distributed under the University of Illinois Open Source
63 ExternalASTSource *Source = getParentASTContext().getExternalSource();
64 Decl *First = data().FirstFriend.get(Source);
  /frameworks/compile/libbcc/include/bcc/
Source.h 2 * Copyright 2010-2012, The Android Open Source Project
30 class Source {
39 Source(BCCContext &pContext, llvm::Module &pModule, bool pNoDelete = false);
42 static Source *CreateFromBuffer(BCCContext &pContext,
47 static Source *CreateFromFile(BCCContext &pContext,
50 // Create a Source object from an existing module. If pNoDelete
52 static Source *CreateFromModule(BCCContext &pContext,
56 static Source *CreateEmpty(BCCContext &pContext, const std::string &pName);
58 // Merge the current source with pSource. If pPreserveSource is false, pSource
60 bool merge(Source &pSource, bool pPreserveSource = false)
    [all...]
  /external/chromium_org/extensions/browser/
extension_icon_image.cc 2 // Use of this source code is governed by a BSD-style license that can be
74 // IconImage::Source
76 class IconImage::Source : public gfx::ImageSkiaSource {
78 Source(IconImage* host, const gfx::Size& size_in_dip);
79 virtual ~Source();
95 DISALLOW_COPY_AND_ASSIGN(Source);
98 IconImage::Source::Source(IconImage* host, const gfx::Size& size_in_dip)
103 IconImage::Source::~Source() {
    [all...]
  /frameworks/compile/libbcc/lib/Core/
Source.cpp 2 * Copyright 2012, The Android Open Source Project
17 #include "bcc/Source.h"
55 void Source::setModule(llvm::Module *pModule) {
60 Source *Source::CreateFromBuffer(BCCContext &pContext,
80 Source *result = CreateFromModule(pContext, *module, /* pNoDelete */false);
88 Source *Source::CreateFromFile(BCCContext &pContext, const std::string &pPath) {
107 Source *result = CreateFromModule(pContext, *module, /* pNoDelete */false);
115 Source *Source::CreateFromModule(BCCContext &pContext, llvm::Module &pModule
    [all...]
  /external/chromium_org/base/power_monitor/
power_monitor.cc 2 // Use of this source code is governed by a BSD-style license that can be
12 PowerMonitor::PowerMonitor(scoped_ptr<PowerMonitorSource> source)
14 source_(source.Pass()) {
37 PowerMonitorSource* PowerMonitor::Source() {
  /external/chromium_org/chrome/third_party/chromevox/third_party/closure-library/closure/bin/build/
source.py 16 """Scans a source JS file for its provided and required namespaces.
31 class Source(object):
32 """Scans a JavaScript source for its provided and required namespaces."""
46 def __init__(self, source):
47 """Initialize a source.
50 source: str, The JavaScript source.
56 self._source = source
60 """Get the source as a string."""
64 def _StripComments(cls, source)
    [all...]
  /external/chromium_org/content/public/browser/
notification_source.h 2 // Use of this source code is governed by a BSD-style license that can be
17 // "Source<sourceclassname>(sourceclasspointer)" or
25 // returns the pointer to the current source as an identifier, for use as a
39 // Declaring this const allows Source<T> to be used with both T = Foo and
45 class Source : public NotificationSource {
48 Source(const T* ptr) : NotificationSource(ptr) {} // NOLINT
49 Source(const NotificationSource& other) // NOLINT
  /external/clang/lib/Index/
SimpleFormatContext.h 5 // This file is distributed under the University of Illinois Open Source
50 llvm::MemoryBuffer *Source = llvm::MemoryBuffer::getMemBuffer(Content);
52 Files.getVirtualFile(Name, Source->getBufferSize(), 0);
53 Sources.overrideFileContents(Entry, Source);
  /external/clang/unittests/AST/
ExternalASTSourceTest.cpp 5 // This file is distributed under the University of Illinois Open Source
28 TestFrontendAction(ExternalASTSource *Source) : Source(Source) {}
32 getCompilerInstance().getASTContext().setExternalSource(Source);
43 IntrusiveRefCntPtr<ExternalASTSource> Source;
46 bool testExternalASTSource(ExternalASTSource *Source,
60 TestFrontendAction Action(Source);
65 // Ensure that a failed name lookup into an external source only occurs once.
CommentLexer.cpp 5 // This file is distributed under the University of Illinois Open Source
46 void lexString(const char *Source, std::vector<Token> &Toks);
61 void CommentLexerTest::lexString(const char *Source,
63 MemoryBuffer *Buf = MemoryBuffer::getMemBuffer(Source);
67 Lexer L(Allocator, Diags, Traits, Begin, Source, Source + strlen(Source));
80 // Empty source range should be handled.
82 const char *Source = "";
85 lexString(Source, Toks)
    [all...]
  /external/chromium_org/chrome/browser/ui/window_sizer/
window_sizer_common_unittest.h 2 // Use of this source code is governed by a BSD-style license that can be
90 enum Source { DEFAULT, LAST_ACTIVE, PERSISTED, BOTH };
94 // |source| specifies which type of data gets set for the test: Either the
105 Source source,
113 // |source| specifies which type of data gets set for the test: Either the
122 Source source,
130 // |source|. The |display_config| is the primary display configuration used.
134 Source source
    [all...]
  /external/chromium_org/content/renderer/media/
peer_connection_tracker.h 2 // Use of this source code is governed by a BSD-style license that can be
15 #include "third_party/libjingle/source/talk/app/webrtc/peerconnectioninterface.h"
41 enum Source {
90 const blink::WebRTCSessionDescription& desc, Source source);
102 Source source,
108 const blink::WebMediaStream& stream, Source source);
113 const blink::WebMediaStream& stream, Source source)
    [all...]
  /external/clang/unittests/Tooling/
RewriterTestContext.h 5 // This file is distributed under the University of Illinois Open Source
51 llvm::MemoryBuffer *Source = llvm::MemoryBuffer::getMemBuffer(Content);
53 Files.getVirtualFile(Name, Source->getBufferSize(), 0);
54 Sources.overrideFileContents(Entry, Source);
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
AbstractClassGenerator.java 41 private Source source; field in class:AbstractClassGenerator
49 protected static class Source {
52 public Source(String name) {
57 protected AbstractClassGenerator(Source source) {
58 this.source = source;
73 return namingPolicy.getClassName(namePrefix, source.name, key, new Predicate() {
81 return (Set)((Map)source.cache.get(loader)).get(NAME_KEY)
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
Source.java 2 * Copyright (C) 2009 The Android Open Source Project
31 public interface Source extends SuggestionCursorProvider<SourceResult> {
34 * Gets the name activity that intents from this source are sent to.
39 * Gets the suggestion URI for getting suggestions from this Source.
44 * Gets the localized, human-readable label for this source.
49 * Gets the icon for this suggestion source.
54 * Gets the icon URI for this suggestion source.
59 * Gets an icon from this suggestion source.
66 * Gets the URI for an icon form this suggestion source.
73 * Gets the search hint text for this suggestion source
    [all...]
  /frameworks/av/media/libmediaplayerservice/nuplayer/
NuPlayerSource.h 2 * Copyright (C) 2010 The Android Open Source Project
34 struct NuPlayer::Source : public AHandler {
64 Source(const sp<AMessage> &notify)
75 // Explicitly disconnect the underling data source
122 virtual ~Source() {}
136 DISALLOW_EVIL_CONSTRUCTORS(Source);
  /external/chromium_org/base/containers/
stack_container.h 2 // Use of this source code is governed by a BSD-style license that can be
25 // StackAllocator::Source which contains the data. Copying the allocator
26 // merely copies the pointer to this shared source, so all allocators created
45 struct Source {
46 Source() : used_stack_buffer_(false) {
84 // no guarantee that the Source buffer of Ts is large enough
100 explicit StackAllocator(Source* source) : source_(source) {
126 Source* source_
    [all...]
  /external/chromium_org/chrome/browser/signin/
signin_promo.h 2 // Use of this source code is governed by a BSD-style license that can be
24 const char kSignInPromoQueryKeySource[] = "source";
29 enum Source {
83 // |source| identifies from where the sign in promo is being called, and is
84 // used to record sync promo UMA stats in the context of the source.
88 GURL GetPromoURL(Source source, bool auto_close);
89 GURL GetPromoURL(Source source, bool auto_close, bool is_constrained);
97 // Gets the source from the query portion of the sign in promo URL
    [all...]
  /external/chromium_org/net/cookies/
canonical_cookie.h 2 // Use of this source code is governed by a BSD-style license that can be
73 const std::string& Source() const { return source_; }
131 // Returns the cookie source when cookies are set for |url|. This function
143 // The source member of a canonical cookie is the origin of the URL that tried
146 // user the source URL. This is used for both allowed and blocked cookies.

Completed in 784 milliseconds

1 2 3 4 5