Home
last modified time | relevance | path

Searched refs:newProps (Results 1 – 8 of 8) sorted by relevance

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/deser/impl/
DUnwrappedPropertyHandler.java35 …ArrayList<SettableBeanProperty> newProps = new ArrayList<SettableBeanProperty>(_properties.size()); in renameAll() local
48 newProps.add(prop); in renameAll()
50 return new UnwrappedPropertyHandler(newProps); in renameAll()
DBeanPropertyMap.java355 ArrayList<SettableBeanProperty> newProps = new ArrayList<SettableBeanProperty>(len); in renameAll() local
362 newProps.add(prop); in renameAll()
365 newProps.add(_rename(prop, transformer)); in renameAll()
369 return new BeanPropertyMap(_caseInsensitive, newProps, _aliasDefs, _locale); in renameAll()
404 ArrayList<SettableBeanProperty> newProps = new ArrayList<SettableBeanProperty>(len); in withoutProperties() local
413 newProps.add(prop); in withoutProperties()
418 return new BeanPropertyMap(_caseInsensitive, newProps, _aliasDefs, _locale); in withoutProperties()
/external/apache-http/src/org/apache/commons/logging/
DLogFactory.java1422 Properties newProps = getProperties(url);
1423 if (newProps != null) {
1426 props = newProps;
1439 String newPriorityStr = newProps.getProperty(PRIORITY_KEY);
1455 props = newProps;
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/std/
DBeanSerializerBase.java566 final BeanPropertyWriter[] newProps = Arrays.copyOf(_props, _props.length); in createContextual() local
567 BeanPropertyWriter bpw = newProps[idPropOrigIndex]; in createContextual()
568 System.arraycopy(newProps, 0, newProps, 1, idPropOrigIndex); in createContextual()
569 newProps[0] = bpw; in createContextual()
579 contextual = contextual.withProperties(newProps, newFiltered); in createContextual()
/external/lzma/CPP/7zip/Archive/7z/
D7zHandlerOut.cpp308 Int32 newData, newProps; in UpdateItems() local
312 RINOK(updateCallback->GetUpdateItemInfo(i, &newData, &newProps, &indexInArchive)); in UpdateItems()
314 ui.NewProps = IntToBool(newProps); in UpdateItems()
/external/lzma/CPP/7zip/UI/Common/
DUpdateCallback.cpp116 Int32 *newData, Int32 *newProps, UInt32 *indexInArchive) in GetUpdateItemInfo() argument
122 if (newProps) *newProps = BoolToInt(up.NewProps); in GetUpdateItemInfo()
/external/lzma/CPP/7zip/Archive/
DXzHandler.cpp1063 Int32 newData, newProps; in UpdateItems() local
1067 RINOK(updateCallback->GetUpdateItemInfo(0, &newData, &newProps, &indexInArchive)); in UpdateItems()
1069 if (IntToBool(newProps)) in UpdateItems()
DIArchive.h405 …STDMETHOD(GetUpdateItemInfo)(UInt32 index, Int32 *newData, Int32 *newProps, UInt32 *indexInArchive…