HomeSort by relevance Sort by last modified time
    Searched refs:textValue (Results 1 - 25 of 25) sorted by null

  /developers/build/prebuilts/gradle/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/multidatasetservice/model/
FilledAutofillField.kt 28 var textValue: String? = null
44 textValue = autofillOptions[index].toString()
52 textValue = it.textValue.toString()
59 return textValue == null && dateValue == null && toggleValue == null
FilledAutofillFieldCollection.kt 66 savedAutofillValue?.textValue?.let {
81 savedAutofillValue?.textValue?.let { text ->
  /developers/samples/android/input/autofill/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/multidatasetservice/model/
FilledAutofillField.kt 28 var textValue: String? = null
44 textValue = autofillOptions[index].toString()
52 textValue = it.textValue.toString()
59 return textValue == null && dateValue == null && toggleValue == null
FilledAutofillFieldCollection.kt 66 savedAutofillValue?.textValue?.let {
81 savedAutofillValue?.textValue?.let { text ->
  /external/deqp-deps/SPIRV-Tools/source/
text.cpp 51 bool spvIsValidID(const char* textValue) {
52 const char* c = textValue;
59 return c != textValue;
64 spv_result_t spvTextToLiteral(const char* textValue, spv_literal_t* pLiteral) {
69 const size_t len = strlen(textValue);
73 switch (textValue[index]) {
105 if (len < 2 || textValue[0] != '"' || textValue[len - 1] != '"')
108 for (const char* val = textValue + 1; val != textValue + len - 1; ++val)
    [all...]
assembly_grammar.cpp 39 /// @param[in] textValue word of text to be parsed
46 const char* textValue, uint32_t* pValue) {
47 if (textValue == nullptr) return SPV_ERROR_INVALID_TEXT;
48 size_t text_length = strlen(textValue);
50 const char* text_end = textValue + text_length;
59 const char* begin = textValue; // The left end of the current word.
240 const char* textValue,
242 return spvTextParseMaskOperand(target_env_, operandTable_, type, textValue,
246 const char* textValue,
248 return spvExtInstTableNameLookup(extInstTable_, type, textValue, extInst)
    [all...]
assembly_grammar.h 99 // parsed is defined by the textValue parameter.
101 const char* textValue, uint32_t* pValue) const;
106 spv_result_t lookupExtInst(spv_ext_inst_type_t type, const char* textValue,
text_handler.cpp 157 uint32_t AssemblyContext::spvNamedIdAssignOrGet(const char* textValue) {
160 if (spvtools::utils::ParseNumber(textValue, &id)) {
168 const auto it = named_ids_.find(textValue);
177 named_ids_.emplace(textValue, id);
text_handler.h 134 uint32_t spvNamedIdAssignOrGet(const char* textValue);
  /external/swiftshader/third_party/SPIRV-Tools/source/
text.cpp 51 bool spvIsValidID(const char* textValue) {
52 const char* c = textValue;
59 return c != textValue;
64 spv_result_t spvTextToLiteral(const char* textValue, spv_literal_t* pLiteral) {
69 const size_t len = strlen(textValue);
73 switch (textValue[index]) {
105 if (len < 2 || textValue[0] != '"' || textValue[len - 1] != '"')
108 for (const char* val = textValue + 1; val != textValue + len - 1; ++val)
    [all...]
assembly_grammar.cpp 39 /// @param[in] textValue word of text to be parsed
46 const char* textValue, uint32_t* pValue) {
47 if (textValue == nullptr) return SPV_ERROR_INVALID_TEXT;
48 size_t text_length = strlen(textValue);
50 const char* text_end = textValue + text_length;
59 const char* begin = textValue; // The left end of the current word.
240 const char* textValue,
242 return spvTextParseMaskOperand(target_env_, operandTable_, type, textValue,
246 const char* textValue,
248 return spvExtInstTableNameLookup(extInstTable_, type, textValue, extInst)
    [all...]
assembly_grammar.h 99 // parsed is defined by the textValue parameter.
101 const char* textValue, uint32_t* pValue) const;
106 spv_result_t lookupExtInst(spv_ext_inst_type_t type, const char* textValue,
text_handler.cpp 157 uint32_t AssemblyContext::spvNamedIdAssignOrGet(const char* textValue) {
160 if (spvtools::utils::ParseNumber(textValue, &id)) {
168 const auto it = named_ids_.find(textValue);
177 named_ids_.emplace(textValue, id);
text_handler.h 134 uint32_t spvNamedIdAssignOrGet(const char* textValue);
  /developers/build/prebuilts/gradle/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/model/
FilledAutofillField.java 39 @ColumnInfo(name = "textValue")
55 @Nullable String textValue, @Nullable Long dateValue,
59 mTextValue = textValue;
66 @NonNull String fieldTypeName, @Nullable String textValue, @Nullable Long dateValue) {
67 this(datasetId, fieldTypeName, textValue, dateValue, null);
72 @Nullable String textValue) {
73 this(datasetId, fieldTypeName, textValue, null, null);
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/model/
FilledAutofillField.java 39 @ColumnInfo(name = "textValue")
55 @Nullable String textValue, @Nullable Long dateValue,
59 mTextValue = textValue;
66 @NonNull String fieldTypeName, @Nullable String textValue, @Nullable Long dateValue) {
67 this(datasetId, fieldTypeName, textValue, dateValue, null);
72 @Nullable String textValue) {
73 this(datasetId, fieldTypeName, textValue, null, null);
  /developers/build/prebuilts/gradle/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/
ClientAutofillDataBuilder.java 92 String textValue = null;
101 textValue = autofillValue.getTextValue().toString();
112 hints, partition, textValue, dateValue, toggleValue,
118 @Nullable String textValue, @Nullable Long dateValue, @Nullable Boolean toggleValue,
130 if (textValue != null) {
140 textValue = autofillOptions[listIndex].toString();
154 fieldType.getTypeName(), textValue, dateValue, toggleValue));
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/
ClientAutofillDataBuilder.java 92 String textValue = null;
101 textValue = autofillValue.getTextValue().toString();
112 hints, partition, textValue, dateValue, toggleValue,
118 @Nullable String textValue, @Nullable Long dateValue, @Nullable Boolean toggleValue,
130 if (textValue != null) {
140 textValue = autofillOptions[listIndex].toString();
154 fieldType.getTypeName(), textValue, dateValue, toggleValue));
  /developers/build/prebuilts/gradle/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/adapter/
DatasetAdapter.java 170 String textValue = field.getTextValue();
171 if (textValue != null) {
172 builder.setValue(autofillId, AutofillValue.forText(textValue));
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/adapter/
DatasetAdapter.java 170 String textValue = field.getTextValue();
171 if (textValue != null) {
172 builder.setValue(autofillId, AutofillValue.forText(textValue));
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
ParseRDF.java 648 String textValue = "";
654 textValue += child.getNodeValue();
661 newChild.setValue(textValue);
    [all...]
  /developers/build/prebuilts/gradle/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/app/
CustomVirtualView.kt 82 text = value.textValue
  /developers/samples/android/input/autofill/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/app/
CustomVirtualView.kt 82 text = value.textValue
  /external/guice/extensions/persist/lib/
javassist.jar 
  /external/guice/extensions/struts2/lib/
javassist.jar 

Completed in 680 milliseconds