Searched refs:base (Results 76 - 100 of 281) sorted by relevance

1234567891011>>

/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
H A DFilterGraph.java21 import androidx.media.filterpacks.base.BranchFilter;
22 import androidx.media.filterpacks.base.FrameSlotSource;
23 import androidx.media.filterpacks.base.FrameSlotTarget;
24 import androidx.media.filterpacks.base.GraphInputSource;
25 import androidx.media.filterpacks.base.GraphOutputTarget;
26 import androidx.media.filterpacks.base.ValueTarget;
27 import androidx.media.filterpacks.base.ValueTarget.ValueListener;
28 import androidx.media.filterpacks.base.VariableSource;
/frameworks/base/tools/localedata/
H A Dextract_icu_data.py80 def pack_language_or_region(inp, base):
88 base = ord(base)
89 first = ord(inp[0]) - base
90 second = ord(inp[1]) - base
91 third = ord(inp[2]) - base
/frameworks/data-binding/compiler/src/main/java/android/databinding/tool/expr/
H A DResourceExpr.java123 String base;
125 base = "@" + mResourceType + "/" + mResourceId;
127 base = "@" + "android:" + mResourceType + "/" + mResourceId;
129 return join(base, computeChildrenKey());
161 String base = getChildCode(0, "1");
163 return resources + ".getFraction(" + resourceName + ", " + base + ", " + pbase +
/frameworks/native/cmds/dumpsys/
H A Ddumpsys.cpp12 #include <android-base/file.h>
13 #include <android-base/stringprintf.h>
14 #include <android-base/unique_fd.h>
34 using android::base::StringPrintf;
35 using android::base::unique_fd;
36 using android::base::WriteFully;
/frameworks/native/opengl/tools/glgen/
H A Dgen150 compareGenerated ../../../../base/core/jni generated/C com_google_android_gles_jni_GLImpl.cpp
151 compareGenerated ../../../../base/opengl/java/com/google/android/gles_jni generated/com/google/android/gles_jni GLImpl.java
155 compareGenerated ../../../../base/opengl/java/javax/microedition/khronos/opengles generated/javax/microedition/khronos/opengles $x
160 compareGenerated ../../../../base/opengl/java/android/opengl generated/android/opengl ${x}.java
161 compareGenerated ../../../../base/core/jni generated/C android_opengl_${x}.cpp
166 compareGenerated ../../../../base/opengl/java/android/opengl generated/android/opengl ${x}.java
/frameworks/base/core/java/android/text/
H A DDynamicLayout.java45 public DynamicLayout(CharSequence base, argument
50 this(base, base, paint, width, align, spacingmult, spacingadd,
57 * that will be updated as the base text is changed.
59 public DynamicLayout(CharSequence base, CharSequence display, argument
64 this(base, display, paint, width, align, spacingmult, spacingadd,
71 * that will be updated as the base text is changed.
75 public DynamicLayout(CharSequence base, CharSequence display, argument
81 this(base, display, paint, width, align, TextDirectionHeuristics.FIRSTSTRONG_LTR,
90 * that will be updated as the base tex
96 DynamicLayout(CharSequence base, CharSequence display, TextPaint paint, int width, Alignment align, TextDirectionHeuristic textDir, float spacingmult, float spacingadd, boolean includepad, int breakStrategy, int hyphenationFrequency, TextUtils.TruncateAt ellipsize, int ellipsizedWidth) argument
[all...]
/frameworks/native/services/sensorservice/
H A Dvec.h303 typedef vbase<TYPE, SIZE> base; typedef in class:android::vec
314 iterator begin() { return base::v; }
315 iterator end() { return base::v + SIZE; }
316 const_iterator begin() const { return base::v; }
317 const_iterator end() const { return base::v + SIZE; }
324 vec(const vec& rhs) : base(rhs) { }
325 vec(const base& rhs) : base(rhs) { }
332 base::operator[](i) = rhs;
342 base
[all...]
/frameworks/base/tools/fonts/
H A Dfontchain_lint.py118 for base, glyph in vs_dict[vs]:
120 emoji_map[(base, vs)] = emoji_map[base]
122 emoji_map[(base, vs)] = glyph
169 for base, vs in sorted(sequences):
170 assert vs in vs_dict and (base, None) in vs_dict[vs], (
171 '<U+%04X, U+%04X> was not found in %s' % (base, vs, font))
389 base = int(sequence[0], 16)
393 text_set.add((base, vs))
395 emoji_set.add((base, v
[all...]
/frameworks/base/core/java/android/animation/
H A DPathKeyframes.java143 int base = (index * NUM_COMPONENTS);
144 int xOffset = base + X_OFFSET;
145 int yOffset = base + Y_OFFSET;
/frameworks/ex/common/tools/
H A Dmake-iana-tld-pattern.py54 self.base=baseLetter
95 output += '%c%c' % (self.base, self.letters[0])
97 output += '%c[' % self.base
/frameworks/native/libs/binder/
H A DIMemory.cpp141 void* const base = realHeap->base(); local
142 if (base == MAP_FAILED)
144 return static_cast<char*>(base) + offset;
150 void* const base = heap!=0 ? heap->base() : MAP_FAILED; local
151 if (base == MAP_FAILED)
153 return static_cast<char*>(base) + offset;
482 ALOGD("hey=%p, heap=%p, count=%d, (fd=%d, base=%p, size=%zu)",
/frameworks/support/
H A DAndroid.mk24 # function uses $(1) instead of LOCAL_PATH as the base.
25 # $(1): the base dir, relative to the root of the source tree.
28 # $(4): a list of subdirs of the base dir.
29 # Returns: a list of paths relative to the base dir.
/frameworks/av/include/media/stagefright/foundation/
H A DABuffer.h36 uint8_t *base() { return (uint8_t *)mData; } function in struct:android::ABuffer
/frameworks/av/media/libstagefright/foundation/
H A DABuffer.cpp55 if (res->base() == NULL) {
/frameworks/base/core/java/android/util/
H A DTypedValue.java214 * Retrieve the base value from a complex data integer. This uses the
282 * conversion involves rounding the base value, and ensuring that a
283 * non-zero base value is at least one pixel in size.
387 * @param base The base value of this fraction. In other words, a
389 * @param pbase The parent base value of this fraction. In other
394 * base value depending on its unit.
396 public static float complexToFraction(int data, float base, float pbase) argument
400 return complexToFloat(data) * base;
411 * @param base Th
420 getFraction(float base, float pbase) argument
[all...]
/frameworks/base/data/sounds/
H A DAudioPackage12.mk8 LOCAL_PATH := frameworks/base/data/sounds
/frameworks/base/media/jni/
H A DAndroid.mk58 frameworks/base/core/jni \
59 frameworks/base/libs/hwui \
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DGLTextureSource.java18 package android.filterpacks.base;
H A DGLTextureTarget.java18 package android.filterpacks.base;
H A DObjectSource.java18 package android.filterpacks.base;
H A DRetargetFilter.java18 package android.filterpacks.base;
/frameworks/base/native/android/
H A Dconfiguration.cpp238 int32_t AConfiguration_match(AConfiguration* base, AConfiguration* requested) { argument
239 return base->match(*requested);
242 int32_t AConfiguration_isBetterThan(AConfiguration* base, AConfiguration* test, argument
244 return base->isBetterThan(*test, requested);
/frameworks/base/packages/Osu/src/com/android/hotspot2/asn1/
H A DAsn1Decoder.java127 private static ByteBuffer peelOff(ByteBuffer base, int length) { argument
128 ByteBuffer copy = base.duplicate();
133 base.position(base.position() + length);
/frameworks/base/packages/SystemUI/
H A DAndroid.mk42 frameworks/base/packages/Keyguard/res \
59 include frameworks/base/packages/SettingsLib/common.mk
/frameworks/base/services/tests/servicestests/
H A DAndroid.mk15 frameworks-base-testutils \

Completed in 2254 milliseconds

1234567891011>>