HomeSort by relevance Sort by last modified time
    Searched defs:source (Results 126 - 150 of 4045) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/sfntly/cpp/src/test/
open_type_data_test.cc 51 ReadableFontDataPtr source = new ReadableFontData(source_array); local
58 int32_t length = source->CopyTo(destination);
test_utils.cc 44 UChar* source = new UChar[2]; local
46 source[0] = (UChar)uchar;
47 source[1] = 0;
49 source_end = source;
52 (const UChar**)&source_end, source + sizeof(UChar),
57 delete[] source;
66 delete[] source;
  /external/skia/gm/
imagemakewithfilter.cpp 4 * Use of this source code is governed by a BSD-style license that can be
75 sk_sp<SkImage> source = surface->makeImageSnapshot(); variable
83 sk_sp<SkImage> result = source->makeWithFilter(filters[i].get(), subset, clipBound,
86 SkASSERT(source->isTextureBacked() == result->isTextureBacked());
  /external/skia/tools/fiddle/
fiddle_main.h 4 * Use of this source code is governed by a BSD-style license that can be
28 extern SkBitmap source;
49 , source(s)
66 const char* source; member in struct:DrawOptions
  /external/skqp/gm/
imagemakewithfilter.cpp 4 * Use of this source code is governed by a BSD-style license that can be
75 sk_sp<SkImage> source = surface->makeImageSnapshot(); variable
83 sk_sp<SkImage> result = source->makeWithFilter(filters[i].get(), subset, clipBound,
86 SkASSERT(source->isTextureBacked() == result->isTextureBacked());
  /external/skqp/tools/fiddle/
fiddle_main.h 4 * Use of this source code is governed by a BSD-style license that can be
28 extern SkBitmap source;
49 , source(s)
66 const char* source; member in struct:DrawOptions
  /external/tensorflow/tensorflow/compiler/tf2xla/
xla_resource.cc 125 const string& source, xla::ComputationBuilder* builder,
128 << " gradient: " << source; local
130 std::unique_ptr<XlaResource>& gradient = tensor_array_gradients_[source];
180 for (const auto& source : gradient_sources) {
183 GetOrCreateTensorArrayGradient(source, builder, &gradient));
  /external/turbine/java/com/google/turbine/binder/bound/
PackageSourceBoundClass.java 32 private final SourceFile source; field in class:PackageSourceBoundClass
38 SourceFile source) {
42 this.source = source;
78 /** The source file. */
79 public SourceFile source() { method in class:PackageSourceBoundClass
80 return source;
  /external/turbine/java/com/google/turbine/parse/
IteratorLexer.java 29 private final SourceFile source; field in class:IteratorLexer
33 public IteratorLexer(SourceFile source, Iterator<SavedToken> it) {
34 this.source = source;
39 public SourceFile source() { method in class:IteratorLexer
40 return source;
  /external/turbine/java/com/google/turbine/type/
AnnoInfo.java 32 private final SourceFile source; field in class:AnnoInfo
38 SourceFile source, ClassSymbol sym, Anno tree, ImmutableMap<String, Const> values) {
39 this.source = source;
45 /** The annotation's source, for diagnostics. */
46 public SourceFile source() { method in class:AnnoInfo
47 return source;
71 return new AnnoInfo(source, sym, tree, values);
  /external/v8/src/
lookup-cache.h 2 // Use of this source code is governed by a BSD-style license that can be
21 inline int Lookup(Map* source, Name* name);
24 inline void Update(Map* source, Name* name, int result);
34 keys_[i].source = NULL;
40 static inline int Hash(Object* source, Name* name);
44 Map* source; member in struct:v8::internal::DescriptorLookupCache::Key
  /external/webrtc/webrtc/modules/audio_coding/neteq/tools/
rtp_file_source.cc 4 * Use of this source code is governed by a BSD-style license
5 * that can be found in the LICENSE file in the root of the source
8 * be found in the AUTHORS file in the root of the source tree.
30 RtpFileSource* source = new RtpFileSource(); local
31 RTC_CHECK(source->OpenFile(file_name));
32 return source;
  /frameworks/av/media/libaaudio/tests/
test_linear_ramp.cpp 2 * Copyright (C) 2017 The Android Open Source Project
27 const float source[4] = {1.0f, 1.0f, 1.0f, 1.0f }; local
42 AAudio_linearRamp(source, destination, 4, 1, levelFrom, levelTo);
53 AAudio_linearRamp(source, destination, 4, 1, levelFrom, levelTo);
64 AAudio_linearRamp(source, destination, 4, 1, levelFrom, levelTo);
75 const float source[4] = {1.0f, 1.0f, 1.0f, 1.0f }; local
90 AAudio_linearRamp(source, destination, 4, 1, levelFrom, levelTo);
101 AAudio_linearRamp(source, destination, 4, 1, levelFrom, levelTo);
114 //void AAudioConvert_floatToPcm16(const float *source,
119 const float source[] = {12345.6f, 1.0f, 0.5f, 0.1f, 0.0f, -0.1f, -0.5f, -1.0f, -12345.6f} local
137 const int16_t source[] = {kMaxI16, kHalfI16, kTenthI16, 0, local
157 const int16_t source[] = {1, 1, 1, 1, 1, 1, 1, 1}; local
    [all...]
  /frameworks/base/core/java/android/security/
NetworkSecurityPolicy.java 2 * Copyright (c) 2015, The Android Open Source Project
115 ManifestConfigSource source = new ManifestConfigSource(appContext); local
116 return new ApplicationConfig(source);
  /frameworks/base/core/java/android/view/
KeyboardShortcutGroup.java 2 * Copyright (C) 2015 The Android Open Source Project
80 private KeyboardShortcutGroup(Parcel source) {
82 mLabel = source.readCharSequence();
83 source.readTypedList(mItems, KeyboardShortcutInfo.CREATOR);
84 mSystemGroup = source.readInt() == 1;
130 public KeyboardShortcutGroup createFromParcel(Parcel source) {
131 return new KeyboardShortcutGroup(source);
  /frameworks/base/core/tests/benchmarks/src/android/text/
SpannableStringInternalCopyBenchmark.java 2 * Copyright (C) 2013 The Android Open Source Project
38 Spanned source = Html.fromHtml(strBuilder.toString()); local
39 spanned = new SpannedString(source);
  /frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/presentation/
DemoPresentation.java 2 * Copyright (C) 2013 The Android Open Source Project
17 package com.android.accessorydisplay.source.presentation;
20 import com.android.accessorydisplay.source.R;
  /frameworks/base/tools/aapt/
Symbol.h 2 * Copyright (C) 2014 The Android Open Source Project
52 SourcePos source; member in struct:SymbolDefinition
87 , source(src) {
91 return (symbol < rhs.symbol) || (config < rhs.config) || (source < rhs.source);
  /frameworks/support/leanback/src/main/java/androidx/leanback/transition/
ParallaxTransition.java 2 * Copyright (C) 2016 The Android Open Source Project
59 final Parallax source = (Parallax) view.getTag(R.id.lb_parallax_source); local
60 if (source == null) {
68 source.updateValues();
  /libcore/luni/src/test/java/libcore/java/nio/
OldDirectIntBufferTest.java 33 int[] source = { 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }; local
35 intBuffer.put(source, 2, 2);
36 intBuffer.put(source, 4, 2);
OldDirectShortBufferTest.java 33 short[] source = { 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16 }; local
35 shortBuffer.put(source, 2, 2);
36 shortBuffer.put(source, 4, 2);
  /libcore/ojluni/src/main/java/sun/nio/ch/
PipeImpl.java 37 // Source and sink channels
38 private final SourceChannel source; field in class:PipeImpl
47 source = new SourceChannelImpl(sp, sourcefd);
53 public SourceChannel source() { method in class:PipeImpl
54 return source;
  /packages/services/Car/tools/keventreader/client/src/com/android/car/keventreader/
KeypressEvent.java 2 * Copyright (C) 2018 The Android Open Source Project
580 public final String source; field in class:KeypressEvent
596 source = in.readString();
608 dest.writeString(source);
617 return other.source.equals(source) &&
626 return"Event{source = " + source + ", keycode = " + keycode +
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter_ipv4/
ipt_addrtype.h 14 __u16 source; /* source-type mask */ member in struct:ipt_addrtype_info_v1
21 __u16 source; /* source-type mask */ member in struct:ipt_addrtype_info
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
udp.h 23 __be16 source; member in struct:udphdr

Completed in 635 milliseconds

1 2 3 4 56 7 8 91011>>