HomeSort by relevance Sort by last modified time
    Searched refs:old (Results 351 - 375 of 1113) sorted by null

<<11121314151617181920>>

  /build/blueprint/parser/
parser.go 225 if old, local := p.scope.Get(assignment.Name); old == nil {
229 } else if old.Referenced {
232 val, err := p.evaluateOperator(old.Value, assignment.Value, '+', assignment.EqualsPos)
236 old.Value = val
616 if old, ok := s.vars[assignment.Name]; ok {
617 return fmt.Errorf("variable already set, previous assignment: %s", old)
620 if old, ok := s.inheritedVars[assignment.Name]; ok {
621 return fmt.Errorf("variable already set in inherited scope, previous assignment: %s", old)
  /external/python/setuptools/setuptools/
dist.py 725 old = getattr(self, name)
730 if old is not None and not isinstance(old, sequence):
734 elif old:
735 setattr(self, name, [item for item in old if item not in value])
745 old = getattr(self, name)
750 if old is None:
752 elif not isinstance(old, sequence):
757 new = [item for item in value if item not in old]
758 setattr(self, name, old + new
    [all...]
  /external/syzkaller/tools/syz-benchcmp/
benchcmp.go 5 // First, run syz-manager with -bench=old flag.
7 // Then, run syz-benchcmp old new.
175 old := lastNonZero(0)
177 fmt.Printf("%-12v%16v%16v%+16d\n", g.Name, old, new, int64(new-old))
  /frameworks/av/media/libaudioclient/
AudioTrackShared.cpp 276 int32_t old = android_atomic_and(~CBLK_FUTEX_WAKE, &cblk->mFutex); local
277 if (!(old & CBLK_FUTEX_WAKE)) {
284 mClientInServer ? FUTEX_WAIT_PRIVATE : FUTEX_WAIT, old & ~CBLK_FUTEX_WAKE, ts);
534 int32_t old = android_atomic_and(~CBLK_FUTEX_WAKE, &cblk->mFutex); local
535 if (!(old & CBLK_FUTEX_WAKE)) {
538 mClientInServer ? FUTEX_WAIT_PRIVATE : FUTEX_WAIT, old & ~CBLK_FUTEX_WAKE, ts);
709 int32_t old = android_atomic_or(CBLK_FUTEX_WAKE, &cblk->mFutex); local
710 if (!(old & CBLK_FUTEX_WAKE)) {
879 int32_t old = android_atomic_or(CBLK_FUTEX_WAKE, &cblk->mFutex); local
944 bool old = local
    [all...]
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
Descriptors.java 2320 final GenericDescriptor old = descriptorsByName.put(fullName, descriptor); local
2394 final GenericDescriptor old = local
2439 final FieldDescriptor old = fieldsByNumber.put(key, field); local
2458 final EnumValueDescriptor old = enumValuesByNumber.put(key, value); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
signalmodule.c 455 struct itimerval new, old; local
463 if (setitimer(which, &new, &old) != 0) {
468 return itimer_retval(&old);
479 Returns old values as a tuple: (delay, interval).");
488 struct itimerval old; local
493 if (getitimer(which, &old) != 0) {
498 return itimer_retval(&old);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
signalmodule.c 447 struct itimerval new, old; local
455 if (setitimer(which, &new, &old) != 0) {
460 return itimer_retval(&old);
471 Returns old values as a tuple: (delay, interval).");
480 struct itimerval old; local
485 if (getitimer(which, &old) != 0) {
490 return itimer_retval(&old);
  /external/e2fsprogs/lib/ext2fs/
alloc.c 334 errcode_t (**old)(ext2_filsys fs,
341 if (old)
342 *old = fs->get_alloc_block;
513 errcode_t (**old)(ext2_filsys fs, int flags, blk64_t goal,
519 if (old)
520 *old = fs->new_range;
  /external/icu/icu4c/source/common/
stringtriebuilder.cpp 328 const UHashElement *old=uhash_find(nodes, newNode); local
329 if(old!=NULL) {
331 return (Node *)old->key.pointer;
353 const UHashElement *old=uhash_find(nodes, &key); local
354 if(old!=NULL) {
355 return (Node *)old->key.pointer;
  /external/python/cpython2/Modules/
signalmodule.c 455 struct itimerval new, old; local
463 if (setitimer(which, &new, &old) != 0) {
468 return itimer_retval(&old);
479 Returns old values as a tuple: (delay, interval).");
488 struct itimerval old; local
493 if (getitimer(which, &old) != 0) {
498 return itimer_retval(&old);
  /external/u-boot/include/linux/
list.h 106 * list_replace - replace old entry by new one
107 * @old : the element to be replaced
110 * If @old was empty, it will be overwritten.
112 static inline void list_replace(struct list_head *old,
115 new->next = old->next;
117 new->prev = old->prev;
121 static inline void list_replace_init(struct list_head *old,
124 list_replace(old, new);
125 INIT_LIST_HEAD(old);
  /cts/tests/tests/media/src/android/media/cts/
MediaPlayerFlakyNetworkTest.java 212 MediaPlayer old = mMediaPlayer; local
214 if (old != null) {
215 old.release();
  /external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/tree/
BaseTreeAdaptor.as 85 * old=^(nil a b c), new=r yields ^(r a b c)
86 * old=^(a b c), new=r yields ^(r ^(a b c))
91 * old=^(nil a b c), new=^(nil r) yields ^(r a b c)
92 * old=^(a b c), new=^(nil r) yields ^(r ^(a b c))
96 * old=null, new=r yields r
97 * old=null, new=^(nil r) yields ^(nil r)
  /external/clang/include/clang/Sema/
SemaInternal.h 78 SourceLocation &old = SemaRef.UndefinedButUsed[Var->getCanonicalDecl()]; local
79 if (old.isInvalid())
80 old = Loc;
  /external/cldr/tools/java/org/unicode/cldr/draft/
Typology.java 123 T old = cache.get(list); local
124 if (old != null) return old;
  /external/cldr/tools/java/org/unicode/cldr/tool/
GetDescriptions.java 213 "|Highland|Isthmus|Low|Lower|Lowland|Middle|Northeastern|Northwestern|Old|Plains|Southeastern|Southwestern|Straits|Upper|Valley"
234 String old = items.get(newPartNoComment); local
235 if (old != null) {
236 commas.println(commaCount++ + "\t" + type + "\t" + code + "\t" + part + "\t@DUPLICATES\t" + old);
  /external/selinux/libsepol/cil/test/unit/
CuTest.c 43 char* CuStrCopy(const char* old)
45 int len = strlen(old);
47 strcpy(newStr, old);
  /external/tensorflow/tensorflow/core/lib/gtl/
flatrep.h 235 Bucket* old = array_; local
238 CopyEntries(old, old_end, MoveEntry());
239 delete[] old;
  /external/webrtc/webrtc/base/
scoped_ptr.h 223 // should update the stored pointer before deleting its old value.
235 T* old = data_.ptr; local
237 if (old != nullptr)
238 static_cast<D&>(data_)(old);
  /build/kati/testcase/
parse_benchcmp.go 97 runBenchtest("bench-old.out")
107 run("benchcmp", "bench-old.out", "bench-new.out")
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
llex.c 149 int old = ls->current; local
152 if (currIsNewline(ls) && ls->current != old)
216 char old = ls->decpoint; local
218 buffreplace(ls, old, ls->decpoint); /* try new decimal separator */
  /external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/
ClassGen.java 366 /** Replace given method with new one. If the old one does not exist
369 public void replaceMethod( final Method old, final Method new_ ) {
373 final int i = method_vec.indexOf(old);
382 /** Replace given field with new one. If the old one does not exist
385 public void replaceField( final Field old, final Field new_ ) {
389 final int i = field_vec.indexOf(old);
  /external/boringssl/src/crypto/fipsmodule/bn/
mul.c 422 BN_ULONG old = r[i]; local
423 r[i] = old + c;
424 c = r[i] < old;
536 BN_ULONG old = r[i]; local
537 r[i] = old + c;
538 c = r[i] < old;
763 BN_ULONG old = r[i]; local
764 r[i] = old + c;
765 c = r[i] < old;
  /external/flatbuffers/java/com/google/flatbuffers/
FlatBufferBuilder.java 219 * Doubles the size of the backing {@link ByteBuffer} and copies the old data towards the
224 * @return A new byte buffer with the old data copied copied to it. The data is
276 ByteBuffer old = bb; local
277 bb = growByteBuffer(old, bb_factory);
278 if (old != bb) {
279 bb_factory.releaseByteBuffer(old);
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/locale/
XCldrStub.java 79 Set<V> old = map.get(key); local
80 if (old == null) {
81 map.put(key, old = getInstance());
83 return old;

Completed in 2690 milliseconds

<<11121314151617181920>>