/sdk/find_java/src/source/ |
D | utils.h | 180 for (const char *s = mStr; *s; s++) { in split() local 181 if (*s == sep && s != mStr && (last == NULL || s > last+1)) { in split() 183 last = s; in split() 190 for (const char *s = mStr; *s; s++) { in split() local 191 if (*s == sep) { in split() 192 if (s != mStr && (last == NULL || s > last+1)) { in split() 194 (*result)[n++].set(start, s-start); in split() 196 last = s+1; in split() 251 CPath& addPath(const CString &s) { in addPath() argument 252 return addPath(s.cstr()); in addPath() [all …]
|
D | find_java_exe.cpp | 185 CString s; in main() local 186 s.setf("Failed to find Java %d.%d (or newer) on your system. ", JAVA_MAJOR(minVersion), in main() 190 fprintf(stderr, s.cstr()); in main() 194 printError(s.cstr()); in main() 203 CString s; in main() local 204 s.setf("Failed to convert path (%s) to a short DOS path. ", javaPath.cstr()); in main() 205 fprintf(stderr, s.cstr()); in main() 208 printError(s.cstr()); in main()
|
/sdk/avdlauncher/src/source/ |
D | avdlauncher.c | 48 LPSTR s, s2; in display_error() local 57 (LPSTR)&s, /* lpBuffer */ in display_error() 60 fprintf(stderr, "%s", s); in display_error() 62 s2 = (LPSTR) malloc(strlen(description) + strlen(s) + 5); in display_error() 63 sprintf(s2, "%s\r\n%s", description, s); in display_error() 66 LocalFree(s); in display_error()
|
/sdk/sdklauncher/src/source/ |
D | sdklauncher.c | 48 LPSTR s, s2; in display_error() local 57 (LPSTR)&s, /* lpBuffer */ in display_error() 60 fprintf(stderr, "%s", s); in display_error() 62 s2 = (LPSTR) malloc(strlen(description) + strlen(s) + 5); in display_error() 63 sprintf(s2, "%s\r\n%s", description, s); in display_error() 66 LocalFree(s); in display_error()
|
/sdk/templates/docs/ |
D | prettify.js | 5 …s)for(c=0;c<b;++c)j=f[c],a=j.charAt(0),j.length>=2&&a==="["?f[c]=h(j):a!=="\\"&&(f[c]=j.replace(/[… 6 …)h[s]="\n",t[s<<1]=y++,t[s++<<1|1]=a;break;case 3:case 4:g=a.nodeValue,g.length&&(g=p?g.replace(/\… 7 t[s++<<1|1]=a)}}var e=/(?:^|\s)nocode(?:\s|$)/,h=[],y=0,t=[],s=0,l;a.currentStyle?l=a.currentStyle.… 9 …s]|''?(?=[^']))*(?:'''|$)|"""(?:[^"\\]|\\[\S\s]|""?(?=[^"]))*(?:"""|$)|'(?:[^'\\]|\\[\S\s])*(?:'|$… 11 …s]*?(?:\*\/|$)/,q]));a.regexLiterals&&e.push(["lang-regex",/^(?:^^\.?|[!+-]|!=|!==|#|%|%=|&|&&|&&=… 12 …s+/,q," \r\n\t\xa0"]);e.push(["lit",/^@[$_a-z][\w$@]*/i,q],["typ",/^(?:[@_]?[A-Z]+[a-z][\w$@]*|\w+… 15 …Property(h)?window.console&&console.warn("cannot override language handler %s",h):A[h]=a}}function… 22 …,["lang-uq.val",/^=\s*([^\s"'>]*(?:[^\s"'/>]|\/(?=\s)))/],["pun",/^[/<->]+/],["lang-js",/^on\w+\s*… 23 /^style\s*=\s*([^\s"'>]+)/i]]),["in.tag"]);k(x([],[["atv",/^[\S\s]+/]]),["uq.val"]);k(u({keywords:F…
|
D | jquery-1.8.0.min.js | 2 …s),function(a,c){b[c]=!0}),b}function J(a,c,d){if(d===b&&a.nodeType===1){var e="data-"+c.replace(I…
|
D | default.js | 21 var sluggify_ = function(s) { argument 22 return (s || '').replace(/ /g, '-').replace(/[^\w-]/g, '').toLowerCase();
|
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/ |
D | TextEditor.java | 42 public void afterTextChanged(Editable s) { in bindEditor() 43 Object newVal = parseValue(s.length() == 0 ? null : s.toString()); in bindEditor() 50 public void beforeTextChanged(CharSequence s, int start, int count, int after) { in bindEditor() 54 public void onTextChanged(CharSequence s, int start, int before, int count) { in bindEditor()
|
/sdk/find_java2/src/ |
D | JavaPath.cpp | 47 CString s; in getVersion() local 48 s.Format(_T("%d.%d"), JAVA_MAJOR(mVersion), JAVA_MINOR(mVersion)); in getVersion() 49 return s; in getVersion()
|
D | JavaFinder.cpp | 527 TCHAR s[MAX_PATH + 1]; in getRegistryPath() local 528 if (rk.QueryStringValue(JF_REGISTRY_VALUE_PATH, s, &sLen) == ERROR_SUCCESS) { in getRegistryPath() 529 existing.SetString(s); in getRegistryPath()
|
/sdk/testapps/customViewTest/libWithCustomView/src/com/android/tests/libwithcustom/ |
D | LabelView.java | 65 CharSequence s = a.getString(R.styleable.LabelView_text); in LabelView() local 66 if (s != null) { in LabelView() 67 setText(s.toString()); in LabelView()
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/ |
D | LayoutRenderer.java | 96 Graphics s = g.create(); in paintComponent() local 99 s.translate(p.left - p.scrollX, p.top - p.scrollY); in paintComponent() 103 s.drawImage(node.image, node.left, node.top, null); in paintComponent() 105 s.drawRect(node.left, node.top, node.width - 1, node.height - 1); in paintComponent() 106 s.dispose(); in paintComponent()
|
D | ScreenViewer.java | 581 Graphics s = g.create(); in paintComponent() local 582 s.setColor(boundsColor); in paintComponent() 585 s.translate(p.left - p.scrollX, p.top - p.scrollY); in paintComponent() 588 s.drawRect(node.left, node.top, node.width - 1, node.height - 1); in paintComponent() 589 s.translate(node.left, node.top); in paintComponent() 591 s.setXORMode(Color.WHITE); in paintComponent() 594 s.setColor(Color.BLACK); in paintComponent() 595 s.drawRect(node.paddingLeft, node.paddingTop, in paintComponent() 601 s.setColor(Color.BLACK); in paintComponent() 602 s.drawRect(-node.marginLeft, -node.marginTop, in paintComponent() [all …]
|
/sdk/ |
D | README.txt | 20 Let's say as an example you want to change lint. 21 It's now located in tools/base/lint. 56 However it does depend on /tools/base/sdklib. Let's say you want to 76 Let's say you changed something in tools/base/lint and run "make sdk" from 79 That's because the SDK has been changed to only rely on the prebuilts located 83 It's fairly simple. Go back to the top dir on your Android tree and run:
|
D | changes.txt | 14 environment variable (requires updating the project's build.xml file) 64 "always" for the showAsAction attribute (unless it's used 143 - Ant build rules will now check the Ant version and fail if it's older than 1.8
|
/sdk/apps/SdkController/ |
D | Implementation.txt | 28 or controls the handler's state.) 31 Here's a quick overview of the classes in the application:
|
D | NOTICE | 93 Contribution(s) alone or by combination of their Contribution(s) 94 with the Work to which such Contribution(s) was submitted. If You
|
/sdk/docs/ |
D | howto_build_SDK.txt | 60 Basically it's not trivial yet when done right it's not that complicated. 118 I'll repeat this again because it's important: 178 Eclipse and install it at a special location. That's not needed
|
D | Notes_on_WST_StructuredDocument.txt | 50 Since we use this to parse XML, let's look at this XML example: 178 list seems the most useful scenario. There's no actual iterator provided for inner regions.
|
D | howto_SDK_git_cygwin.txt | 128 Here's a script that takes care of all these details. It performs the repo 141 # repo init if there's no .repo directory
|
/sdk/find_java/ |
D | find_java.bat | 43 for /f "delims=" %%a in ('"%~dps0\find_java%arch_ext%.exe" -s') do set java_exe=%%a 49 for /f "delims=" %%a in ('"%~dps0\find_java%arch_ext%.exe" -s -w') do set javaw_exe=%%a
|
/sdk/apkbuilder/etc/ |
D | apkbuilder.bat | 16 rem don't modify the caller's environment
|
/sdk/hierarchyviewer/etc/ |
D | hierarchyviewer1.bat | 16 rem don't modify the caller's environment
|
/sdk/files/ |
D | post_tools_install.bat | 19 rem don't modify the caller's environment
|
/sdk/avdlauncher/ |
D | NOTICE | 93 Contribution(s) alone or by combination of their Contribution(s) 94 with the Work to which such Contribution(s) was submitted. If You
|