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

1 2 3 4 5 6 7 8 91011>>

  /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 ->
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_nodetextnodevalue.java 67 String textValue;
72 textValue = textNode.getNodeValue();
73 assertEquals("textNodeValue", "1230 North Ave. Dallas, Texas 98551", textValue);
nodetextnodevalue.java 68 String textValue;
73 textValue = textNode.getNodeValue();
74 assertEquals("nodeTextNodeValueAssert1", "1230 North Ave. Dallas, Texas 98551", textValue);
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/
text.cpp 49 bool spvIsValidID(const char* textValue) {
50 const char* c = textValue;
57 return c != textValue;
62 spv_result_t spvTextToLiteral(const char* textValue, spv_literal_t* pLiteral) {
67 const size_t len = strlen(textValue);
71 switch (textValue[index]) {
103 if (len < 2 || textValue[0] != '"' || textValue[len - 1] != '"')
106 for (const char* val = textValue + 1; val != textValue + len - 1; ++val)
    [all...]
assembly_grammar.cpp 38 /// @param[in] textValue word of text to be parsed
44 const char* textValue, uint32_t* pValue) {
45 if (textValue == nullptr) return SPV_ERROR_INVALID_TEXT;
46 size_t text_length = strlen(textValue);
48 const char* text_end = textValue + text_length;
57 const char* begin = textValue; // The left end of the current word.
221 const char* textValue,
223 return spvTextParseMaskOperand(operandTable_, type, textValue, pValue);
226 const char* textValue,
228 return spvExtInstTableNameLookup(extInstTable_, type, textValue, extInst)
    [all...]
assembly_grammar.h 82 // parsed is defined by the textValue parameter.
84 const char* textValue, uint32_t* pValue) const;
89 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 (spvutils::ParseNumber(textValue, &id)) {
168 const auto it = named_ids_.find(textValue);
177 named_ids_.emplace(textValue, id);
text_handler.h 127 uint32_t spvNamedIdAssignOrGet(const char* textValue);
  /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/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));
  /packages/apps/DocumentsUI/src/com/android/documentsui/inspector/
KeyValueRow.java 78 CharSequence textValue = text.getText();
79 if (textValue instanceof Spannable) {
80 Spannable spn = (Spannable) textValue;
  /packages/services/Telephony/testapps/ImsTestService/src/com/android/phone/testapps/imstestapp/
ImsConfigActivity.java 54 TextView textValue = (TextView) convertView.findViewById(R.id.configValue);
58 textValue.setText(PREFIX_VALUE + configItem.valueString);
60 textValue.setText(PREFIX_VALUE + configItem.value);
  /external/javassist/src/main/javassist/compiler/
Lex.java 24 public String textValue;
89 return currentToken.textValue;
239 token.textValue = tbuf.toString();
452 token.textValue = name;
  /developers/build/prebuilts/gradle/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/model/
FilledAutofillField.java 75 public void setTextValue(CharSequence textValue) {
81 mTextValue = textValue.toString();
FilledAutofillFieldCollection.java 197 String textValue = filledAutofillField.getTextValue();
198 if (textValue != null) {
199 datasetBuilder.setValue(autofillId, AutofillValue.forText(textValue));
  /frameworks/base/core/tests/coretests/src/android/app/activity/
LocalProvider.java 77 private String getInsertCommand(String textValue, int integerValue) {
80 + "VALUES ('" + textValue + "', " + integerValue + ");";
  /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
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/model/
UiClassAttributeNode.java 302 String textValue = text.getText().trim();
303 if (textValue.length() == 0) {
316 javaPackage, textValue);
  /prebuilts/gradle-plugin/com/android/tools/layoutlib/layoutlib-api/26.2.0-alpha16/
layoutlib-api-26.2.0-alpha16.jar 

Completed in 251 milliseconds

1 2 3 4 5 6 7 8 91011>>