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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/compile/libbcc/include/bcc/
Script.h 2 * Copyright 2010-2012, The Android Open Source Project
22 class Source;
26 // This is the source associated with this object and is going to be
28 Source *mSource;
36 Script(Source &pSource) : mSource(&pSource) { }
40 // Reset this object with the new source supplied. Return false if this
41 // object remains unchanged after the call (e.g., the supplied source is
43 // false, the current containing source will be destroyed after successfully
45 bool reset(Source &pSource, bool pPreserveCurrent = false);
47 // Merge (or link) another source into the current source associated wit
    [all...]
BCCContext.h 2 * Copyright 2012, The Android Open Source Project
27 class Source;
42 void addSource(Source &pSource);
43 void removeSource(Source &pSource);
Source.h 2 * Copyright 2010-2012, The Android Open Source Project
30 class Source {
40 Source(const char* name, BCCContext &pContext, llvm::Module &pModule,
44 static Source *CreateFromBuffer(BCCContext &pContext,
49 static Source *CreateFromFile(BCCContext &pContext,
52 // Create a Source object from an existing module. If pNoDelete
54 static Source *CreateFromModule(BCCContext &pContext,
59 static Source *CreateEmpty(BCCContext &pContext, const std::string &pName);
63 // Merge the current source with pSource. pSource
65 bool merge(Source &pSource)
    [all...]
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
SourceResult.java 2 * Copyright (C) 2009 The Android Open Source Project
20 * The result of getting suggestions from a single source.
24 Source getSource();
SuggestionsProvider.java 2 * Copyright (C) 2009 The Android Open Source Project
29 * @param source The source to query. Must be non-null.
31 Suggestions getSuggestions(String query, Source source);
  /frameworks/compile/libbcc/lib/Core/
Script.cpp 2 * Copyright 2010-2012, The Android Open Source Project
19 #include "bcc/Source.h"
23 bool Script::reset(Source &pSource, bool pPreserveCurrent) {
35 bool Script::mergeSource(Source &pSource) {
BCCContextImpl.h 2 * Copyright 2012, The Android Open Source Project
26 class Source;
37 llvm::SmallPtrSet<Source *, 2> mOwnSources;
BCCContextImpl.cpp 2 * Copyright 2012, The Android Open Source Project
23 #include "bcc/Source.h"
28 // Another temporary container is needed to store the Source objects that we
29 // are going to destroy. Since the destruction of Source object will call
31 std::vector<Source *> Sources(mOwnSources.begin(), mOwnSources.end());
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,
79 Source *result = CreateFromModule(pContext, pName, *module, /* pNoDelete */false);
87 Source *Source::CreateFromFile(BCCContext &pContext, const std::string &pPath) {
105 Source *result = CreateFromModule(pContext, pPath.c_str(), *module, /* pNoDelete */false);
113 Source *Source::CreateFromModule(BCCContext &pContext, const char* name, llvm::Module &pModule
    [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
URIResolver.java 24 * to turn a URI used in document(), xsl:import, or xsl:include into a Source object.
36 * @return A Source object, or null if the href cannot be resolved,
42 public Source resolve(String href, String base)
  /frameworks/compile/libbcc/include/bcc/Renderscript/
RSScriptGroupFusion.h 2 * Copyright 2013, The Android Open Source Project
29 class Source;
42 const std::vector<Source *>& sources,
47 bool renameInvoke(BCCContext& Context, const Source* source, const int slot,
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sec_api/
stralign_s.h 19 static __inline PUWSTR ua_wcscpy_s(PUWSTR Destination,size_t DestinationSize,PCUWSTR Source) {
20 if(WSTR_ALIGNED(Source) && WSTR_ALIGNED(Destination)) return (wcscpy_s((PWSTR)Destination,DestinationSize,(PCWSTR)Source)==0 ? Destination : NULL);
  /art/runtime/base/
casts.h 2 * Copyright (C) 2011 The Android Open Source Project
78 template <class Dest, class Source>
79 inline Dest bit_cast(const Source& source) {
80 // Compile time assertion: sizeof(Dest) == sizeof(Source)
81 // A compile error here means your Dest and Source have different sizes.
82 static_assert(sizeof(Dest) == sizeof(Source), "sizes should be equal");
84 memcpy(&dest, &source, sizeof(dest));
90 template <typename Dest, typename Source>
91 inline Dest dchecked_integral_cast(const Source source)
    [all...]
  /external/okhttp/okio/okio/src/main/java/okio/
ForwardingSource.java 20 /** A {@link Source} which forwards calls to another. Useful for subclassing. */
21 public abstract class ForwardingSource implements Source {
22 private final Source delegate;
24 public ForwardingSource(Source delegate) {
29 /** {@link Source} to which this instance is delegating. */
30 public final Source delegate() {
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 {@linkplain
46 * <p>Source omits the unsafe-to-compose {@linkplain java.io.InputStream#mark
50 * <p>When implementing a source, you need not worry about the {@linkplain
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...]
  /external/lz4/
Android.mk 1 # Copyright (C) 2015 The Android Open Source Project
  /external/squashfs-tools/
Android.mk 1 # Copyright (C) 2015 The Android Open Source Project
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/google/
GoogleSource.java 2 * Copyright (C) 2010 The Android Open Source Project
18 import com.android.quicksearchbox.Source;
23 * Special source interface for Google suggestions.
25 public interface GoogleSource extends Source {
  /sdk/dumpeventlog/etc/
Android.mk 1 # Copyright 2007 The Android Open Source Project
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/numeric/conversion/
cast.hpp 38 template <typename Target, typename Source>
39 inline Target numeric_cast( Source arg )
41 typedef numeric::conversion_traits<Target, Source> conv_traits;
42 typedef numeric::numeric_cast_traits<Target, Source> cast_traits;
46 Source,
numeric_cast_traits.hpp 16 template <typename Target, typename Source, typename EnableIf = void>
21 typedef Trunc<Source> rounding_policy;
  /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.
  /external/llvm/lib/Support/
StringExtras.cpp 5 // This file is distributed under the University of Illinois Open Source
31 /// getToken - This function extracts one token from source, ignoring any
34 /// there are no tokens in the source string, an empty string is returned.
37 std::pair<StringRef, StringRef> llvm::getToken(StringRef Source,
40 StringRef::size_type Start = Source.find_first_not_of(Delimiters);
43 StringRef::size_type End = Source.find_first_of(Delimiters, Start);
45 return std::make_pair(Source.slice(Start, End), Source.substr(End));
50 void llvm::SplitString(StringRef Source,
53 std::pair<StringRef, StringRef> S = getToken(Source, Delimiters)
    [all...]
  /sdk/dumpeventlog/
Android.mk 1 # Copyright 2007 The Android Open Source Project

Completed in 3170 milliseconds

1 2 3 4 5 6 7 8 91011>>