HomeSort by relevance Sort by last modified time
    Searched full:builder (Results 101 - 125 of 4608) sorted by null

1 2 3 45 6 7 8 91011>>

  /libcore/luni/src/test/java/tests/org/w3c/dom/
DOMDocumentBuilderFactory.java 13 private DocumentBuilder builder = null; field in class:DOMDocumentBuilderFactory
36 builder = factory.newDocumentBuilder();
41 if (builder == null) {
48 return builder;
52 return builder.getDOMImplementation().hasFeature(feature, version);
  /packages/apps/Nfc/src/com/android/nfc/handover/
ConfirmConnectActivity.java 18 AlertDialog.Builder builder = new AlertDialog.Builder(this, AlertDialog.THEME_HOLO_DARK); local
25 builder.setMessage(confirmString)
45 AlertDialog alert = builder.create();
  /packages/apps/VideoEditor/src/com/android/videoeditor/
AlertDialogs.java 60 final AlertDialog.Builder builder = new AlertDialog.Builder(context); local
61 builder.setTitle(title);
63 builder.setIcon(context.getResources().getDrawable(iconId));
65 builder.setMessage(content);
66 builder.setPositiveButton(positive, positiveListener);
67 builder.setNegativeButton(negative, negativeListener);
68 builder.setOnCancelListener(cancelListener);
69 builder.setCancelable(cancelable);
98 final AlertDialog.Builder builder = new AlertDialog.Builder(context); local
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
DataRowHandlerForIm.java 41 public void appendSearchableData(IndexBuilder builder) {
42 int protocol = builder.getInt(Im.PROTOCOL);
43 String customProtocol = builder.getString(Im.CUSTOM_PROTOCOL);
44 builder.appendContent(
46 builder.appendContentFromColumn(Im.DATA, IndexBuilder.SEPARATOR_SLASH);
  /external/webkit/Source/WebCore/platform/graphics/gpu/
Shader.cpp 138 StringBuilder builder; local
141 builder.append(
146 builder.append(
151 builder.append(
160 builder.append(
165 builder.append(
169 builder.append(
172 builder.append(
175 builder.append(
181 builder.append
194 StringBuilder builder; local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
AsyncQueryServiceHelper.java 104 StringBuilder builder = new StringBuilder(); local
105 builder.append("OperationInfo [\n\t token= ");
106 builder.append(token);
107 builder.append(",\n\t op= ");
108 builder.append(Operation.opToChar(op));
109 builder.append(",\n\t uri= ");
110 builder.append(uri);
111 builder.append(",\n\t authority= ");
112 builder.append(authority);
113 builder.append(",\n\t delayMillis= ")
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/
BreakpointOption.java 81 Message.Builder builder = Message.newBuilder(); local
82 builder.setContextId(contextId);
83 builder.setType(Type.Response);
84 builder.setExpectResponse(false);
85 builder.setFunction(Function.SETPROP);
86 builder.setProp(Prop.ExpectResponse);
87 builder.setArg0(function.getNumber());
88 builder.setArg1(enabled ? 1 : 0);
89 mGLFramesView.messageQueue.addCommand(builder.build())
118 final Message.Builder builder = Message.newBuilder(); local
    [all...]
  /cts/tools/dex-tools/src/dex/reader/
DexMethodImpl.java 141 StringBuilder builder = new StringBuilder(); local
142 builder.append(formatter.formatAnnotations(getAnnotations()));
143 builder.append(Modifier.toString(getModifiers()));
144 builder.append(" ");
145 builder.append(formatter.format(getReturnType()));
146 builder.append(" ");
147 builder.append(getName());
148 builder.append("(");
151 builder.append(formatter.formatAnnotations(dexParameter
153 builder.append(formatter.format(dexParameter.getTypeName()))
    [all...]
DexFieldImpl.java 95 StringBuilder builder = new StringBuilder(); local
96 builder.append(formatter.formatAnnotations(getAnnotations()));
97 builder.append(Modifier.toString(getModifiers()));
98 builder.append(" ");
99 builder.append(formatter.format(getType()));
100 builder.append(" ");
101 builder.append(getName());
102 return builder.toString();
  /cts/tools/signature-tools/src/signature/compare/model/impl/
SigDelta.java 81 StringBuilder builder = new StringBuilder(); local
82 builder.append(getClass().getSimpleName());
83 builder.append(":\n");
95 builder.append("from: ");
96 builder.append(from);
97 builder.append("\nto: ");
98 builder.append(to);
99 builder.append("\n");
106 builder.append(field.getName());
107 builder.append(":\n")
    [all...]
  /packages/wallpapers/Basic/src/com/android/wallpaper/grass/
GrassRS.java 256 final Type.Builder builder = new Type.Builder(mRS, A_8(mRS)); local
257 builder.setX(4);
258 builder.setY(1);
259 builder.setMipmaps(true);
261 final Allocation allocation = Allocation.createTyped(mRS, builder.create(),
283 Sampler.Builder samplerBuilder = new Sampler.Builder(mRS);
294 ProgramFragmentFixedFunction.Builder builder = new ProgramFragmentFixedFunction.Builder(mRS) local
311 ProgramStore.Builder builder = new ProgramStore.Builder(mRS); local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
EntityDelta.java 25 import android.content.ContentProviderOperation.Builder;
355 final StringBuilder builder = new StringBuilder(); local
356 builder.append("\n(");
357 builder.append("Uri=");
358 builder.append(mContactsQueryUri);
359 builder.append(", Values=");
360 builder.append(mValues != null ? mValues.toString() : "null");
361 builder.append(", Entries={");
364 builder.append("\n\t");
365 child.toString(builder);
418 Builder builder; local
485 Builder builder = ContentProviderOperation.newUpdate(mContactsQueryUri); local
865 final StringBuilder builder = new StringBuilder(); local
916 Builder builder = null; local
    [all...]
  /dalvik/tools/dexdeps/src/com/android/dexdeps/
MethodRef.java 75 StringBuilder builder = new StringBuilder(); local
77 builder.append("(");
79 builder.append(protos[i]);
82 builder.append(")");
83 builder.append(returnType);
85 return builder.toString();
  /frameworks/base/core/java/com/google/android/util/
SmileyParser.java 56 SpannableStringBuilder builder = new SpannableStringBuilder(); local
68 int start = builder.length();
69 builder.append(token.getRawText());
73 builder.setSpan(new ImageSpan(context, resid),
75 builder.length(),
80 return builder;
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis5/
Visualization5RS.java 26 import android.renderscript.Element.Builder;
158 ProgramVertexFixedFunction.Builder pvb = new ProgramVertexFixedFunction.Builder(mRS);
203 Sampler.Builder builder = new Sampler.Builder(mRS); local
204 builder.setMinification(Value.LINEAR);
205 builder.setMagnification(Value.LINEAR);
206 builder.setWrapS(Value.WRAP);
207 builder.setWrapT(Value.WRAP)
212 Sampler.Builder builder = new Sampler.Builder(mRS); local
221 ProgramFragmentFixedFunction.Builder builder = new ProgramFragmentFixedFunction.Builder(mRS); local
230 ProgramFragmentFixedFunction.Builder builder = new ProgramFragmentFixedFunction.Builder(mRS); local
239 ProgramRaster.Builder builder = new ProgramRaster.Builder(mRS); local
246 ProgramStore.Builder builder = new ProgramStore.Builder(mRS); local
    [all...]
  /cts/tools/signature-tools/src/signature/model/impl/
SigParameterizedType.java 110 StringBuilder builder = new StringBuilder(); local
112 builder.append(type.getOwnerType().toString());
113 builder.append("::");
115 builder.append(type.getRawType());
116 builder.append("<");
117 builder.append(ModelUtil.separate(type.getTypeArguments(), ", "));
118 builder.append(">");
119 return builder.toString();
SigWildcardType.java 85 StringBuilder builder = new StringBuilder(); local
86 builder.append("?");
88 builder.append(" ");
89 builder.append(" super ");
90 builder.append(thiz.getLowerBound());
93 builder.append(" extends ");
94 builder.append(thiz.getUpperBounds());
96 return builder.toString();
  /development/samples/AppNavigation/src/com/example/android/appnavigation/app/
NotificationsActivity.java 38 Notification.Builder builder = new Notification.Builder(this) local
50 nm.notify("direct_tag", R.id.direct_notification, builder.getNotification());
54 Notification.Builder builder = new Notification.Builder(this) local
65 nm.notify("interstitial_tag", R.id.interstitial_notification, builder.getNotification());
  /development/samples/SupportAppNavigation/src/com/example/android/support/appnavigation/app/
NotificationsActivity.java 51 NotificationCompat.Builder builder = new NotificationCompat.Builder(this) local
63 nm.notify("direct_tag", R.id.direct_notification, builder.getNotification());
67 NotificationCompat.Builder builder = new NotificationCompat.Builder(this) local
78 nm.notify("interstitial_tag", R.id.interstitial_notification, builder.getNotification());
  /external/webkit/Source/WebCore/platform/network/
ProxyServer.cpp 33 static void appendProxyServerString(StringBuilder& builder, const ProxyServer& proxyServer)
37 builder.append("DIRECT");
41 builder.append("PROXY");
44 builder.append("SOCKS");
48 builder.append(' ');
51 builder.append(proxyServer.hostName());
53 builder.append(':');
55 builder.append(String::number(proxyServer.port()));
  /packages/apps/Browser/src/com/android/browser/preferences/
InvertedContrastPreview.java 61 StringBuilder builder = new StringBuilder("<html><body style=\"width: 1000px\">"); local
64 builder.append("<br />");
67 builder.append("<img src=\"");
68 builder.append(IMG_ROOT);
69 builder.append(thumb);
70 builder.append("\" />&nbsp;");
72 builder.append("</body></html>");
73 mHtml = builder.toString();
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/
YesCancelDialogBuilder.java 10 * Alert dialog builder that builds a simple Yes/Cancel dialog.
12 public class YesCancelDialogBuilder extends AlertDialog.Builder {
  /external/clang/lib/Basic/
Targets.cpp 41 static void DefineStd(MacroBuilder &Builder, StringRef MacroName,
48 Builder.defineMacro(MacroName);
51 Builder.defineMacro("__" + MacroName);
54 Builder.defineMacro("__" + MacroName + "__");
57 static void defineCPUMacros(MacroBuilder &Builder, StringRef CPUName,
59 Builder.defineMacro("__" + CPUName);
60 Builder.defineMacro("__" + CPUName + "__");
62 Builder.defineMacro("__tune_" + CPUName + "__");
74 MacroBuilder &Builder) const=0;
78 MacroBuilder &Builder) const
    [all...]
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
ImportTestProvider.java 136 final StringBuilder builder = new StringBuilder(); local
137 builder.append("\n");
138 builder.append("Unexpected: ");
139 builder.append(convertToEasilyReadableString(actualContentValues));
140 builder.append("\n");
141 builder.append("Expected : ");
143 builder.append(convertToEasilyReadableString(expectedContentValues));
145 TestCase.fail(builder.toString());
158 StringBuilder builder = new StringBuilder(); local
162 builder.append(convertToEasilyReadableString(expectedContentValues))
194 StringBuilder builder = new StringBuilder(); local
    [all...]
  /external/freetype/src/cff/
cffgload.c 232 /* Initializes a given glyph builder. */
235 /* builder :: A pointer to the glyph builder to initialize. */
247 cff_builder_init( CFF_Builder* builder,
253 builder->path_begun = 0;
254 builder->load_points = 1;
256 builder->face = face;
257 builder->glyph = glyph;
258 builder->memory = face->root.memory;
265 builder->loader = loader
412 CFF_Builder *builder = &decoder->builder; local
719 CFF_Builder* builder = &decoder->builder; local
891 CFF_Builder* builder = &decoder->builder; local
    [all...]

Completed in 938 milliseconds

1 2 3 45 6 7 8 91011>>