HomeSort by relevance Sort by last modified time
    Searched refs:dup (Results 76 - 100 of 674) sorted by null

1 2 34 5 6 7 8 91011>>

  /prebuilts/misc/common/swig/include/2.0.11/ruby/
rubyiterators.swg 86 virtual ConstIterator *dup() const
88 throw std::invalid_argument("dup not supported");
162 return dup()->advance(n);
167 return dup()->advance(-n);
216 virtual Iterator *dup() const
218 throw std::invalid_argument("dup not supported");
255 return dup()->advance(n);
260 return dup()->advance(-n);
527 ConstIterator *dup() const
568 Iterator *dup() cons
    [all...]
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3rewritestreams.h 92 /// Once a node / subtree has been used in a stream, it must be dup'ed
95 /// If dirty, then next() always returns a dup.
122 /// When constructing trees, sometimes we need to dup a token or AST
123 /// subtree. Dup'ing a token means just creating another AST node
126 void * (*dup) (struct ANTLR3_REWRITE_RULE_ELEMENT_STREAM_struct * stream, void * el); member in struct:ANTLR3_REWRITE_RULE_ELEMENT_STREAM_struct
141 /// must dup the type node, but ID has been added.
143 /// Referencing to a rule result twice is ok; dup entire tree as
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/template/
parameter.rb 11 else name.dup
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
core-extensions.rb 10 dup.here_indent!( chr )
21 dup.here_flow!( chr )
107 str = self.dup
244 return dup if self.size >= len.abs
  /external/antlr/antlr-3.4/runtime/Ruby/test/unit/
test-recognizers.rb 39 @antlr_version = ANTLR3::ANTLR_VERSION.dup
  /external/bison/lib/
fseterr.c 64 fd2 = dup (fd);
  /external/chromium_org/components/nacl/loader/nonsfi/
irt_fdio.cc 27 return CheckErrorWithResult(dup(fd), newfd);
  /external/libhevc/common/arm64/
ihevc_deblk_chroma_horz.s 141 dup v31.8h,w2
142 dup v30.8h,w1
146 dup v28.8h,w1
150 dup v29.8h,w1
ihevc_sao_band_offset_chroma.s 127 dup v31.8b,w6 //band_pos_u
143 dup v29.8b, v30.8b[1] //vdup_n_u8(pi1_sao_offset_u[1])
146 dup v28.8b, v30.8b[2] //vdup_n_u8(pi1_sao_offset_u[2])
149 dup v27.8b, v30.8b[3] //vdup_n_u8(pi1_sao_offset_u[3])
153 dup v26.8b, v30.8b[4] //vdup_n_u8(pi1_sao_offset_u[4])
216 dup v30.8b,w11 //band_pos_v
228 dup v29.8b, v25.8b[1] //vdup_n_u8(pi1_sao_offset_v[1])
231 dup v28.8b, v25.8b[2] //vdup_n_u8(pi1_sao_offset_v[2])
234 dup v27.8b, v25.8b[3] //vdup_n_u8(pi1_sao_offset_v[3])
237 dup v26.8b, v25.8b[4] //vdup_n_u8(pi1_sao_offset_v[4]
    [all...]
ihevc_deblk_luma_horz.s 112 dup v1.8b,w7
116 dup v23.2s,w8 // -3 value
119 dup v24.2s,w10 // -2 value
122 dup v25.2s,w11 // -1 value
125 dup v26.2s,w12 // 0 value
129 dup v27.2s,w9 // 1value
131 dup v28.2s,w2 // 2 value
215 dup v22.2s,w2 // -4 value
225 dup v29.2s,w8 // 3 value
476 dup v30.8b,w6 // duplicating the +tc valu
    [all...]
ihevc_inter_pred_filters_luma_vert_w16inp.s 128 dup v22.4h, v0.4h[0] //coeffabs_0 = vdup_lane_u8(coeffabs, 0)//
129 dup v23.4h, v0.4h[1] //coeffabs_1 = vdup_lane_u8(coeffabs, 1)//
130 dup v24.4h, v0.4h[2] //coeffabs_2 = vdup_lane_u8(coeffabs, 2)//
131 dup v25.4h, v0.4h[3] //coeffabs_3 = vdup_lane_u8(coeffabs, 3)//
132 dup v26.4h, v0.4h[4] //coeffabs_4 = vdup_lane_u8(coeffabs, 4)//
133 dup v27.4h, v0.4h[5] //coeffabs_5 = vdup_lane_u8(coeffabs, 5)//
134 dup v28.4h, v0.4h[6] //coeffabs_6 = vdup_lane_u8(coeffabs, 6)//
135 dup v29.4h, v0.4h[7] //coeffabs_7 = vdup_lane_u8(coeffabs, 7)//
  /frameworks/native/include/ui/
Fence.h 88 int dup() const;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_sets.py 26 self.assertEqual(self.set, self.dup)
29 self.assertEqual(self.set.copy(), self.dup)
33 self.assertEqual(result, self.dup)
37 self.assertEqual(result, self.dup)
41 self.assertEqual(result, self.dup)
45 self.assertEqual(result, self.dup)
69 self.assertEqual(result, self.dup)
92 self.dup = Set(self.values)
103 self.dup = Set(self.values)
120 self.dup = Set(self.values
    [all...]
test_set.py 232 dup = pickle.loads(p)
233 self.assertEqual(self.s, dup, "%s != %s" % (self.s, dup))
237 dup = pickle.loads(p)
238 self.assertEqual(self.s.x, dup.x)
250 dup = copy.deepcopy(s)
251 self.assertNotEqual(id(s), id(dup))
252 for elem in dup:
369 dup = self.s.copy()
370 self.assertEqual(self.s, dup)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_sets.py 26 self.assertEqual(self.set, self.dup)
29 self.assertEqual(self.set.copy(), self.dup)
33 self.assertEqual(result, self.dup)
37 self.assertEqual(result, self.dup)
41 self.assertEqual(result, self.dup)
45 self.assertEqual(result, self.dup)
69 self.assertEqual(result, self.dup)
92 self.dup = Set(self.values)
103 self.dup = Set(self.values)
120 self.dup = Set(self.values
    [all...]
test_set.py 232 dup = pickle.loads(p)
233 self.assertEqual(self.s, dup, "%s != %s" % (self.s, dup))
237 dup = pickle.loads(p)
238 self.assertEqual(self.s.x, dup.x)
250 dup = copy.deepcopy(s)
251 self.assertNotEqual(id(s), id(dup))
252 for elem in dup:
369 dup = self.s.copy()
370 self.assertEqual(self.s, dup)
    [all...]
  /system/extras/tests/cpueater/
daemonize.c 91 close(2); dup(1); /* join stdout and stderr */
  /prebuilts/misc/common/swig/include/2.0.11/d/
dhead.swg 95 auto exception = new object.Exception(tango.stdc.stringz.fromStringz(message).dup);
101 auto exception = new tango.core.Exception.IllegalArgumentException(tango.stdc.stringz.fromStringz(message).dup);
107 auto exception = new tango.core.Exception.IllegalElementException(tango.stdc.stringz.fromStringz(message).dup);
113 auto exception = new tango.core.Exception.IOException(tango.stdc.stringz.fromStringz(message).dup);
119 auto exception = new tango.core.Exception.NoSuchElementException(tango.stdc.stringz.fromStringz(message).dup);
290 // We are effectively dup'ing the string here.
309 // We are effectively dup'ing the string here.
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/proxy/
MethodInterceptorGenerator.java 112 e.dup();
181 e.dup();
185 e.dup();
192 e.dup();
201 e.dup();
  /external/sonivox/arm-wt-22k/misc/
eas_host.c 18 * buffer, the position of the next byte of data to be read, the dup
91 EAS_BOOL dup; member in struct:eas_hw_file_tag
264 file->dup = EAS_FALSE;
637 dupfile->dup = file->dup = EAS_TRUE;
671 if (file1->dup)
694 /* there is only one duplicate, clear the dup flag */
696 dupFile->dup = EAS_FALSE;
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
EmitUtils.java 80 e.dup();
198 e.dup();
227 e.dup();
267 e.dup();
284 e.dup();
348 e.dup();
376 e.dup();
381 e.dup();
410 e.dup();
427 e.dup();
    [all...]
  /bionic/libc/arch-arm64/generic/bionic/
memchr.S 81 dup vrepchr.16b, chrin
84 dup vrepmask.4s, wtmp2
  /external/chromium_org/sandbox/linux/services/
libc_urandom_override.cc 130 int fd = HANDLE_EINTR(dup(base::GetUrandomFD()));
132 PLOG(ERROR) << "dup() failed.";
146 int fd = HANDLE_EINTR(dup(base::GetUrandomFD()));
148 PLOG(ERROR) << "dup() failed.";
  /external/chromium_org/third_party/codesighs/
msdump2symdb.c 372 char* dup = NULL; local
374 dup = strdup(dupMe);
375 if(NULL != dup)
379 trimWhite(dup);
380 slash2bs(dup);
392 inContainer->mObjects[index].mObject = dup;
412 ERROR_REPORT(retval, dup, "Unable to grow object array.");
413 free(dup);
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/testing/
googletest.cc 162 original_stdout_ = dup(1);
177 original_stderr_ = dup(2);

Completed in 748 milliseconds

1 2 34 5 6 7 8 91011>>