Home
last modified time | relevance | path

Searched refs:string (Results 1 – 25 of 943) sorted by relevance

12345678910>>...38

/frameworks/base/core/java/android/webkit/
DL10nUtils.java33 …com.android.internal.R.string.autofill_address_name_separator, // IDS_AUTOFILL_DIALOG_ADDRESS…
34 …com.android.internal.R.string.autofill_address_summary_name_format, // IDS_AUTOFILL_DIALOG_ADDRESS…
35 …com.android.internal.R.string.autofill_address_summary_separator, // IDS_AUTOFILL_DIALOG_ADDRESS…
36 …com.android.internal.R.string.autofill_address_summary_format, // IDS_AUTOFILL_DIALOG_ADDRESS…
37 …com.android.internal.R.string.autofill_attention_ignored_re, // IDS_AUTOFILL_ATTENTION_IGNO…
38 …com.android.internal.R.string.autofill_region_ignored_re, // IDS_AUTOFILL_REGION_IGNORED…
39 … com.android.internal.R.string.autofill_company_re, // IDS_AUTOFILL_COMPANY_RE
40 …com.android.internal.R.string.autofill_address_line_1_re, // IDS_AUTOFILL_ADDRESS_LINE_1…
41 …com.android.internal.R.string.autofill_address_line_1_label_re, // IDS_AUTOFILL_ADDRESS_LINE_1…
42 …com.android.internal.R.string.autofill_address_line_2_re, // IDS_AUTOFILL_ADDRESS_LINE_2…
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DAccessibilityContentDescriptions.java14 R.string.accessibility_no_phone,
15 R.string.accessibility_phone_one_bar,
16 R.string.accessibility_phone_two_bars,
17 R.string.accessibility_phone_three_bars,
18 R.string.accessibility_phone_signal_full
22 R.string.accessibility_no_data,
23 R.string.accessibility_data_one_bar,
24 R.string.accessibility_data_two_bars,
25 R.string.accessibility_data_three_bars,
26 R.string.accessibility_data_signal_full
[all …]
/frameworks/compile/slang/
Dslang_rs_reflection.h43 std::string mLastError;
44 std::vector<std::string> *mGeneratedFileNames;
46 inline void setError(const std::string &Error) { mLastError = Error; } in setError()
54 std::string mOutputPathBase;
56 std::string mInputRSFile;
58 std::string mPackageName;
59 std::string mRSPackageName;
60 std::string mResourceId;
61 std::string mPaddingPrefix;
63 std::string mClassName;
[all …]
Dslang_rs_reflection_base.h49 std::string mLicenseNote;
50 std::string mInputFileName;
52 std::string mClassName;
53 std::string mOutputPath;
54 std::string mOutputBCFileName;
56 std::vector< std::string > mText;
57 std::string mIndent;
59 bool openFile(const std::string &name, std::string &errorMsg);
60 void startFile(const std::string &filename);
63 void write(const std::string &t);
[all …]
Dslang_rs_context.h72 std::vector<std::string> *mGeneratedFileNames;
81 std::string *mLicenseNote;
82 std::string mReflectJavaPackageName;
83 std::string mReflectJavaPathName;
85 std::string mRSPackageName;
107 std::vector<std::string> *GeneratedFileNames);
126 inline void setLicenseNote(const std::string &S) { in setLicenseNote()
127 mLicenseNote = new std::string(S); in setLicenseNote()
129 inline const std::string *getLicenseNote() const { return mLicenseNote; } in getLicenseNote()
131 inline void addExportType(const std::string &S) { in addExportType()
[all …]
Dslang.h64 static void LLVMErrorHandler(void *UserData, const std::string &Message);
94 void createTarget(std::string const &Triple, std::string const &CPU,
95 std::vector<std::string> const &Features);
124 std::string mInputFileName;
125 std::string mOutputFileName;
127 std::string mDepOutputFileName;
128 std::string mDepTargetBCFileName;
129 std::vector<std::string> mAdditionalDepTargets;
130 std::vector<std::string> mGeneratedFileNames;
140 std::vector<std::string> mIncludePaths;
[all …]
Dslang_rs.h53 std::vector<std::string> mGeneratedFileNames;
66 bool reflectToJava(const std::string &OutputPathBase,
67 const std::string &OutputPackageName,
68 const std::string &RSPackageName,
69 std::string *RealPackageName);
71 bool generateBitcodeAccessor(const std::string &OutputPathBase,
72 const std::string &PackageName);
140 const std::vector<std::string> &IncludePaths,
141 const std::vector<std::string> &AdditionalDepTargets,
146 const std::string &JavaReflectionPathBase,
[all …]
/frameworks/base/libs/androidfw/
DKeyLayoutMap.cpp56 ALOGE("Error %d opening key layout map file %s.", status, filename.string()); in load()
71 tokenizer->getFilename().string(), tokenizer->getLineNumber(), in load()
165 ALOGD("Parsing %s: '%s'.", mTokenizer->getLocation().string(), in parse()
166 mTokenizer->peekRemainderOfLine().string()); in parse()
182 ALOGE("%s: Expected keyword, got '%s'.", mTokenizer->getLocation().string(), in parse()
183 keywordToken.string()); in parse()
190 mTokenizer->getLocation().string(), in parse()
191 mTokenizer->peekRemainderOfLine().string()); in parse()
211 int32_t code = int32_t(strtol(codeToken.string(), &end, 0)); in parseKey()
213 ALOGE("%s: Expected key %s number, got '%s'.", mTokenizer->getLocation().string(), in parseKey()
[all …]
/frameworks/base/core/java/android/net/http/
DErrorStrings.java47 return com.android.internal.R.string.httpErrorOk; in getResource()
50 return com.android.internal.R.string.httpError; in getResource()
53 return com.android.internal.R.string.httpErrorLookup; in getResource()
56 return com.android.internal.R.string.httpErrorUnsupportedAuthScheme; in getResource()
59 return com.android.internal.R.string.httpErrorAuth; in getResource()
62 return com.android.internal.R.string.httpErrorProxyAuth; in getResource()
65 return com.android.internal.R.string.httpErrorConnect; in getResource()
68 return com.android.internal.R.string.httpErrorIO; in getResource()
71 return com.android.internal.R.string.httpErrorTimeout; in getResource()
74 return com.android.internal.R.string.httpErrorRedirectLoop; in getResource()
[all …]
/frameworks/compile/llvm-ndk-cc/
Dllvm-ndk-cc.cpp33 static llvm::cl::opt<std::string>
37 static llvm::cl::list<std::string>
40 static llvm::cl::list<std::string>
43 static llvm::cl::opt<std::string>
48 static void splitPreDefinedSymbol(const std::string& In, in splitPreDefinedSymbol()
49 std::string& Key, std::string& Value) { in splitPreDefinedSymbol()
51 if (FoundPos == std::string::npos) { in splitPreDefinedSymbol()
56 Value = In.substr(FoundPos+1, std::string::npos); in splitPreDefinedSymbol()
76 std::vector<std::string> IncludePaths; in main()
81 std::map<std::string, std::string> PreDefinedSymbolMap; in main()
[all …]
DCompiler.h59 void init(const std::string &Triple, const std::string &CPU,
60 const std::vector<std::string> &Features,
68 inline const std::string &getInputFileName() const { return mInputFileName; } in getInputFileName()
70 inline void setIncludePaths(const std::vector<std::string> &IncludePaths) { in setIncludePaths()
74 inline void setPreDefinedSymbol(const std::map<std::string, std::string>& M) { in setPreDefinedSymbol() argument
81 inline const std::string &getOutputFileName() const { in getOutputFileName()
95 static void LLVMErrorHandler(void *UserData, const std::string &Message);
111 void createTarget(const std::string &Triple, const std::string &CPU,
112 const std::vector<std::string> &Features);
137 std::string mInputFileName;
[all …]
/frameworks/base/tools/aidl/
DType.h26 Type(const string& name, int kind, bool canWriteToParcel,
28 Type(const string& package, const string& name,
30 const string& declFile = "", int declLine = -1);
33 inline string Package() const { return m_package; } in Package()
34 inline string Name() const { return m_name; } in Name()
35 inline string QualifiedName() const { return m_qualifiedName; } in QualifiedName()
37 inline string DeclFile() const { return m_declFile; } in DeclFile()
43 virtual string ImportType() const;
44 virtual string CreatorName() const;
45 virtual string RpcCreatorName() const;
[all …]
DAST.h50 string value;
52 LiteralExpression(const string& value);
60 string value;
62 StringLiteralExpression(const string& value);
70 string name;
74 Variable(Type* type, const string& name);
75 Variable(Type* type, const string& name, int dimension);
87 string name;
89 FieldVariable(Expression* object, const string& name);
90 FieldVariable(Type* clazz, const string& name);
[all …]
/frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
DInputTypeActivity.java56 R.string.normal_edit_text_label)); in onCreate()
60 R.string.cap_chars_edit_text_label)); in onCreate()
64 R.string.cap_words_edit_text_label)); in onCreate()
68 R.string.multiline_edit_text_label)); in onCreate()
72 R.string.cap_sentences_edit_text_label)); in onCreate()
76 R.string.auto_complete_edit_text_label)); in onCreate()
80 R.string.auto_correct_edit_text_label)); in onCreate()
84 R.string.uri_edit_text_label)); in onCreate()
88 R.string.email_address_edit_text_label)); in onCreate()
92 R.string.email_subject_edit_text_label)); in onCreate()
[all …]
/frameworks/support/renderscript/v8/rs_support/scriptc/
Drs_debug.rsh21 * not be used in shipping applications. All print a string and value pair to
31 * Debug function. Prints a string and value to the log.
36 * Debug function. Prints a string and value to the log.
41 * Debug function. Prints a string and value to the log.
46 * Debug function. Prints a string and value to the log.
51 * Debug function. Prints a string and value to the log.
56 * Debug function. Prints a string and value to the log.
61 * Debug function. Prints a string and value to the log.
66 * Debug function. Prints a string and value to the log.
71 * Debug function. Prints a string and value to the log.
[all …]
/frameworks/rs/scriptc/
Drs_debug.rsh21 * not be used in shipping applications. All print a string and value pair to
31 * Debug function. Prints a string and value to the log.
36 * Debug function. Prints a string and value to the log.
41 * Debug function. Prints a string and value to the log.
46 * Debug function. Prints a string and value to the log.
51 * Debug function. Prints a string and value to the log.
56 * Debug function. Prints a string and value to the log.
61 * Debug function. Prints a string and value to the log.
66 * Debug function. Prints a string and value to the log.
71 * Debug function. Prints a string and value to the log.
[all …]
/frameworks/base/policy/src/com/android/internal/policy/impl/keyguard_obsolete/
DKeyguardStatusViewManager.java173 mDateFormatString = getContext().getString(R.string.abbrev_wday_month_day_no_year); in KeyguardStatusViewManager()
194 mEmergencyCallButton.setText(R.string.lockscreen_emergency_call); in KeyguardStatusViewManager()
222 void setInstructionText(String string) { in setInstructionText() argument
223 mInstructionText = string; in setInstructionText()
224 update(INSTRUCTION_TEXT, string); in setInstructionText()
227 void setCarrierText(CharSequence string) { in setCarrierText() argument
228 mCarrierText = string; in setCarrierText()
229 update(CARRIER_TEXT, string); in setCarrierText()
232 void setOwnerInfo(CharSequence string) { in setOwnerInfo() argument
233 mOwnerInfoText = string; in setOwnerInfo()
[all …]
/frameworks/base/tools/aapt/
DPackage.cpp72 FileType fileType = getFileType(outputFile.string()); in writeAPK()
79 if (unlink(outputFile.string()) != 0) { in writeAPK()
80 fprintf(stderr, "ERROR: unable to remove '%s': %s\n", outputFile.string(), in writeAPK()
86 outputFile.string()); in writeAPK()
90 fprintf(stderr, "ERROR: '%s' exists and is not a regular file\n", outputFile.string()); in writeAPK()
96 outputFile.string()); in writeAPK()
101 status = zip->open(outputFile.string(), ZipFile::kOpenReadWrite | ZipFile::kOpenCreate); in writeAPK()
104 outputFile.string()); in writeAPK()
115 outputFile.string()); in writeAPK()
127 outputFile.string()); in writeAPK()
[all …]
DResource.cpp55 const char* firstDot = strchr(leaf.string(), '.'); in parseResourceName()
56 const char* str = leaf.string(); in parseResourceName()
128 group->getPath().string(), mParams.mcc, mParams.mnc, in next()
142 file->getPrintableSource().string()); in next()
146 NOISY(printf("file name=%s\n", mBaseName.string())); in next()
203 grp->getFiles().valueAt(0)->getPrintableSource().string()); in parsePackage()
224 file->getPrintableSource().string(), block.getLineNumber()); in parsePackage()
227 if (strcmp16(block.getElementName(&len), String16("manifest").string()) != 0) { in parsePackage()
229 file->getPrintableSource().string(), block.getLineNumber(), in parsePackage()
230 String8(block.getElementName(&len)).string()); in parsePackage()
[all …]
/frameworks/compile/libbcc/include/bcc/Support/
DLinkerConfig.h34 const std::string mTriple;
36 std::string mSOName;
56 inline const std::string &getTriple() const in getTriple()
71 inline std::string getSOName() const in getSOName()
78 void setSOName(const std::string &pSOName);
80 void setDyld(const std::string &pDyld);
82 void setSysRoot(const std::string &pSysRoot);
84 void addWrap(const std::string &pWrapSymbol);
86 void addPortable(const std::string &pPortableSymbol);
88 void addSearchDir(const std::string &pDir);
[all …]
/frameworks/base/media/mca/filterfw/native/core/
Dnative_program.h44 bool OpenLibrary(const std::string& lib_name);
46 bool BindInitFunction(const std::string& func_name);
47 bool BindSetValueFunction(const std::string& func_name);
48 bool BindGetValueFunction(const std::string& func_name);
49 bool BindProcessFunction(const std::string& func_name);
50 bool BindResetFunction(const std::string& func_name);
51 bool BindTeardownFunction(const std::string& func_name);
54 bool CallSetValue(const std::string& key, const std::string& value);
55 std::string CallGetValue(const std::string& key);
/frameworks/compile/mclinker/tools/mcld/include/alone/Support/
DLinkerConfig.h27 const std::string mTriple;
29 std::string mSOName;
49 inline const std::string &getTriple() const in getTriple()
64 inline std::string getSOName() const in getSOName()
71 void setSOName(const std::string &pSOName);
73 void setDyld(const std::string &pDyld);
75 void setSysRoot(const std::string &pSysRoot);
77 void addWrap(const std::string &pWrapSymbol);
79 void addPortable(const std::string &pPortableSymbol);
81 void addSearchDir(const std::string &pDir);
[all …]
/frameworks/native/libs/utils/tests/
DString8_test.cpp37 EXPECT_STREQ(tmp.string(), "Hello, world!"); in TEST_F()
46 EXPECT_STREQ(dst1.string(), "Hello, world!"); in TEST_F()
47 EXPECT_STREQ(src1.string(), "Hello, "); in TEST_F()
53 EXPECT_STREQ(dst2.string(), "Hello, world!"); in TEST_F()
54 EXPECT_STREQ(src1.string(), "Hello, "); in TEST_F()
55 EXPECT_STREQ(ssrc2.string(), "world!"); in TEST_F()
64 EXPECT_STREQ(src1.string(), "My voice is my passport."); in TEST_F()
65 EXPECT_STREQ(src2.string(), " is my passport."); in TEST_F()
70 EXPECT_STREQ(src1.string(), "My voice is my passport. Verify me."); in TEST_F()
71 EXPECT_STREQ(src2.string(), " is my passport."); in TEST_F()
/frameworks/base/docs/html/training/basics/supporting-devices/
Dlanguages.jd35 your string values.</p>
47 string resource files. For example:</p>
60 <p>Add the string values for each locale into the appropriate file.</p>
62 <p>At runtime, the Android system uses the appropriate set of string resources based on the
65 <p>For example, the following are some different string resource files for different languages.</p>
73 &lt;string name="title">My Application&lt;/string>
74 &lt;string name="hello_world">Hello World!&lt;/string>
84 &lt;string name="title">Mi Aplicación&lt;/string>
85 &lt;string name="hello_world">Hola Mundo!&lt;/string>
95 &lt;string name="title">Mon Application&lt;/string>
[all …]
/frameworks/native/libs/utils/
DPropertyMap.cpp85 int value = strtol(stringValue.string(), & end, 10); in tryGetProperty()
88 key.string(), stringValue.string()); in tryGetProperty()
102 float value = strtof(stringValue.string(), & end); in tryGetProperty()
105 key.string(), stringValue.string()); in tryGetProperty()
124 ALOGE("Error %d opening property file %s.", status, filename.string()); in load()
139 tokenizer->getFilename().string(), tokenizer->getLineNumber(), in load()
166 ALOGD("Parsing %s: '%s'.", mTokenizer->getLocation().string(), in parse()
167 mTokenizer->peekRemainderOfLine().string()); in parse()
175 ALOGE("%s: Expected non-empty property key.", mTokenizer->getLocation().string()); in parse()
183 mTokenizer->getLocation().string()); in parse()
[all …]

12345678910>>...38