HomeSort by relevance Sort by last modified time
    Searched defs:string (Results 751 - 775 of 1699) sorted by null

<<31323334353637383940>>

  /external/proguard/src/proguard/classfile/util/
ClassUtil.java 35 private static final String EMPTY_STRING = "";
91 public static int internalClassVersion(String classVersion)
114 public static String externalClassVersion(int classVersion)
157 public static String internalClassName(String externalClassName)
172 public static String externalFullClassDescription(int accessFlags,
173 String internalClassName)
187 public static String externalClassName(String internalClassName)
205 public static String externalBaseType(String externalArrayType
904 StringBuffer string = new StringBuffer(50); local
980 StringBuffer string = new StringBuffer(50); local
1045 StringBuffer string = new StringBuffer(50); local
    [all...]
  /external/qemu/slirp-android/
misc.c 315 /* Change the string into argv[] */
690 vsprintf_len(string, format, args)
691 char *string;
695 vsprintf(string, format, args);
696 return strlen(string);
701 sprintf_len(char *string, const char *format, ...)
710 char *string; local
713 string = va_arg(args, char *);
716 vsprintf(string, format, args);
717 return strlen(string);
    [all...]
  /external/skia/src/animator/
SkDisplayable.cpp 120 SkString* string; local
121 info->getString(this, &string);
122 info->setString(copy, string);
224 SkString* string; local
225 info->getString(this, &string);
226 if (string->isEmpty() == false)
227 SkDebugf("%s=\"%s\"\t", info->fName, string->c_str());
  /external/smack/src/org/xbill/DNS/
KEYRecord.java 64 public static String
65 string(int type) { method in class:KEYRecord.Protocol
76 value(String s) {
234 value(String s) {
333 String flagString = st.getIdentifier();
337 String protoString = st.getIdentifier();
341 String algString = st.getIdentifier();
Type.java 207 add(int val, String str, Record proto) {
304 * Converts a numeric Type into a String
306 * @return The canonical string representation of the type
309 public static String
310 string(int val) { method in class:Type
315 * Converts a String representation of an Type into its numeric value.
316 * @param s The string representation of the type
321 value(String s, boolean numberok) {
330 * Converts a String representation of an Type into its numeric value
334 value(String s)
    [all...]
  /external/strace/
vsprintf.c 251 FORMAT_TYPE_NONE, /* Just a string part */
317 /* generate full string in tmp[], in reverse order */
403 char *string(char *buf, char *end, const char *s, struct printf_spec spec) function
466 * @fmt: the format string
509 /* Return the current non-format string */
632 * vsnprintf - Format a string and place it in a buffer
635 * @fmt: The format string to use
636 * @args: Arguments for the format string
644 * string is truncated.
708 str = string(str, end, va_arg(args, char *), spec)
    [all...]
  /frameworks/base/core/java/android/util/
TypedValue.java 33 /** The <var>string</var> field holds string data. In addition, if
34 * <var>data</var> is non-zero then it is the string block
35 * index of the string and <var>assetCookie</var> is the set of
36 * assets the string came from. */
159 /** If the value holds a string, this is it. */
160 public CharSequence string; field in class:TypedValue
398 * string value. For example, a color type will be converted to a
399 * string of the form #aarrggbb.
401 * @return CharSequence The coerced string value. If the value i
    [all...]
  /libcore/luni/src/main/native/
libcore_icu_NativeConverter.cpp 38 #include <string.h>
65 std::vector<std::string>& result) {
78 const UnicodeString* string = e.snext(status); local
82 std::string s;
83 string->toUTF8String(s);
84 if (s.find_first_of("+,") == std::string::npos) {
580 std::vector<std::string> aliases;
600 "(Ljava/lang/String;Ljava/lang/String;[Ljava/lang/String;)V")
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/event/
CreateEventDialogFragment.java 56 private static final String TAG = "CreateEventDialogFragment";
60 private static final String KEY_DATE_STRING = "date_string";
61 private static final String KEY_DATE_IN_MILLIS = "date_in_millis";
62 private static final String EVENT_DATE_FORMAT = "%a, %b %d, %Y";
79 private String mDateString;
84 private String mCalendarOwner;
146 .setTitle(R.string.new_event_dialog_label)
148 .setPositiveButton(R.string.create_event_dialog_save,
157 .setNeutralButton(R.string.edit_label,
171 .setNegativeButton(android.R.string.cancel, null
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/list/
SearchFragment.java 44 * Stores the untouched user-entered string that is used to populate the add to contacts
47 private String mAddToContactNumber;
136 public void setAddToContactNumber(String addToContactNumber) {
165 final String number = TextUtils.isEmpty(mAddToContactNumber) ?
169 R.string.add_contact_not_available);
  /packages/apps/Settings/src/com/android/settings/
UserDictionarySettings.java 46 private static final String TAG = "UserDictionarySettings";
48 private static final String[] QUERY_PROJECTION = {
57 private static final String QUERY_SELECTION =
59 private static final String QUERY_SELECTION_ALL_LOCALES =
62 private static final String DELETE_SELECTION_WITH_SHORTCUT = UserDictionary.Words.WORD
64 private static final String DELETE_SELECTION_WITHOUT_SHORTCUT = UserDictionary.Words.WORD
72 protected String mLocale;
77 getActivity().getActionBar().setTitle(R.string.user_dict_settings_title);
92 final String localeFromIntent =
96 final String localeFromArguments
    [all...]
  /packages/apps/Settings/src/com/android/settings/applications/
AppOpsCategory.java 55 String mCurrentPkgName;
338 R.string.app_ops_settings, null, this, RESULT_APP_DETAILS);
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
Memory.java 67 private static final String TAG = "MemorySettings";
69 private static final String TAG_CONFIRM_CLEAR_CACHE = "confirmClearCache";
78 private static String sClickedMountPoint;
144 public void onStorageStateChanged(String path, String oldState, String newState) {
195 null, R.string.storage_title_usb, null, this, 0);
198 R.string.storage_title_usb, -1, null);
242 String state = mStorageManager.getVolumeState(volume.getPath());
259 String action = intent.getAction()
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
UserDictionarySettings.java 54 private static final String[] QUERY_PROJECTION_SHORTCUT_UNSUPPORTED =
56 private static final String[] QUERY_PROJECTION_SHORTCUT_SUPPORTED =
58 private static final String[] QUERY_PROJECTION =
65 private static final String[] ADAPTER_FROM_SHORTCUT_UNSUPPORTED = {
69 private static final String[] ADAPTER_FROM_SHORTCUT_SUPPORTED = {
73 private static final String[] ADAPTER_FROM = IS_SHORTCUT_API_SUPPORTED ?
89 private static final String QUERY_SELECTION =
91 private static final String QUERY_SELECTION_ALL_LOCALES =
94 private static final String DELETE_SELECTION_WITH_SHORTCUT = UserDictionary.Words.WORD
96 private static final String DELETE_SELECTION_WITHOUT_SHORTCUT = UserDictionary.Words.WOR
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
bthsdpdef.h 90 } string; member in union:_SPD_ELEMENT_DATA::__anon48488
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
inspect.py 35 import string namespace
55 __doc__ documentation string
63 __doc__ documentation string
71 __doc__ documentation string
146 __doc__ documentation string
214 co_code string of raw compiled bytecode
231 __doc__ documentation string
269 0. The name (a string).
284 info, like a __doc__ string.
352 expline = string.expandtabs(line
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/
EasyDialogs.py 4 AskString(prompt, default) -- ask for a string, display OK and Cancel buttons.
36 import string namespace
60 text = string.join(string.split(text, '\r'), '\n')
65 text = string.join(string.split(text, '\n'), '\r')
71 """Display a MESSAGE string.
75 The MESSAGE string can be at most 255 characters long.
98 """Display a PROMPT string and a text entry field with a DEFAULT string
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
string_tests.py 5 import unittest, string, sys, struct namespace
25 # UserString and the string module.
137 # replacing all occurrences and then differencing the string lengths
380 # by string
470 # by string
575 # Operations on the empty string
    [all...]
test_weakset.py 6 import string namespace
43 self.letters = [SomeClass(c) for c in string.ascii_letters]
372 items = [SomeClass(c) for c in string.ascii_letters]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
inspect.py 35 import string namespace
55 __doc__ documentation string
63 __doc__ documentation string
71 __doc__ documentation string
146 __doc__ documentation string
214 co_code string of raw compiled bytecode
231 __doc__ documentation string
269 0. The name (a string).
284 info, like a __doc__ string.
352 expline = string.expandtabs(line
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
string_tests.py 5 import unittest, string, sys, struct namespace
25 # UserString and the string module.
137 # replacing all occurrences and then differencing the string lengths
380 # by string
470 # by string
575 # Operations on the empty string
    [all...]
test_weakset.py 6 import string namespace
43 self.letters = [SomeClass(c) for c in string.ascii_letters]
372 items = [SomeClass(c) for c in string.ascii_letters]
  /external/robolectric/lib/main/
json-20080701.jar 
  /art/compiler/
image_writer.cc 52 #include "mirror/string-inl.h"
67 using ::art::mirror::String;
71 bool ImageWriter::Write(const std::string& image_filename,
73 const std::string& oat_filename,
74 const std::string& oat_location) {
87 std::string error_msg;
233 std::string error_msg;
267 mirror::String* string = obj->AsString(); local
268 const uint16_t* utf16_string = string->GetCharArray()->GetData() + string->GetOffset()
    [all...]
  /cts/tools/signature-tools/test/signature/converter/
ConvertClassTest.java 278 CompilationUnit classSrc = new CompilationUnit("a.A", "package a; public class A implements I<String> {}");
298 //test type argument string
300 IClassReference string = (IClassReference) interfaze.getTypeArguments().get(0); local
301 assertEquals("java.lang.String", string.getClassDefinition().getQualifiedName());
419 CompilationUnit classSrc = new CompilationUnit("a.A", "package a; public class A { public A(String param){} }");
428 assertEquals("java.lang.String", ((IClassReference)param.getType()).getClassDefinition().getQualifiedName());
462 CompilationUnit classSrc = new CompilationUnit("a.A", "package a; public class A { public String[] m(){ return null; } }");
472 assertEquals("java.lang.String", clazz.getQualifiedName());
481 " public String[] a;"
    [all...]

Completed in 955 milliseconds

<<31323334353637383940>>