/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/regex/ |
H A D | AnyPathTest.java | 22 import static com.google.i18n.phonenumbers.metadata.regex.AnyPath.SINGLE; 34 assertPath(SINGLE, 1); in testConstants() 40 assertThat(EMPTY.extend(false)).isEqualTo(SINGLE); in testExtend() 42 // Non-optional extension is the same as joining with SINGLE. in testExtend() 43 assertPath(SINGLE.extend(false), 2); in testExtend() 44 // This is not the same as joining SINGLE.join(OPTIONAL). in testExtend() 45 assertPath(SINGLE.extend(true), 0, 2); in testExtend() 54 assertThat(EMPTY.join(SINGLE)).isEqualTo(SINGLE); in testJoin() 56 assertPath(SINGLE in testJoin() [all...] |
/third_party/ffmpeg/libavfilter/ |
H A D | avf_ahistogram.c | 34 enum DisplayMode { SINGLE, SEPARATE, NB_DMODES }; enumerator 68 { "dmode", "set method to display channels", OFFSET(dmode), AV_OPT_TYPE_INT, {.i64=SINGLE}, 0, NB_DMODES-1, FLAGS, "dmode" }, 69 { "single", "all channels use single histogram", 0, AV_OPT_TYPE_CONST, {.i64=SINGLE}, 0, 0, FLAGS, "dmode" }, 130 s->dchannels = s->dmode == SINGLE ? 1 : inlink->ch_layout.nb_channels; in config_input() 255 uint64_t *achistogram = &s->achistogram[(s->dmode == SINGLE ? 0: c) * w]; in filter_frame() 264 uint64_t *shistogram = &s->shistogram[(s->dmode == SINGLE ? 0: c) * w]; in filter_frame() 278 uint64_t *achistogram = &s->achistogram[(s->dmode == SINGLE ? 0: c) * w]; in filter_frame() 287 uint64_t *shistogram = &s->shistogram[(s->dmode == SINGLE ? 0: c) * w]; in filter_frame() 353 if (s->dmode == SINGLE) { in filter_frame()
|
/third_party/python/Lib/tkinter/ |
H A D | constants.py | 84 SINGLE='single' variable
|
/third_party/skia/third_party/externals/angle2/src/tests/perf_tests/ |
H A D | UniformsPerf.cpp | 47 SINGLE, enumerator 77 ProgramMode programMode = ProgramMode::SINGLE; 475 ProgramMode programMode = ProgramMode::SINGLE) in VectorUniforms()
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/regex/ |
H A D | AnyPath.java | 43 public static final AnyPath SINGLE = of(0x2); field in AnyPath
|
H A D | EdgeWriter.java | 178 path = path.join(edge.isOptional() ? AnyPath.OPTIONAL : AnyPath.SINGLE); in visit()
|
/third_party/rust/crates/clap/src/builder/ |
H A D | range.rs | 16 pub const SINGLE: Self = Self { consts 115 Self::SINGLE in default()
|
H A D | debug_asserts.rs | 789 if num_vals == ValueRange::SINGLE { in assert_arg()
|
/third_party/ffmpeg/libavcodec/ |
H A D | atrac3.c | 60 #define SINGLE 0x2 macro 895 q->coding_mode = SINGLE; in atrac3_decode_init() 912 q->coding_mode = q->coding_mode ? JOINT_STEREO : SINGLE; in atrac3_decode_init() 956 if (q->coding_mode == SINGLE) in atrac3_decode_init()
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/finitestatematcher/ |
H A D | OpCode.java | 84 SINGLE(1) { enum constant
|
/third_party/skia/include/core/ |
H A D | HMSymbol.h | 114 SINGLE = 0,
|
/third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/finitestatematcher/compiler/ |
H A D | MatcherCompilerTest.java | 110 return (byte) ((OpCode.SINGLE.ordinal() << 5) | value); in single()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/breakiter/ |
H A D | LSTMBreakEngine.java | 41 SINGLE, enum constant 406 current == LSTMClass.SINGLE.ordinal()) { in divideUpDictionaryRange()
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/units/ |
H A D | MeasureUnitImpl.java | 24 * The complexity, either SINGLE, COMPOUND, or MIXED. 26 private MeasureUnit.Complexity complexity = MeasureUnit.Complexity.SINGLE; 191 if (this.singleUnits.size() > 1 && this.complexity == MeasureUnit.Complexity.SINGLE) { in appendSingleUnit()
|
H A D | ConversionRates.java | 129 if (measureUnitImpl.getComplexity() != MeasureUnit.Complexity.SINGLE) return false; in checkSimpleUnit()
|
/third_party/icu/icu4c/source/common/ |
H A D | lstmbe.cpp | 350 SINGLE 738 if (current == BEGIN || current == SINGLE) {
|
/third_party/node/deps/icu-small/source/common/ |
H A D | lstmbe.cpp | 350 SINGLE 738 if (current == BEGIN || current == SINGLE) {
|
/third_party/libphonenumber/metadata/src/main/java/com/google/i18n/phonenumbers/metadata/finitestatematcher/compiler/ |
H A D | Operation.java | 257 return OpCode.SINGLE; in getOpCode()
|
/third_party/rust/crates/clap/clap_complete_fig/src/ |
H A D | fig.rs | 372 if num_args != builder::ValueRange::EMPTY && num_args != builder::ValueRange::SINGLE { in gen_args()
|
/third_party/python/Tools/unittestgui/ |
H A D | unittestgui.py | 349 selectmode=tk.SINGLE,
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
H A D | MeasureUnitTest.java | 4535 assertEquals(identifier + ": Complexity", MeasureUnit.Complexity.SINGLE, singleMeasureUnit.getComplexity()); in verifySingleUnit() 4580 assertEquals("mu1 initial complexity", MeasureUnit.Complexity.SINGLE, mu1.getComplexity()); in TestInternalMeasureUnitImpl() 4588 assertEquals("mu1 post-build complexity", MeasureUnit.Complexity.SINGLE, mu1.getComplexity()); in TestInternalMeasureUnitImpl() 4603 assertEquals("append meter twice: complexity", MeasureUnit.Complexity.SINGLE, m2.getComplexity()); in TestInternalMeasureUnitImpl() 4617 assertEquals("meter-square-meter: complexity", MeasureUnit.Complexity.SINGLE, m2m.getComplexity()); in TestInternalMeasureUnitImpl() 4648 MeasureUnit.Complexity.SINGLE, in verifyCompoundUnit()
|
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/binding_model/ |
H A D | vktBindingDescriptorBufferTests.cpp | 192 SINGLE, // basic quick check for descriptor/shader combinations member in vkt::BindingModel::__anon27822::TestVariant 361 case TestVariant::SINGLE: in isAccelerationStructureObligatory() 635 if ((params.variant == TestVariant::SINGLE) || in getCaseNameUpdateHash() 915 if ((params.variant == TestVariant::SINGLE) || 1272 if ((m_params.variant == TestVariant::SINGLE) || 5268 params.variant = TestVariant::SINGLE;
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/binding_model/ |
H A D | vktBindingDescriptorBufferTests.cpp | 192 SINGLE, // basic sanity check for descriptor/shader combinations member in vkt::BindingModel::__anon29074::TestVariant 360 case TestVariant::SINGLE: in isAccelerationStructureObligatory() 634 if ((params.variant == TestVariant::SINGLE) || in getCaseNameUpdateHash() 914 if ((params.variant == TestVariant::SINGLE) || 1272 if ((m_params.variant == TestVariant::SINGLE) || 5226 params.variant = TestVariant::SINGLE;
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
H A D | MeasureUnit.java | 79 * <li>SINGLE: A single unit, optionally with a power and/or SI or binary prefix. 97 SINGLE, enum constant 470 * Creates a MeasureUnit which is this SINGLE unit augmented with the specified prefix. 476 * NOTE: Only works on SINGLE units. If this is a COMPOUND or MIXED unit, an error will 480 * @return A new SINGLE unit. 491 * Returns the current SI or binary prefix of this SINGLE unit. For example, 494 * NOTE: Only works on SINGLE units. If this is a COMPOUND or MIXED unit, an 497 * @return The prefix of this SINGLE unit, from MeasurePrefix. 509 * NOTE: Only works on SINGLE units. If this is a COMPOUND or MIXED unit, an exception will be thrown. 521 * Creates a MeasureUnit which is this SINGLE uni [all...] |
/third_party/skia/src/ports/skia_ohos/ |
H A D | HmSymbolConfig_ohos.cpp | 720 {"monochrome", SymbolRenderingStrategy::SINGLE}, in ParseRenderModes()
|