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

1 2 3 4 5 6 7 8 91011>>

  /device/linaro/bootloader/edk2/BaseTools/
Makefile 14 SUBDIRS = Source\C Source\Python
19 @Source\C\Makefiles\NmakeSubdirs.bat all Source\C
22 @Source\C\Makefiles\NmakeSubdirs.bat all Source\Python
25 @Source\C\Makefiles\NmakeSubdirs.bat all $**
29 @Source\C\Makefiles\NmakeSubdirs.bat clean $(SUBDIRS)
33 @Source\C\Makefiles\NmakeSubdirs.bat cleanall $(SUBDIRS)
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/CompilerStub/
memcpy.c 38 const UINT8 *Source;
40 for (Ptr = Dest, Source = Src; Count > 0; Count--, Source++, Ptr++) {
41 *Ptr = *Source;
  /external/parameter-framework/upstream/utility/
BinaryCopy.hpp 5 * Redistribution and use in source and binary forms, with or without modification,
8 * 1. Redistributions of source code must retain the above copyright notice, this
45 * The source and the destination must have the same storage size (e.g. copying
48 * @tparam Source The source type
51 * @param source Source variable
52 * @returns the source, reinterpreted as the destination type
54 template <class Destination, class Source>
55 typename std::remove_reference<Destination>::type binaryCopy(const Source source
64 Source source; member in union:utility::__anon29028
    [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();
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/mips/
xlr-ext.s 0 # Source file used to test XLR's assembler instructions
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/
Makefile 36 COMMON_PYTHON=$(BASE_TOOLS_PATH)\Source\Python\Common\BuildToolError.py \
37 $(BASE_TOOLS_PATH)\Source\Python\Common\Database.py \
38 $(BASE_TOOLS_PATH)\Source\Python\Common\DataType.py \
39 $(BASE_TOOLS_PATH)\Source\Python\Common\DecClassObject.py \
40 $(BASE_TOOLS_PATH)\Source\Python\Common\Dictionary.py \
41 $(BASE_TOOLS_PATH)\Source\Python\Common\DscClassObject.py \
42 $(BASE_TOOLS_PATH)\Source\Python\Common\EdkIIWorkspace.py \
43 $(BASE_TOOLS_PATH)\Source\Python\Common\EdkIIWorkspaceBuild.py \
44 $(BASE_TOOLS_PATH)\Source\Python\Common\EdkLogger.py \
45 $(BASE_TOOLS_PATH)\Source\Python\Common\Expression.py \
    [all...]
  /external/libchrome/base/
bit_cast.h 2 // Use of this source code is governed by a BSD-style license that can be
14 // bit_cast<Dest,Source> is a template function that implements the equivalent
15 // of "*reinterpret_cast<Dest*>(&source)". We need this in very low-level
62 template <class Dest, class Source>
63 inline Dest bit_cast(const Source& source) {
64 static_assert(sizeof(Dest) == sizeof(Source),
65 "bit_cast requires source and destination to be the same size");
75 static_assert(std::is_trivially_copyable<Source>::value,
81 static_assert(__is_trivially_copyable(Source),
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EfiCommonLib/
EfiCopyMem.c 19 out into its own source file so that it can be excluded from a
30 IN VOID *Source,
37 Copy Length bytes from Source to Destination.
43 Source - Place to copy from
56 if (Source < Destination) {
58 Source8 = (CHAR8 *) Source + Length - 1;
64 Source8 = (CHAR8 *) 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
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/nios2/
break.s 0 # Source file used to test the 20-bit break instructions
bret.s 0 # Source file used to test the bret instructions
ret.s 0 # Source file used to test the ret instructions
sync.s 0 # Source file used to test the sync instructions
tret.s 0 # Source file used to test the ret instructions
  /external/libtextclassifier/util/base/
casts.h 2 * Copyright (C) 2017 The Android Open Source Project
24 // lang_id_bit_cast<Dest,Source> is a template function that implements the
25 // equivalent of "*reinterpret_cast<Dest*>(&source)". We need this in
75 // WARNING: if Dest or Source is a non-POD type, the result of the memcpy
83 template <class Dest, class Source>
84 inline Dest bit_cast(const Source &source) {
85 static_assert(sizeof(Dest) == sizeof(Source), "Sizes do not match");
88 memcpy(&dest, &source, sizeof(dest));
  /frameworks/compile/libbcc/include/bcc/
BCCContext.h 2 * Copyright 2012, The Android Open Source Project
27 class Source;
42 void addSource(Source &pSource);
43 void removeSource(Source &pSource);
  /external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
SourceTest.java 25 * Unit tests for {@link Source}.
32 final Source s = new Source(new StringReader(src));
39 final Source s = new Source(new StringReader(src));
46 final Source s = new Source(new StringReader(src));
53 final Source s = new Source(new StringReader(src));
62 final Source s = new Source(new StringReader(src))
    [all...]
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/Ebc/
CopyMem.c 26 Copy Length bytes from Source to Destination.
29 @param Source Place to copy from
39 IN CONST VOID *Source,
51 if (Source > Destination) {
53 Source8 = (CONST UINT8*)Source;
57 } else if (Source < Destination) {
59 Source8 = (CONST UINT8*)Source + Length;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/BaseMemoryLib/Ipf/
CopyMem.c 26 Copy Length bytes from Source to Destination.
29 @param Source Place to copy from
39 IN CONST VOID *Source,
51 if (Source > Destination) {
53 Source8 = (CONST UINT8*)Source;
57 } else if (Source < Destination) {
59 Source8 = (CONST UINT8*)Source + Length;
  /frameworks/base/tools/aapt2/
Source.h 2 * Copyright (C) 2015 The Android Open Source Project
33 struct Source {
37 Source() = default;
39 inline Source(const android::StringPiece& path) : path(path.to_string()) { // NOLINT(implicit)
42 inline Source(const android::StringPiece& path, size_t line)
45 inline Source WithLine(size_t line) const { return Source(path, line); }
52 inline ::std::ostream& operator<<(::std::ostream& out, const Source& source) {
53 out << source.path
    [all...]
  /frameworks/base/tools/aapt2/java/
ProguardRules.h 2 * Copyright (C) 2015 The Android Open Source Project
26 #include "Source.h"
34 inline void AddClass(const Source& source, const std::string& class_name) {
35 keep_set_[class_name].insert(source);
38 inline void AddMethod(const Source& source, const std::string& method_name) {
39 keep_method_set_[method_name].insert(source);
45 std::map<std::string, std::set<Source>> keep_set_;
46 std::map<std::string, std::set<Source>> keep_method_set_
    [all...]
  /external/libcxx/test/libcxx/experimental/filesystem/class.path/path.req/
is_pathable.pass.cpp 6 // Source Licenses. See LICENSE.TXT for details.
18 // `Source` shall be one of:
40 template <class Source>
41 Identity<Source> CheckSourceType(Source const&);
50 template <class Source>
52 CheckPass<Source&, Source>::value &&
53 CheckPass<Source const&, Source>::value &
    [all...]
  /frameworks/compile/libbcc/lib/
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
79 template <class Dest, class Source>
80 inline Dest bit_cast(const Source& source) {
81 // Compile time assertion: sizeof(Dest) == sizeof(Source)
82 // A compile error here means your Dest and Source have different sizes.
83 static_assert(sizeof(Dest) == sizeof(Source), "sizes should be equal");
85 memcpy(&dest, &source, sizeof(dest));
91 template <typename Dest, typename Source>
92 inline Dest dchecked_integral_cast(const Source source)
    [all...]

Completed in 1088 milliseconds

1 2 3 4 5 6 7 8 91011>>