/aosp_15_r20/libcore/ojluni/annotations/sdk/nullability/java/util/ |
H A D | Arrays.annotated.java | 114 …t(T @libcore.util.NonNull [] a, @libcore.util.Nullable java.util.Comparator<? super @libcore.util.… in sort() 116 … a, int fromIndex, int toIndex, @libcore.util.Nullable java.util.Comparator<? super @libcore.util.… in sort() 166 …e.util.NullFromTypeParam T key, @libcore.util.Nullable java.util.Comparator<? super @libcore.util.… in binarySearch() 168 …e.util.NullFromTypeParam T key, @libcore.util.Nullable java.util.Comparator<? super @libcore.util.… in binarySearch() 210 public static void fill(long @libcore.util.NonNull [] a, long val) { throw new RuntimeException("St… in fill() 212 public static void fill(long @libcore.util.NonNull [] a, int fromIndex, int toIndex, long val) { th… in fill() 214 public static void fill(int @libcore.util.NonNull [] a, int val) { throw new RuntimeException("Stub… in fill() 216 public static void fill(int @libcore.util.NonNull [] a, int fromIndex, int toIndex, int val) { thro… in fill() 218 public static void fill(short @libcore.util.NonNull [] a, short val) { throw new RuntimeException("… in fill() 220 public static void fill(short @libcore.util.NonNull [] a, int fromIndex, int toIndex, short val) { … in fill() [all …]
|
/aosp_15_r20/system/tools/aidl/tests/golden_output/tests/trunk_stable_test/android.aidl.test.trunk-V2-cpp-source/gen/include/android/aidl/test/trunk/ |
D | ITrunkStableTest.h | 33 #define __assert2(a,b,c,d) ((void)0) argument 52 int32_t c = 0; variable 99 c = 2, enumerator 104 static const inline Tag c = Tag::c; variable 399 [[nodiscard]] static inline std::string toString(ITrunkStableTest::MyEnum val) { in toString() 435 [[nodiscard]] static inline std::string toString(ITrunkStableTest::MyUnion::Tag val) { in toString()
|
/aosp_15_r20/system/tools/aidl/tests/golden_output/frozen/tests/trunk_stable_test/android.aidl.test.trunk-V2-cpp-source/gen/include/android/aidl/test/trunk/ |
D | ITrunkStableTest.h | 33 #define __assert2(a,b,c,d) ((void)0) argument 52 int32_t c = 0; variable 99 c = 2, enumerator 104 static const inline Tag c = Tag::c; variable 399 [[nodiscard]] static inline std::string toString(ITrunkStableTest::MyEnum val) { in toString() 435 [[nodiscard]] static inline std::string toString(ITrunkStableTest::MyUnion::Tag val) { in toString()
|
/aosp_15_r20/external/lzma/CPP/7zip/Archive/Nsis/ |
H A D | NsisIn.cpp | 514 unsigned c = Get16(sz); in AddLicense() local 662 #define IS_NS_SPEC_CHAR(c) ((c) >= NS_CODE_SKIP) argument 663 #define IS_PARK_SPEC_CHAR(c) ((c) >= PARK_CODE_SKIP && (c) <= PARK_CODE_LANG) argument 675 unsigned c = (Byte)(*p8++); in AreStringsEqual_16and8() local 745 wchar_t c = Get16(p + i * 2); in GetShellString() local 814 Byte c = *s++; in GetNsisString_Raw() local 849 Byte c = *s++; in GetNsisString_Raw() local 887 Byte c = *s++; in GetNsisString() local 976 unsigned c = Get16(p); in GetNsisString_Unicode_Raw() local 1020 unsigned c = Get16(p); in GetNsisString_Unicode_Raw() local [all …]
|
/aosp_15_r20/external/libxml2/ |
H A D | entities.c | 218 int c = predef->content[0]; in xmlAddEntity() local 516 xmlSerializeHexCharRef(char *buf, int val) { in xmlSerializeHexCharRef() 553 xmlSerializeDecCharRef(char *buf, int val) { in xmlSerializeDecCharRef() 616 int c; in xmlEscapeText() local 674 int val; in xmlEscapeText() local
|
/aosp_15_r20/external/dnsmasq/src/ |
H A D | option.c | 31 int val; member 371 unsigned char val, size; member 478 static char hide_meta(char c) { in hide_meta() 488 unsigned int c = cr; in unhide_meta() local 529 static char* split_chr(char* s, char c) { in split_chr() 606 int val; in do_usage() member 713 char c; in parse_dhcp_opt() local 761 int i, val = atoi(comma); in parse_dhcp_opt() local
|
/aosp_15_r20/hardware/google/gfxstream/third-party/astc-encoder/Source/ |
D | tinyexr.h | 2418 #define TINFL_MEMSET(p, c, l) memset(p, c, l) argument 2445 #define TINFL_GET_BYTE(state_index, c) \ argument 4125 mz_uint8 c = *pSrc++; in tdefl_compress_normal() local 4137 mz_uint8 c = *pSrc++; in tdefl_compress_normal() local 4169 mz_uint8 c = d->m_dict[(cur_pos - 1) & TDEFL_LZ_DICT_SIZE_MASK]; in tdefl_compress_normal() local 4514 mz_uint32 c; in tdefl_write_image_to_png_file_in_memory_ex() local 4722 #define MZ_TOLOWER(c) ((((c) >= 'A') && ((c) <= 'Z')) ? ((c) - 'A' + 'a') : (c)) argument 7041 static void swap2(unsigned short *val) { in swap2() 7100 static void swap4(unsigned int *val) { in swap4() 7131 static void swap8(tinyexr::tinyexr_uint64 *val) { in swap8() [all …]
|
/aosp_15_r20/external/coreboot/util/msrtool/ |
H A D | msrutils.c | 26 static void print_bitval(FILE *f, const struct msrbits *mb, const struct msr val) { in print_bitval() 64 void hexprint(FILE *f, const struct msr val, const uint8_t bits) { in hexprint() 99 void strprint(FILE *f, const struct msr val, const uint8_t bits) { in strprint() 200 struct msr val = MSR1(0); in dumpmsrdefsvals() local 239 char c; in str2msr() local 266 void decodemsr(const uint8_t cpu, const uint32_t addr, const struct msr val) { in decodemsr()
|
/aosp_15_r20/cts/tests/tests/database/src/android/database/sqlite/cts/ |
H A D | DatabaseStatementTest.java | 87 Cursor c = mDatabase.query("test", null, null, null, null, null, null); in testExecuteStatement() local 100 try (Cursor c = mDatabase.rawQuery("PRAGMA busy_timeout;", null)) { in testExecutePragmaStatement() 154 Cursor c = mDatabase.query("test", null, null, null, null, null, null); in testStatementLongBinding() local 176 Cursor c = mDatabase.query("test", null, null, null, null, null, null); in testStatementStringBinding() local 199 Cursor c = mDatabase.query("test", null, null, null, null, null, "ROWID"); in testStatementClearBindings() local 221 Cursor c = mDatabase.query("test", null, null, null, null, null, null); in testSimpleStringBinding() local 228 String val = c.getString(valCol); in testSimpleStringBinding() local 246 Cursor c = mDatabase.query("test", null, null, null, null, null, "ROWID"); in testStatementMultipleBindings() local 281 Cursor c = mDatabase.query("test", null, null, null, null, null, "ROWID"); in run() local 330 Cursor c = mDatabase.query("test", null, null, null, null, null, null); in testStatementConstraint() local
|
/aosp_15_r20/frameworks/base/core/tests/coretests/src/android/database/ |
H A D | DatabaseStatementTest.java | 85 Cursor c = mDatabase.query("test", null, null, null, null, null, null); in testExecuteStatement() local 139 Cursor c = mDatabase.query("test", null, null, null, null, null, null); in testStatementLongBinding() local 161 Cursor c = mDatabase.query("test", null, null, null, null, null, null); in testStatementStringBinding() local 184 Cursor c = mDatabase.query("test", null, null, null, null, null, "ROWID"); in testStatementClearBindings() local 206 Cursor c = mDatabase.query("test", null, null, null, null, null, null); in testSimpleStringBinding() local 213 String val = c.getString(valCol); in testSimpleStringBinding() local 231 Cursor c = mDatabase.query("test", null, null, null, null, null, "ROWID"); in testStatementMultipleBindings() local 266 Cursor c = mDatabase.query("test", null, null, null, null, null, "ROWID"); in run() local 315 Cursor c = mDatabase.query("test", null, null, null, null, null, null); in testStatementConstraint() local
|
/aosp_15_r20/external/jline/ |
HD | jline-1.0.jar | ... arg
java.util.List subCandidates
int i
String val
int i
String buffer
int cursor
java.util. ... |
/aosp_15_r20/external/pytorch/aten/src/ATen/native/cuda/ |
H A D | UpSampleBilinear2d.cu | 69 for (int c = 0; c < channels; ++c) { in upsample_bilinear2d_out_frame() local 70 const accscalar_t val = h0lambda * in upsample_bilinear2d_out_frame() local 100 const int c = index % channels; in upsample_bilinear2d_nhwc_out_frame() local 119 const accscalar_t val = h0lambda * ( in upsample_bilinear2d_nhwc_out_frame() local 215 const int c = index % channels; in upsample_bilinear2d_backward_nhwc_out_frame() local 551 int c = i % channels; in upsample_gen2d_aa_out_frame() local 593 int c = i % channels; in upsample_gen2d_aa_backward_out_frame() local 594 const scalar_t val = odata[n][c][output_y][output_x]; in upsample_gen2d_aa_backward_out_frame() local 652 int c = i % channels; in upsample_gen2d_aa_backward_out_frame() local
|
H A D | DilatedMaxPool2d.cu | 55 int c = (index / pooled_width / pooled_height) % channels; in max_pool_forward_nchw() local 70 scalar_t val = btm_data[h * width + w]; in max_pool_forward_nchw() local 143 for(int c = channel_offset; c < channels; c+= blockDim.x*kernel_stride_C) { in C10_LAUNCH_BOUNDS_1() local 144 scalar_t val = ptr_input[c*in_stride_c]; in C10_LAUNCH_BOUNDS_1() local 157 for(int c = channel_offset; c < channels; c+= blockDim.x*kernel_stride_C) { in C10_LAUNCH_BOUNDS_1() local 192 for (int c = blockIdx.z; c < channels; c+= gridDim.z) { in max_pool_backward_nchw() local 260 for (int c = channel_offset; c < channels; c += blockDim.x*kernel_stride_C) { in C10_LAUNCH_BOUNDS_1() local 271 for (int c = channel_offset; c < channels; c += blockDim.x*kernel_stride_C) { in C10_LAUNCH_BOUNDS_1() local 280 for (int c = channel_offset; c < channels; c += blockDim.x*kernel_stride_C) { in C10_LAUNCH_BOUNDS_1() local
|
/aosp_15_r20/frameworks/base/core/java/com/android/internal/util/ |
H A D | XmlUtils.java | 333 char c = nm.charAt(index + 1); in convertValueToInt() local 373 char c = value.charAt(index + 1); in parseUnsignedIntAttribute() local 403 public static final void writeMapXml(Map val, OutputStream out) in writeMapXml() 425 public static final void writeListXml(List val, OutputStream out) in writeListXml() 450 public static final void writeMapXml(Map val, String name, TypedXmlSerializer out) in writeMapXml() 472 public static final void writeMapXml(Map val, String name, TypedXmlSerializer out, in writeMapXml() 506 public static final void writeMapXml(Map val, TypedXmlSerializer out, in writeMapXml() 535 public static final void writeListXml(List val, String name, TypedXmlSerializer out) in writeListXml() 559 public static final void writeSetXml(Set val, String name, TypedXmlSerializer out) in writeSetXml() 591 public static final void writeByteArrayXml(byte[] val, String name, in writeByteArrayXml() [all …]
|
/aosp_15_r20/external/swiftshader/src/Pipeline/ |
H A D | ShaderCore.cpp | 357 const SIMD::Float c = 5.5835927e-2f; in Exp2() local 376 const SIMD::Float c = -3.0444314e-1f; in Exp2() local 428 const SIMD::Float c = -1.3752135e-1f; in Log2() local 454 const SIMD::Float c = 5.0615534e-8f; in Log2() local 516 std::pair<SIMD::Float, SIMD::Int> Frexp(RValue<SIMD::Float> val) in Frexp() 673 SIMD::Float linearToSRGB(const SIMD::Float &c) in linearToSRGB() 682 SIMD::Float sRGBtoLinear(const SIMD::Float &c) in sRGBtoLinear() 914 Float4 linearToSRGB(const Float4 &c) in linearToSRGB() 923 Float4 sRGBtoLinear(const Float4 &c) in sRGBtoLinear() 932 rr::RValue<SIMD::Float> Sign(const rr::RValue<SIMD::Float> &val) in Sign() [all …]
|
/aosp_15_r20/out/soong/.intermediates/system/hardware/interfaces/media/android.media.audio.common.types-V4-ndk-source/gen/include/aidl/android/media/audio/common/ |
D | AudioPolicyForceUse.h | 31 #define __assert2(a,b,c,d) ((void)0) argument 197 [[nodiscard]] static inline std::string toString(AudioPolicyForceUse::CommunicationDeviceCategory v… in toString() 238 [[nodiscard]] static inline std::string toString(AudioPolicyForceUse::MediaDeviceCategory val) { in toString() 288 [[nodiscard]] static inline std::string toString(AudioPolicyForceUse::DockType val) { in toString() 332 [[nodiscard]] static inline std::string toString(AudioPolicyForceUse::EncodedSurroundConfig val) { in toString() 370 [[nodiscard]] static inline std::string toString(AudioPolicyForceUse::Tag val) { in toString()
|
/aosp_15_r20/out/soong/.intermediates/system/hardware/interfaces/media/android.media.audio.common.types-V4-cpp-source/gen/include/android/media/audio/common/ |
D | AudioPolicyForceUse.h | 26 #define __assert2(a,b,c,d) ((void)0) argument 184 [[nodiscard]] static inline std::string toString(AudioPolicyForceUse::CommunicationDeviceCategory v… in toString() 223 [[nodiscard]] static inline std::string toString(AudioPolicyForceUse::MediaDeviceCategory val) { in toString() 271 [[nodiscard]] static inline std::string toString(AudioPolicyForceUse::DockType val) { in toString() 313 [[nodiscard]] static inline std::string toString(AudioPolicyForceUse::EncodedSurroundConfig val) { in toString() 349 [[nodiscard]] static inline std::string toString(AudioPolicyForceUse::Tag val) { in toString()
|
/aosp_15_r20/art/runtime/interpreter/ |
H A D | interpreter_switch_impl-inl.h | 756 ObjPtr<mirror::Class> c = in CONST_CLASS() local 820 ObjPtr<mirror::Class> c = in CHECK_CAST() local 838 ObjPtr<mirror::Class> c = in INSTANCE_OF() local 864 ObjPtr<mirror::Class> c = in NEW_INSTANCE() local 1099 ObjPtr<mirror::Object> val = GetVRegReference(A()); in APUT_OBJECT() local 1984 void SetVReg(size_t i, int32_t val) { shadow_frame_.SetVReg(i, val); } in SetVReg() 1985 void SetVRegLong(size_t i, int64_t val) { shadow_frame_.SetVRegLong(i, val); } in SetVRegLong() 1986 void SetVRegFloat(size_t i, float val) { shadow_frame_.SetVRegFloat(i, val); } in SetVRegFloat() 1987 void SetVRegDouble(size_t i, double val) { shadow_frame_.SetVRegDouble(i, val); } in SetVRegDouble() 1988 void SetVRegReference(size_t i, ObjPtr<mirror::Object> val) in SetVRegReference()
|
/aosp_15_r20/external/deqp/framework/delibs/decpp/ |
H A D | deStringUtil.cpp | 119 std::string floatToString(float val, int precision) in floatToString() 142 char toUpper(char c) in toUpper() 147 char toLower(char c) in toLower() 152 bool isUpper(char c) in isUpper() 157 bool isLower(char c) in isLower() 162 bool isDigit(char c) in isDigit()
|
/aosp_15_r20/libcore/ojluni/src/main/java/java/lang/ |
H A D | StringUTF16.java | 55 static void putChar(byte[] val, int index, int c) { in putChar() 64 public static char getChar(byte[] val, int index) { in getChar()
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/gensrcs/libcore/ojluni/src/main/java/java/util/logging/ |
D | LogManager.java | 1472 String val = getProperty(name); in getStringProperty() local 1483 String val = getProperty(name); in getIntProperty() local 1498 String val = getProperty(name); in getBooleanProperty() local 1515 String val = getProperty(name); in getLevelProperty() local 1528 String val = getProperty(name); in getFilterProperty() local 1551 String val = getProperty(name); in getFormatterProperty() local 1767 private static Constructor<?> getConstructor(Class<?> c, Class<?>... types) { in getConstructor() 1775 private static Method getMethod(Class<?> c, String name, Class<?>... types) { in getMethod()
|
/aosp_15_r20/out/soong/.intermediates/libcore/core_oj_api_files/gen/23/libcore/ojluni/src/main/java/java/util/logging/ |
D | LogManager.java | 1472 String val = getProperty(name); in getStringProperty() local 1483 String val = getProperty(name); in getIntProperty() local 1498 String val = getProperty(name); in getBooleanProperty() local 1515 String val = getProperty(name); in getLevelProperty() local 1528 String val = getProperty(name); in getFilterProperty() local 1551 String val = getProperty(name); in getFormatterProperty() local 1767 private static Constructor<?> getConstructor(Class<?> c, Class<?>... types) { in getConstructor() 1775 private static Method getMethod(Class<?> c, String name, Class<?>... types) { in getMethod()
|
/aosp_15_r20/libcore/ojluni/src/main/java/java/util/logging/ |
H A D | LogManager.java | 1472 String val = getProperty(name); in getStringProperty() local 1483 String val = getProperty(name); in getIntProperty() local 1498 String val = getProperty(name); in getBooleanProperty() local 1515 String val = getProperty(name); in getLevelProperty() local 1528 String val = getProperty(name); in getFilterProperty() local 1551 String val = getProperty(name); in getFormatterProperty() local 1767 private static Constructor<?> getConstructor(Class<?> c, Class<?>... types) { in getConstructor() 1775 private static Method getMethod(Class<?> c, String name, Class<?>... types) { in getMethod()
|
/aosp_15_r20/external/apache-velocity-engine/velocity-engine-core/src/test/java/org/apache/velocity/test/ |
H A D | SecureIntrospectionTestCase.java | 117 Context c = new VelocityContext(); in doTestMethods() local 142 …private boolean doesStringEvaluate(VelocityEngine ve, Context c, String inputString) throws ParseE… in doesStringEvaluate() 163 public void setProperty(String val) in setProperty() 171 Collection c = new HashSet(); in getCollection() local
|
/aosp_15_r20/external/openthread/src/lib/spinel/ |
H A D | spinel.c | 122 #define require_action(c, l, a) \ argument 133 #define require_action(c, l, a) \ argument 146 #define require(c, l) require_action(c, l, {}) argument 1152 uint32_t val; member 1156 static const char *spinel_to_cstr(const struct spinel_cstr *table, uint32_t val) in spinel_to_cstr() 1692 uint8_t c = 0; in main() local 1745 uint8_t c = 0; in main() local 1812 uint8_t c = 0; in main() local 1865 uint8_t c = 0; in main() local
|