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

1 2

  /external/chromium/chrome/common/
native_window_notification_source.h 2 // Use of this source code is governed by a BSD-style license that can be
12 // Specialization of the Source class for native windows. On Windows, these are
13 // HWNDs rather than pointers, and since the Source class expects a pointer
17 class Source<gfx::NativeWindow> : public NotificationSource {
19 explicit Source(gfx::NativeWindow wnd) : NotificationSource(wnd) {}
21 explicit Source(const NotificationSource& other)
  /frameworks/base/media/libmediaplayerservice/nuplayer/
NuPlayerSource.h 2 * Copyright (C) 2010 The Android Open Source Project
27 struct NuPlayer::Source : public RefBase {
28 Source() {}
55 virtual ~Source() {}
58 DISALLOW_EVIL_CONSTRUCTORS(Source);
  /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/chrome/browser/sync/glue/
extension_data.h 2 // Use of this source code is governed by a BSD-style license that can be
20 enum Source {
26 // given source. merged_data() will be equal to |data| and
27 // NeedsUpdate(source) will return false.
29 Source source, const sync_pb::ExtensionSpecifics& data);
39 // Returns whether or not the data from the given source needs to be
41 bool NeedsUpdate(Source source) const;
43 // Stores the given data as being from the given source, merging i
    [all...]
  /external/llvm/utils/TableGen/
PseudoLoweringEmitter.h 5 // This file is distributed under the University of Illinois Open Source
32 CodeGenInstruction Source; // The source pseudo instruction definition.
38 Source(s), Dest(d), OperandMap(m) {}
PseudoLoweringEmitter.cpp 5 // This file is distributed under the University of Illinois Open Source
51 // Source operand maps to destination operand. The Data element
114 // argument in the source instruction, in either the (outs) or (ins) list.
117 // Record the mapping of the source to result arguments for use by
135 "' has no matching source operand.");
136 // Map the source operand to the destination operand index for each
150 EmitSourceFileHeader("Pseudo-instruction MC lowering Source Fragment", o);
159 CodeGenInstruction &Source = Expansion.Source;
161 o << " case " << Source.Namespace << "::
    [all...]
  /external/chromium/base/
stack_container.h 2 // Use of this source code is governed by a BSD-style license that can be
21 // StackAllocator::Source which contains the data. Copying the allocator
22 // merely copies the pointer to this shared source, so all allocators created
41 struct Source {
42 Source() : used_stack_buffer_(false) {
84 // no guarantee that the Source buffer of Ts is large enough
93 explicit StackAllocator(Source* source) : source_(source) {
119 Source* source_
    [all...]
message_pump_glib_unittest.cc 2 // Use of this source code is governed by a BSD-style license that can be
22 // GLib source runs at the same priority).
26 source_ = static_cast<Source*>(g_source_new(&SourceFuncs, sizeof(Source)));
90 struct Source : public GSource {
94 static gboolean Prepare(GSource* source, gint* timeout_ms) {
95 *timeout_ms = static_cast<Source*>(source)->injector->HandlePrepare();
99 static gboolean Check(GSource* source) {
100 return static_cast<Source*>(source)->injector->HandleCheck()
    [all...]
  /external/llvm/include/llvm/MC/
MachineLocation.h 5 // This file is distributed under the University of Illinois Open Source
82 MachineLocation Destination, Source;
88 : Label(label), Destination(D), Source(S) {}
93 const MachineLocation &getSource() const { return Source; }
MCDwarf.h 5 // This file is distributed under the University of Illinois Open Source
238 MachineLocation Source;
250 : Operation(Move), Label(L), Destination(D), Source(S) {
254 : Operation(Op), Label(L), Destination(D), Source(S) {
260 const MachineLocation &getSource() const { return Source; }