Searched defs:strings (Results 26 - 50 of 63) sorted by relevance

123

/frameworks/base/wifi/java/android/net/wifi/
H A DWifiEnterpriseConfig.java308 public static final String[] strings = field in class:WifiEnterpriseConfig.Eap
329 public static final String[] strings = {EMPTY_VALUE, "PAP", "MSCHAP", field in class:WifiEnterpriseConfig.Phase2
392 if (!saver.saveValue(EAP_KEY, Eap.strings[mEapMethod])) {
399 String value = convertToQuotedString(prefix + Phase2.strings[mPhase2Method]);
426 mEapMethod = getStringIndex(Eap.strings, eapMethod, Eap.NONE);
435 mPhase2Method = getStringIndex(Phase2.strings, phase2Method, Phase2.NONE);
965 return Eap.strings[mEapMethod] + "_" + Phase2.strings[mPhase2Method];
984 * @param arr array of strings
1067 * are valid indices into {@code Eap.strings[]} an
[all...]
H A DWifiConfiguration.java115 public static final String[] strings = { "NONE", "WPA_PSK", "WPA_EAP", "IEEE8021X", field in class:WifiConfiguration.KeyMgmt
136 public static final String[] strings = { "WPA", "RSN", "OSEN" }; field in class:WifiConfiguration.Protocol
154 public static final String[] strings = { "OPEN", "SHARED", "LEAP" }; field in class:WifiConfiguration.AuthAlgorithm
172 public static final String[] strings = { "NONE", "TKIP", "CCMP" }; field in class:WifiConfiguration.PairwiseCipher
202 public static final String[] strings = field in class:WifiConfiguration.GroupCipher
217 public static final String[] strings = { "current", "disabled", "enabled" }; field in class:WifiConfiguration.Status
1475 if (k < KeyMgmt.strings.length) {
1476 sbuf.append(KeyMgmt.strings[k]);
1486 if (p < Protocol.strings.length) {
1487 sbuf.append(Protocol.strings[
[all...]
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWifiConfigManagerTest.java933 eap = Eap.strings[eapMethod];
937 phase2 = "auth=" + Phase2.strings[phase2Method];
1265 WifiConfiguration.KeyMgmt.strings);
1296 WifiConfiguration.Protocol.strings);
1327 WifiConfiguration.AuthAlgorithm.strings);
1358 WifiConfiguration.PairwiseCipher.strings);
1389 WifiConfiguration.GroupCipher.strings);
1616 private static String makeString(BitSet set, String[] strings) { argument
1620 /* Make sure all set bits are in [0, strings.length) to avoid
1621 * going out of bounds on strings
[all...]
/packages/apps/Calendar/src/com/android/calendar/recurrencepicker/
H A DRecurrencePickerDialog.java336 /** A double array of Strings to hold the 7x5 list of possible strings of the form:
1204 public EndSpinnerAdapter(Context context, ArrayList<CharSequence> strings, argument
1206 super(context, itemResourceId, strings);
1210 mStrings = strings;
1213 // If either date or count strings don't translate well, such that we aren't assured
1215 // the more form-like versions of both strings instead.
1219 // more form-like strings instead.
1227 // the more form-like strings instead.
/frameworks/opt/telephony/src/java/com/android/internal/telephony/imsphone/
H A DImsPhoneCommandInterface.java391 public void invokeOemRilRequestStrings(String[] strings, Message response) { argument
/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipCommandInterface.java392 public void invokeOemRilRequestStrings(String[] strings, Message response) { argument
/frameworks/base/core/jni/
H A Dandroid_opengl_GLES31.cpp887 /* GLuint glCreateShaderProgramv ( GLenum type, GLsizei count, const GLchar *const *strings ) */
890 (JNIEnv *_env, jobject _this, jint type, jobjectArray strings) {
899 if (!strings) {
902 _exceptionMessage = "strings == null";
906 _count = _env->GetArrayLength(strings);
925 _jstrings[i] = (jstring) _env->GetObjectArrayElement(strings, i);
929 _exceptionMessage = "strings == null";
889 android_glCreateShaderProgramv(JNIEnv *_env, jobject _this, jint type, jobjectArray strings) argument
H A Dandroid_opengl_GLES20.cpp4278 const char* strings[] = {nativeString}; local
4279 glShaderSource(shader, 1, strings, 0);
/frameworks/base/tools/aapt/
H A DResourceTable.cpp1371 // Untranslatable strings must only exist in the default [empty] locale
1381 // Don't add untranslatable strings to the localization table; that
1465 // Check whether these strings need valid formats.
2743 // Don't generate symbols for strings without a default localization.
2796 // For all strings...
2800 // Look for strings with no default localization
2892 // Iterate through all data, collecting all values (strings,
2924 // This is a hack to tweak the sorting order of the final strings,
2987 // Now we want to sort the value strings for better locality. This will
2988 // cause the positions of the strings t
3684 prepareFlatten(StringPool* strings, ResourceTable* table, const String8* configTypeName, const ConfigDescription* config) argument
3717 remapStringValue(StringPool* strings) argument
4149 setStrings(const sp<AaptFile>& data, ResStringPool* strings, DefaultKeyedVector<String16, uint32_t>* mappings) argument
[all...]
/frameworks/opt/telephony/src/java/com/android/internal/telephony/
H A DCommandsInterface.java1431 void invokeOemRilRequestStrings(String[] strings, Message response); argument
H A DRIL.java2002 // count strings
2033 // count strings
2103 public void invokeOemRilRequestStrings(String[] strings, Message response) { argument
2109 rr.mParcel.writeStringArray(strings);
2985 String[] strings = (String[]) ret;
2986 length = strings.length;
2990 sb.append(strings[i++]);
2992 sb.append(", ").append(strings[i++]);
3963 String strings[] = (String [])responseStrings(p);
3966 if (strings
[all...]
H A DPhone.java1946 * @param strings The strings to make available as the request data.
1957 public void invokeOemRilRequestStrings(String[] strings, Message response) { argument
1958 mCi.invokeOemRilRequestStrings(strings, response);
/frameworks/opt/telephony/src/java/com/android/internal/telephony/test/
H A DSimulatedCommands.java1441 public void invokeOemRilRequestStrings(String[] strings, Message response) { argument
1444 AsyncResult.forMessage(response).result = strings;
H A DSimulatedCommandsVerifier.java1047 public void invokeOemRilRequestStrings(String[] strings, Message response) { argument
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/mocks/
H A DPhoneMock.java525 public void invokeOemRilRequestStrings(String[] strings, Message response) { argument
/frameworks/support/v8/renderscript/jni/
H A Dandroid_renderscript_RenderScript.cpp234 AutoJavaStringArrayToUTF8(JNIEnv* env, jobjectArray strings, jsize stringsLength) argument
235 : mEnv(env), mStrings(strings), mStringsLength(stringsLength) {
/frameworks/base/libs/androidfw/
H A DResourceTypes.cpp532 // check invariant: styles follow the strings
534 ALOGW("Bad style block: style block starts at %d, before strings at %d\n",
555 const uint16_t* strings = (const uint16_t*)mStrings; local
556 uint16_t* s = const_cast<uint16_t*>(strings);
558 s[i] = dtohs(strings[i]);
704 const uint16_t* strings = (uint16_t*)mStrings; local
705 const uint16_t* str = strings+off;
708 if ((uint32_t)(str+*u16len-strings) < mStringPoolSize) {
709 // Reject malformed (non null-terminated) strings
718 (int)idx, (int)(str+*u16len-strings), (in
721 const uint8_t* strings = (uint8_t*)mStrings; local
805 const uint8_t* strings = (uint8_t*)mStrings; local
[all...]
/frameworks/base/rs/jni/
H A Dandroid_renderscript_RenderScript.cpp271 AutoJavaStringArrayToUTF8(JNIEnv* env, jobjectArray strings, jsize stringsLength) argument
272 : mEnv(env), mStrings(strings), mStringsLength(stringsLength) {
/packages/apps/Calendar/src/com/android/calendar/
H A DDayView.java850 // If we don't have 2-letter day strings, fall back to 1-letter.
2738 private int computeMaxStringWidth(int currentMax, String[] strings, Paint p) { argument
2741 int len = strings.length;
2743 float width = p.measureText(strings[i]);
/frameworks/base/tests/TouchLatency/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/base/tests/UiBench/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/base/tools/layoutlib/bridge/tests/res/testApp/MyApplication/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/compiler/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/extensions/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...
/frameworks/data-binding/gradle/wrapper/
H A Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/gradle/wrapper/ org/gradle/wrapper/Download ...

Completed in 1035 milliseconds

123