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

1 2

  /external/clang/test/CodeGenCXX/
pr12104.h 1 template <int dimm> struct Patch {
5 const unsigned int Patch<dim>::no_neighbor;
8 f(Patch<1>::no_neighbor);
  /frameworks/av/services/audioflinger/
PatchPanel.h 25 class Patch;
37 /* Create a patch between several source and sink ports */
38 status_t createAudioPatch(const struct audio_patch *patch,
41 /* Release a patch */
51 status_t createPatchConnections(Patch *patch,
53 void clearPatchConnections(Patch *patch);
55 class Patch {
57 Patch(const struct audio_patch *patch)
    [all...]
  /external/libchrome/sandbox/win/src/sidestep/
preamble_patcher.h 42 // the function being patched, we cannot patch it because in the
45 // if you really really need to patch a function like this, it
48 // we cannot patch the function because it may not be long enough
49 // for the jmp instruction we use to inject our patch.
65 static SideStepError Patch(T target_function, T replacement_function,
  /frameworks/base/libs/hwui/
Patch.h 37 // 9-patch structures
40 class Patch {
42 Patch(const float bitmapWidth, const float bitmapHeight,
44 const UvMapper& mapper, const Res_png_9patch* patch);
47 * Returns the size of this patch's mesh in bytes.
69 }; // struct Patch
Patch.cpp 17 #include "Patch.h"
34 uint32_t Patch::getSize() const {
38 Patch::Patch(const float bitmapWidth, const float bitmapHeight,
39 float width, float height, const UvMapper& mapper, const Res_png_9patch* patch)
40 : mColors(patch->getColors()) {
43 const int8_t numColors = patch->numColors;
54 uint32_t xCount = patch->numXDivs;
55 uint32_t yCount = patch->numYDivs;
63 const int32_t* xDivs = patch->getXDivs()
    [all...]
  /art/compiler/optimizing/
optimizing_unit_test.h 107 // Naive patch command: apply a diff to a string.
108 inline std::string Patch(const std::string& original, const diff_t& diff) {
  /frameworks/volley/src/test/java/com/android/volley/mock/
TestRequest.java 158 /** Test example of a PATCH request in the new style. */
159 public static class Patch extends Base {
160 public Patch() {
161 super(Method.PATCH, TEST_URL, null);
165 /** Test example of a PATCH request in the new style with a body. */
166 public static class PatchWithBody extends Patch {
  /external/chromium-trace/catapult/third_party/gsutil/gslib/third_party/storage_apitools/
storage_v1_client.py 123 'Patch': base_api.ApiMethodInfo(
124 http_method=u'PATCH',
125 method_id=u'storage.bucketAccessControls.patch',
204 def Patch(self, request, global_params=None):
205 """Updates an ACL entry on the specified bucket. This method supports patch semantics.
213 config = self.GetMethodConfig('Patch')
286 'Patch': base_api.ApiMethodInfo(
287 http_method=u'PATCH',
288 method_id=u'storage.buckets.patch',
367 def Patch(self, request, global_params=None)
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/apitools/samples/storage_sample/storage/
storage_v1_client.py 99 'Patch': base_api.ApiMethodInfo(
100 http_method=u'PATCH',
101 method_id=u'storage.bucketAccessControls.patch',
180 def Patch(self, request, global_params=None):
181 """Updates an ACL entry on the specified bucket. This method supports patch semantics.
189 config = self.GetMethodConfig('Patch')
262 'Patch': base_api.ApiMethodInfo(
263 http_method=u'PATCH',
264 method_id=u'storage.buckets.patch',
343 def Patch(self, request, global_params=None)
    [all...]
  /external/skia/samplecode/
SamplePatch.cpp 51 class Patch {
53 Patch() { sk_bzero(fPts, sizeof(fPts)); }
54 ~Patch() {}
128 void Patch::draw(SkCanvas* canvas, const SkPaint& paint, int nu, int nv,
209 Patch* patch) {
212 patch->draw(canvas, paint, nu, nv, false, false);
214 patch->draw(canvas, paint, nu, nv, true, false);
216 patch->draw(canvas, paint, nu, nv, false, true);
218 patch->draw(canvas, paint, nu, nv, true, true)
283 Patch patch; variable
    [all...]
  /external/v8/src/arm/
code-stubs-arm.h 111 static void Patch(Code* stub, Mode mode) {
  /external/v8/src/arm64/
code-stubs-arm64.h 124 // We patch the two first instructions of the stub back and forth between an
131 static void Patch(Code* stub, Mode mode) {
132 // We are going to patch the two first instructions of the stub.
  /external/v8/src/mips/
code-stubs-mips.h 142 static void Patch(Code* stub, Mode mode) {
  /external/v8/src/mips64/
code-stubs-mips64.h 143 static void Patch(Code* stub, Mode mode) {
  /external/v8/src/ppc/
code-stubs-ppc.h 129 static void Patch(Code* stub, Mode mode) {
  /external/v8/src/ia32/
code-stubs-ia32.h 172 static void Patch(Code* stub, Mode mode) {
  /external/v8/src/s390/
code-stubs-s390.h 96 // Patch an always taken branch into a NOP branch
153 static void Patch(Code* stub, Mode mode) {
  /external/v8/src/x64/
code-stubs-x64.h 164 static void Patch(Code* stub, Mode mode) {
  /external/v8/src/x87/
code-stubs-x87.h 169 static void Patch(Code* stub, Mode mode) {
  /external/regex-re2/re2/
compile.cc 33 // Returns patch list containing just p.
37 // Caller must not ever use patch list again.
38 static void Patch(Prog::Inst *inst0, PatchList l, uint32 v);
43 // Appends two patch lists and returns result.
49 // Returns patch list containing just p.
67 void PatchList::Patch(Prog::Inst *inst0, PatchList l, uint32 val) {
80 // Appends two patch lists and returns result.
315 PatchList::Patch(inst_, a.end, b.begin); // in case refs to a somewhere
321 PatchList::Patch(inst_, b.end, a.begin);
325 PatchList::Patch(inst_, a.end, b.begin)
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ddk/
ntddsnd.h 255 ULONG Patch;
  /art/patchoat/
patchoat.cc 105 // This function takes an elf file and reads the current patch delta value
153 bool PatchOat::Patch(const std::string& image_location,
273 // Don't patch the OAT, since we just symlinked it. Image still needs patching.
292 LOG(ERROR) << "Failed to patch oat file " << input_oat_file->GetPath();
296 LOG(ERROR) << "Failed to patch image file " << input_image_filename;
654 // Patch dex file int/long arrays which point to ArtFields.
755 bool PatchOat::Patch(File* input_oat, off_t delta, File* output_oat, TimingLogger* timings,
787 t.NewTiming("Patch Oat file");
851 // to patch all absolute addresses, starting with ELF program headers.
    [all...]
  /cts/tests/camera/src/android/hardware/camera2/cts/
AllocationTest.java 171 // TODO: split patch crop window and the application against a particular size into 2 classes
172 public static class Patch {
174 * Create a new {@link Patch} from relative crop coordinates.
187 public Patch(Size size, float xNorm, float yNorm, float wNorm, float hNorm) {
208 * Get the original size used to create this {@link Patch}.
680 new Patch(size, /*x*/0.45f, /*y*/0.45f, /*w*/0.1f, /*h*/0.1f).toRectF())
    [all...]
  /external/autotest/frontend/tko/
models.py 148 class Patch(dbmodels.Model):
149 """Models a patch."""
156 """Metadata for class Patch."""
  /external/clang/lib/Driver/
ToolChains.h 43 /// a hard-coded patch number to those with a hard coded patch number.
52 /// \brief The parsed major, minor, and patch numbers.
53 int Major, Minor, Patch;
58 /// \brief Any textual suffix on the patch number.
65 return isOlderThan(RHS.Major, RHS.Minor, RHS.Patch, RHS.PatchSuffix);
    [all...]

Completed in 1032 milliseconds

1 2