Home
last modified time | relevance | path

Searched refs:defValue (Results 1 – 25 of 26) sorted by relevance

12

/external/libchrome/base/test/android/javatests/src/org/chromium/base/test/util/
DInMemorySharedPreferences.java40 public String getString(String key, String defValue) { in getString() argument
46 return defValue; in getString()
61 public int getInt(String key, int defValue) { in getInt() argument
67 return defValue; in getInt()
71 public long getLong(String key, long defValue) { in getLong() argument
77 return defValue; in getLong()
81 public float getFloat(String key, float defValue) { in getFloat() argument
87 return defValue; in getFloat()
91 public boolean getBoolean(String key, boolean defValue) { in getBoolean() argument
97 return defValue; in getBoolean()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/introspect/
DBasicBeanDescription.java386 public JsonFormat.Value findExpectedFormat(JsonFormat.Value defValue) in findExpectedFormat() argument
393 if (defValue == null) { in findExpectedFormat()
394 defValue = v; in findExpectedFormat()
396 defValue = defValue.withOverrides(v); in findExpectedFormat()
402 if (defValue == null) { in findExpectedFormat()
403 defValue = v; in findExpectedFormat()
405 defValue = defValue.withOverrides(v); in findExpectedFormat()
408 return defValue; in findExpectedFormat()
451 public JsonInclude.Value findPropertyInclusion(JsonInclude.Value defValue) { in findPropertyInclusion() argument
455 return (defValue == null) ? incl : defValue.withOverrides(incl); in findPropertyInclusion()
[all …]
DAnnotationIntrospectorPair.java374 JsonInclude.Include defValue) in findSerializationInclusion() argument
377 defValue = _secondary.findSerializationInclusion(a, defValue); in findSerializationInclusion()
378 defValue = _primary.findSerializationInclusion(a, defValue); in findSerializationInclusion()
379 return defValue; in findSerializationInclusion()
384 …JsonInclude.Include findSerializationInclusionForContent(Annotated a, JsonInclude.Include defValue) in findSerializationInclusionForContent() argument
387 defValue = _secondary.findSerializationInclusionForContent(a, defValue); in findSerializationInclusionForContent()
388 defValue = _primary.findSerializationInclusionForContent(a, defValue); in findSerializationInclusionForContent()
389 return defValue; in findSerializationInclusionForContent()
/external/pdfium/xfa/fxfa/parser/
Dcxfa_document.cpp497 auto* defValue = pFormNode->JSObject()->GetOrCreateProperty<CXFA_Value>( in CreateDataBinding() local
503 CXFA_Image* image = defValue ? defValue->GetImageIfExists() : nullptr; in CreateDataBinding()
524 wsValue = defValue ? defValue->GetChildValueContent() : WideString(); in CreateDataBinding()
550 wsValue = defValue ? defValue->GetChildValueContent() : WideString(); in CreateDataBinding()
620 wsValue = defValue ? defValue->GetChildValueContent() : WideString(); in CreateDataBinding()
634 wsValue = defValue ? defValue->GetChildValueContent() : WideString(); in CreateDataBinding()
652 FormValueNode_SetChildContent(defValue, wsNormalizeValue, in CreateDataBinding()
654 CXFA_Image* image = defValue ? defValue->GetImageIfExists() : nullptr; in CreateDataBinding()
688 defValue ? defValue->GetExDataIfExists() : nullptr; in CreateDataBinding()
692 FormValueNode_SetChildContent(defValue, wsNormalizeValue, in CreateDataBinding()
[all …]
Dcxfa_node.cpp3052 CXFA_Value* defValue = pChild->GetDefaultValueIfExists(); in ResetData() local
3053 if (defValue) { in ResetData()
3054 wsValue = defValue->GetChildValueContent(); in ResetData()
3083 CXFA_Value* defValue = GetDefaultValueIfExists(); in ResetData() local
3084 if (defValue) in ResetData()
3085 wsValue = defValue->GetChildValueContent(); in ResetData()
/external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/service/
DTerminalManager.java195 public int getIntParameter(String key, int defValue) { in getIntParameter() argument
196 return mPreferences.getInt(key, defValue); in getIntParameter()
199 public String getStringParameter(String key, String defValue) { in getStringParameter() argument
200 return mPreferences.getString(key, defValue); in getStringParameter()
/external/setupcompat/main/java/com/google/android/setupcompat/portal/
DNotificationComponent.java44 public int getIntExtra(String key, int defValue) { in getIntExtra() argument
45 return extraBundle.getInt(key, defValue); in getIntExtra()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/
DBeanDescription.java247 public abstract JsonInclude.Value findPropertyInclusion(JsonInclude.Value defValue); in findPropertyInclusion() argument
256 public abstract JsonFormat.Value findExpectedFormat(JsonFormat.Value defValue); in findExpectedFormat() argument
DAnnotationIntrospector.java855 … public JsonInclude.Include findSerializationInclusion(Annotated a, JsonInclude.Include defValue) { in findSerializationInclusion() argument
856 return defValue; in findSerializationInclusion()
869 …onInclude.Include findSerializationInclusionForContent(Annotated a, JsonInclude.Include defValue) { in findSerializationInclusionForContent() argument
870 return defValue; in findSerializationInclusionForContent()
/external/jackson-databind/src/test/java/com/fasterxml/jackson/databind/deser/jdk/
DJDKScalarsTest.java701 private void _testNullForPrimitiveArrays(Class<?> cls, Object defValue) throws IOException { in _testNullForPrimitiveArrays() argument
702 _testNullForPrimitiveArrays(cls, defValue, true); in _testNullForPrimitiveArrays()
705 private void _testNullForPrimitiveArrays(Class<?> cls, Object defValue, in _testNullForPrimitiveArrays() argument
717 assertEquals(defValue, Array.get(ob, 0)); in _testNullForPrimitiveArrays()
729 assertEquals(defValue, Array.get(ob, 0)); in _testNullForPrimitiveArrays()
/external/llvm/lib/CodeGen/
DSplitKit.h333 VNInfo *defValue(unsigned RegIdx, const VNInfo *ParentVNI, SlotIndex Idx);
DSplitKit.cpp384 VNInfo *SplitEditor::defValue(unsigned RegIdx, in defValue() function in SplitEditor
475 return defValue(RegIdx, ParentVNI, Def); in defFromParent()
1149 defValue(RegIdx, ParentVNI, ParentVNI->def); in finish()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DSplitKit.h369 VNInfo *defValue(unsigned RegIdx, const VNInfo *ParentVNI, SlotIndex Idx,
DSplitKit.cpp456 VNInfo *SplitEditor::defValue(unsigned RegIdx, in defValue() function in SplitEditor
670 return defValue(RegIdx, ParentVNI, Def, false); in defFromParent()
1481 defValue(RegIdx, ParentVNI, ParentVNI->def, true); in finish()
/external/llvm-project/llvm/lib/CodeGen/
DSplitKit.h377 VNInfo *defValue(unsigned RegIdx, const VNInfo *ParentVNI, SlotIndex Idx,
DSplitKit.cpp459 VNInfo *SplitEditor::defValue(unsigned RegIdx, in defValue() function in SplitEditor
682 return defValue(RegIdx, ParentVNI, Def, false); in defFromParent()
1493 defValue(RegIdx, ParentVNI, ParentVNI->def, true); in finish()
/external/libxml2/include/libxml/
DschemasInternals.h261 const xmlChar *defValue; /* The initial value of the value constraint */ member
/external/jackson-core/src/main/java/com/fasterxml/jackson/core/json/
DUTF8DataInputJsonParser.java253 public String getValueAsString(String defValue) throws IOException in getValueAsString() argument
265 return super.getValueAsString(defValue); in getValueAsString()
288 public int getValueAsInt(int defValue) throws IOException in getValueAsInt() argument
303 return super.getValueAsInt(defValue); in getValueAsInt()
DUTF8StreamJsonParser.java357 public String getValueAsString(String defValue) throws IOException in getValueAsString() argument
369 return super.getValueAsString(defValue); in getValueAsString()
394 public int getValueAsInt(int defValue) throws IOException in getValueAsInt() argument
409 return super.getValueAsInt(defValue); in getValueAsInt()
DReaderBasedJsonParser.java354 public final String getValueAsString(String defValue) throws IOException { in getValueAsString() argument
365 return super.getValueAsString(defValue); in getValueAsString()
/external/libxml2/
Dxmlschemas.c537 const xmlChar * defValue; member
7197 const xmlChar *tmpNs = NULL, *tmpName = NULL, *defValue = NULL; in xmlSchemaParseLocalAttribute() local
7287 if (defValue) { in xmlSchemaParseLocalAttribute()
7292 defValue = xmlSchemaGetNodeContent(pctxt, (xmlNodePtr) attr); in xmlSchemaParseLocalAttribute()
7301 if (defValue) { in xmlSchemaParseLocalAttribute()
7306 defValue = xmlSchemaGetNodeContent(pctxt, (xmlNodePtr) attr); in xmlSchemaParseLocalAttribute()
7403 if (defValue != NULL) { in xmlSchemaParseLocalAttribute()
7404 attrDecl->defValue = defValue; in xmlSchemaParseLocalAttribute()
7437 if (defValue != NULL) in xmlSchemaParseLocalAttribute()
7438 use->defValue = defValue; in xmlSchemaParseLocalAttribute()
[all …]
/external/libxml2/os400/libxmlrpg/
DschemasInternals.rpgle366 d defValue * const xmlChar *
/external/guice/extensions/struts2/lib/
Dfreemarker-2.3.16.jarMETA-INF/ META-INF/MANIFEST.MF freemarker/ freemarker/cache/ freemarker/ ...
Dant-1.6.5.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...
/external/jarjar/lib/
Dapache-ant-1.9.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/ ...

12