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

1 2 3 4 5 6 7 8

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRRewriteRuleElementStream.h 31 id single; member in union:__anon14174
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRRewriteRuleElementStream.h 31 id single; member in union:__anon14178
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRRewriteRuleElementStream.h 31 id single; member in union:__anon14182
  /external/curl/docs/cmdline-opts/
gen.pl 102 sub single { subroutine
328 single($f, 0);
336 if(single($f, 1)) {
366 elsif($f eq "single") {
376 print "Usage: gen.pl <mainpage/listhelp/single FILE/protos> [srcdir]\n";
  /external/clang/test/OpenMP/
single_copyprivate_messages.cpp 49 #pragma omp single copyprivate // expected-error {{expected '(' after 'copyprivate'}}
51 #pragma omp single copyprivate( // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
53 #pragma omp single copyprivate() // expected-error {{expected expression}}
55 #pragma omp single copyprivate(k // expected-error {{expected ')'}} expected-note {{to match this '('}}
57 #pragma omp single copyprivate(h, // expected-error {{expected expression}} expected-error {{expected ')'}} expected-note {{to match this '('}}
59 #pragma omp single copyprivate(argc > 0 ? argv[1] : argv[2]) // expected-error {{expected variable name}}
61 #pragma omp single copyprivate(l) // expected-error 2 {{'operator=' is a private member of 'S4'}}
63 #pragma omp single copyprivate(S1) // expected-error {{'S1' does not refer to a value}}
65 #pragma omp single copyprivate(argv[1]) // expected-error {{expected variable name}}
67 #pragma omp single copyprivate(i) // expected-error {{copyprivate variable must be threadprivate or private in the en (…)
189 single(int a, int b) { function
    [all...]
  /external/libese/libese/tests/
bitspec_unittests.cpp 27 } single; member in struct:TestSpec
41 .single = {
80 bs_assign(&byte, kTestSpec.single.bit[bit], 1);
82 EXPECT_EQ(1, bs_get(kTestSpec.single.bit[bit], expected_byte));
90 uint8_t byte = bs_set(0, kTestSpec.single.bit[bit], 1);
92 EXPECT_EQ(1, bs_get(kTestSpec.single.bit[bit], expected_byte));
100 uint8_t byte = bs_set(0xff, kTestSpec.single.bit[bit], 0);
102 EXPECT_EQ(0, bs_get(kTestSpec.single.bit[bit], expected_byte));
111 byte &= bs_clear(kTestSpec.single.bit[bit]);
113 EXPECT_EQ(0, bs_get(kTestSpec.single.bit[bit], expected_byte))
    [all...]
  /external/protobuf/src/google/protobuf/util/internal/
json_stream_parser_test.cc 61 // - single and double quoted strings
96 StringPiece single = json.substr(i, 1); local
97 util::Status result = parser.Parse(single);
260 // - single and double quoted strings
454 // - trailing commas, we support a single trailing comma but no internal commas.
  /device/google/contexthub/firmware/os/inc/
hostIntf.h 62 struct SingleAxisDataPoint single[HOSTINTF_SENSOR_DATA_MAX / sizeof(struct SingleAxisDataPoint)]; member in union:HostIntfDataBuffer::__anon1913::__anon1914::__anon1915
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_main.c 372 boolean single = FALSE; local
386 single = TRUE;
407 if (single)
  /external/tensorflow/tensorflow/core/kernels/
training_ops_gpu.cu.cc 35 Eigen::Sizes<1> single; local
36 var.device(d) -= lr.reshape(single).broadcast(bcast) * grad;
49 Eigen::Sizes<1> single; local
50 var.device(d) -= lr.reshape(single).broadcast(bcast) * grad * accum.rsqrt();
65 Eigen::Sizes<1> single; local
67 accum.device(d) = accum * rho.reshape(single).broadcast(bcast) +
69 rho.reshape(single).broadcast(bcast));
71 (accum_update + epsilon.reshape(single).broadcast(bcast)).sqrt() *
72 (accum + epsilon.reshape(single).broadcast(bcast)).rsqrt() * grad;
73 var.device(d) -= update * lr.reshape(single).broadcast(bcast)
90 Eigen::Sizes<1> single; local
115 Eigen::Sizes<1> single; local
156 Eigen::Sizes<1> single; local
181 Eigen::Sizes<1> single; local
205 Eigen::Sizes<1> single; local
237 Eigen::Sizes<1> single; local
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
BaseAdapterTest.java 131 baseAdapter.setAutofillOptions("single");
132 CharSequence[] single = baseAdapter.getAutofillOptions(); local
133 assertEquals(1, single.length);
134 assertEquals("single", single[0]);
  /external/clang/test/CodeGenCXX/
exceptions.cpp 474 A single; member in struct:test11::C
485 // Construct single.
486 // CHECK-NEXT: [[SINGLE:%.*]] = getelementptr inbounds [[C]], [[C]]* [[THIS]], i32 0, i32 0
487 // CHECK-NEXT: call void @_ZN6test111AC1Ev([[A:%.*]]* [[SINGLE]])
510 // - Next, chain to cleanup for single.
523 // - Next, chain to cleanup for single.
525 // Finally, the cleanup for single.
526 // CHECK: invoke void @_ZN6test111AD1Ev([[A]]* [[SINGLE]])
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/
UTF16Util.java 298 * Extract a single UTF-32 value from a substring.
326 char single = source[offset16]; local
327 if (!isSurrogate(single)) {
328 return single;
334 if (single <= LEAD_SURROGATE_MAX_VALUE) {
337 return single;
341 return getRawSupplementary(single, trail);
344 else { // isTrailSurrogate(single), so
346 return single;
351 return getRawSupplementary(lead, single);
    [all...]
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
UTF16Util.java 294 * Extract a single UTF-32 value from a substring.
322 char single = source[offset16]; local
323 if (!isSurrogate(single)) {
324 return single;
330 if (single <= LEAD_SURROGATE_MAX_VALUE) {
333 return single;
337 return getRawSupplementary(single, trail);
340 else { // isTrailSurrogate(single), so
342 return single;
347 return getRawSupplementary(lead, single);
    [all...]
  /external/clang/test/CodeGen/
2009-01-21-InvalidIterator.c 32 const struct dwarf_fde *single; member in union:object::__anon15788
  /external/valgrind/coregrind/m_ume/
elf.c 170 Bool single; member in struct:mode_req
240 prog_req.single = interp_req.single && prog_req.single;
258 preferred by the hardware. Next, if we only use single-precision
260 (ie single + any ABI combination), we set again the FPU mode to the
262 will only use single-precision instructions, shown by single being
271 (prog_req.single && !prog_req.frdefault))
277 !prog_req.fr1 && !prog_req.single && !prog_req.soft
    [all...]
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/
FrameType.java 39 * have the option of either specifying a type that represents a single object of that class, or
40 * an array of objects (see the {@link #single()} and {@link #array()} constructors). A single
49 * type matches any other type. Note, that this is a more general type than a {@code single(Object)}
70 * For convenience, single and array object-based types are compatible with one another. This
71 * in turn means that Frames with a single object can be accessed as an array with a single entry,
72 * and array based Frames can be accessed as a single object of the array class. For this reason
76 * TODO: This needs to be reworked. An array(int) should not be interchangeable with a single(int),
77 * but rather with a single(int[]). Use ArraySelectFilter for the former
128 public static FrameType single() { method in class:FrameType
137 public static FrameType single(Class<?> clazz) { method in class:FrameType
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
CollectionsTest.java 677 Set single = Collections.singleton(o); local
678 assertEquals("Wrong size", 1, single.size());
679 assertTrue("Contains", single.contains(o));
680 assertFalse("Contains null", single.contains(null));
686 single.add("l");
1960 List single = Collections.singletonList(str); local
1981 Map single = Collections.singletonMap(key, value); local
    [all...]
  /external/e2fsprogs/lib/ext2fs/
icount.c 52 ext2fs_inode_bitmap single; member in struct:ext2_icount
83 if (icount->single)
84 ext2fs_free_inode_bitmap(icount->single);
111 retval = ext2fs_allocate_inode_bitmap(fs, "icount", &icount->single);
507 if (ext2fs_test_inode_bitmap2(icount->single, ino)) {
531 if (ext2fs_test_inode_bitmap2(icount->single, ino)) {
539 ext2fs_unmark_inode_bitmap2(icount->single, ino);
553 * The count was zero; mark the single bitmap
556 ext2fs_mark_inode_bitmap2(icount->single, ino);
588 if (ext2fs_test_inode_bitmap2(icount->single, ino))
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
KeyTypeData.java 35 single, multiple, incremental, any enum constant in enum:KeyTypeData.ValueType
363 // type under the same key. So we use a single
416 h0{"single"}
621 // type under the same key. So we use a single
688 return type == null ? ValueType.single : type;
  /external/icu/android_icu4j/src/main/java/android/icu/text/
TransliteratorIDParser.java 36 * A single ID, which is a basic ID plus optional filter and optional
40 * A compound ID, which is a sequence of one or more single IDs,
161 SingleID single = specsToID(specs, FORWARD); local
162 single.filter = specs.filter;
163 return single;
167 * Parse a single ID, that is, an ID of the general form
213 SingleID single; local
216 single = specsToID(specsA, FORWARD);
217 single.canonID = single.canonID
372 SingleID single = parseSingleID(id, pos, dir); local
393 SingleID single = list.get(i); local
    [all...]
  /external/icu/icu4c/source/i18n/
tridpars.cpp 100 * Parse a single ID, that is, an ID of the general form
149 SingleID* single; local
153 single = specsToID(specsA, FORWARD);
155 if (b == NULL || single == NULL) {
157 delete single;
161 single->canonID.append(OPEN_REV)
164 single->filter = specsA->filter;
169 single = specsToID(specsB, FORWARD);
171 if (a == NULL || single == NULL) {
173 delete single;
229 SingleID* single = specsToID(specs, FORWARD); local
389 SingleID* single = parseSingleID(id, pos, dir, ec); local
413 SingleID* single = (SingleID*) list.elementAt(i); local
489 SingleID* single = (SingleID*) list.elementAt(i); local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/locale/
KeyTypeData.java 33 single, multiple, incremental, any enum constant in enum:KeyTypeData.ValueType
361 // type under the same key. So we use a single
414 h0{"single"}
619 // type under the same key. So we use a single
686 return type == null ? ValueType.single : type;
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
TransliteratorIDParser.java 35 * A single ID, which is a basic ID plus optional filter and optional
39 * A compound ID, which is a sequence of one or more single IDs,
160 SingleID single = specsToID(specs, FORWARD); local
161 single.filter = specs.filter;
162 return single;
166 * Parse a single ID, that is, an ID of the general form
212 SingleID single; local
215 single = specsToID(specsA, FORWARD);
216 single.canonID = single.canonID
371 SingleID single = parseSingleID(id, pos, dir); local
392 SingleID single = list.get(i); local
    [all...]
  /external/pcre/pcrecpp/
pcrecpp_unittest.cc 215 const char *single; member in struct:ReplaceTest
341 CHECK_EQ(one, t->single);
847 // Single-arg
    [all...]

Completed in 856 milliseconds

1 2 3 4 5 6 7 8