Searched refs:builder (Results 1 - 25 of 2978) sorted by relevance

1234567891011>>

/external/webkit/Source/WebCore/svg/
H A DSVGRect.h35 StringBuilder builder; local
36 builder.append(String::number(type.x()));
37 builder.append(' ');
38 builder.append(String::number(type.y()));
39 builder.append(' ');
40 builder.append(String::number(type.width()));
41 builder.append(' ');
42 builder.append(String::number(type.height()));
43 builder.append(' ');
44 return builder
[all...]
/external/chromium/third_party/libjingle/source/talk/site_scons/site_tools/
H A Dtalk_noops.py5 """Noop tool that defines builder functions for non-default platforms to
14 builder = SCons.Builder.Builder(
17 env.Append(BUILDERS={'RES': builder, 'Grit': builder})
/external/mesa3d/src/pixelflinger2/
H A Dllvm_texture.cpp31 static Value * pointSample(IRBuilder<> & builder, Value * textureData, Value * index, const GGLPixelFormat format) argument
36 textureData = builder.CreateGEP(textureData, index);
37 texel = builder.CreateLoad(textureData, "texel");
40 textureData = builder.CreateGEP(textureData, index);
41 texel = builder.CreateLoad(textureData, "texel");
42 texel = builder.CreateOr(texel, builder.getInt32(0xff000000));
45 textureData = builder.CreateBitCast(textureData, PointerType::get(builder.getInt16Ty(), 0));
46 textureData = builder
143 linearSample(IRBuilder< & builder, Value * textureData, Value * indexOffset, Value * x0, Value * y0, Value * xLerp, Value * yLerp, Value * w, Value * h, Value * width, Value * height, const GGLPixelFormat format ) argument
220 texcoordWrap(IRBuilder< & builder, const unsigned wrap, Value * r, Value * size, Value * dim, Value ** texelLerp) argument
274 tex2D(IRBuilder< & builder, Value * in1, const unsigned sampler, const GGLState * gglCtx) argument
338 FCmpGT(IRBuilder< & builder, Value * lhs, Value * rhs) argument
346 FPositive(IRBuilder< & builder, Value * val) argument
356 Fabs(IRBuilder< & builder, Value * val) argument
364 texCube(IRBuilder< & builder, Value * in1, const unsigned sampler, const GGLState * gglCtx) argument
[all...]
H A Dllvm_scanline.cpp29 static void StencilOp(IRBuilder<> &builder, const unsigned char op, argument
32 CondBranch condBranch(builder);
33 Value * s = builder.CreateLoad(sPtr, "stenciOpS");
36 builder.CreateStore(builder.getInt8(0), sPtr);
39 builder.CreateStore(s, sPtr);
42 builder.CreateStore(sRef, sPtr);
45 condBranch.ifCond(builder.CreateICmpEQ(s, builder.getInt8(255)));
46 builder
73 StencilOp(IRBuilder< & builder, Value * face, const unsigned char frontOp, const unsigned char backOp, Value * sPtr, Value * sRef) argument
91 StencilFunc(IRBuilder< & builder, const unsigned char func, Value * s, Value * sRef, Value * sCmpPtr) argument
125 BlendFactor(const unsigned mode, Value * src, Value * dst, Value * constant, Value * one, Value * zero, Value * srcA, Value * dstA, Value * constantA, Value * sOne, const bool isVector, IRBuilder<> & builder) argument
201 Saturate(IRBuilder< & builder, Value * intVector) argument
209 IntVectorToScreenColor(IRBuilder< & builder, const GGLPixelFormat format, Value * src) argument
240 ScreenColorToIntVector(IRBuilder< & builder, const GGLPixelFormat format, Value * src) argument
261 GenerateFSBlend(const GGLState * gglCtx, const GGLPixelFormat format, IRBuilder<> & builder, Value * src, Value * dst) argument
420 ScanLineFunctionType(IRBuilder< & builder) argument
[all...]
/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Ddomimplementationregistry01.js24 var builder = null; variable
39 // creates test document builder, may throw exception
41 builder = createConfiguredBuilder();
49 catchInitializationError(builder, ex);
81 if(checkInitialization(builder, "domimplementationregistry01") != null) return;
H A Ddomimplementationregistry03.js24 var builder = null; variable
39 // creates test document builder, may throw exception
41 builder = createConfiguredBuilder();
49 catchInitializationError(builder, ex);
82 if(checkInitialization(builder, "domimplementationregistry03") != null) return;
H A Ddomimplementationregistry05.js24 var builder = null; variable
39 // creates test document builder, may throw exception
41 builder = createConfiguredBuilder();
49 catchInitializationError(builder, ex);
82 if(checkInitialization(builder, "domimplementationregistry05") != null) return;
H A Ddomimplementationregistry07.js24 var builder = null; variable
39 // creates test document builder, may throw exception
41 builder = createConfiguredBuilder();
49 catchInitializationError(builder, ex);
82 if(checkInitialization(builder, "domimplementationregistry07") != null) return;
H A Ddomimplementationregistry18.js24 var builder = null; variable
39 // creates test document builder, may throw exception
41 builder = createConfiguredBuilder();
49 catchInitializationError(builder, ex);
82 if(checkInitialization(builder, "domimplementationregistry18") != null) return;
H A Ddomimplementationregistry24.js24 var builder = null; variable
39 // creates test document builder, may throw exception
41 builder = createConfiguredBuilder();
49 catchInitializationError(builder, ex);
82 if(checkInitialization(builder, "domimplementationregistry24") != null) return;
H A Ddomimplementationregistry25.js24 var builder = null; variable
39 // creates test document builder, may throw exception
41 builder = createConfiguredBuilder();
49 catchInitializationError(builder, ex);
83 if(checkInitialization(builder, "domimplementationregistry25") != null) return;
H A DhasFeature01.js24 var builder = null; variable
39 // creates test document builder, may throw exception
41 builder = createConfiguredBuilder();
50 catchInitializationError(builder, ex);
80 if(checkInitialization(builder, "hasFeature01") != null) return;
/external/guava/guava-tests/test/com/google/common/collect/
H A DImmutableTableTest.java28 ImmutableTable.Builder<String, Integer, Character> builder =
29 ImmutableTable.builder();
31 builder.put((String) data[i], (Integer) data[i + 1],
34 return builder.build();
38 ImmutableTable.Builder<Character, Integer, String> builder =
40 assertEquals(ImmutableTable.of(), builder.build());
41 assertEquals(ImmutableTable.of('a', 1, "foo"), builder
51 assertEquals(expectedTable, builder
57 ImmutableTable.Builder<Character, Integer, String> builder =
59 assertEquals(ImmutableTable.of('a', 1, "foo"), builder
[all...]
/external/junit/src/org/junit/internal/
H A DArrayComparisonFailure.java39 StringBuilder builder= new StringBuilder();
41 builder.append(fMessage);
42 builder.append("arrays first differed at element ");
44 builder.append("[");
45 builder.append(each);
46 builder.append("]");
48 builder.append("; ");
49 builder.append(fCause.getMessage());
50 return builder.toString();
/external/webkit/Source/WebCore/platform/network/
H A DProxyServer.cpp33 static void appendProxyServerString(StringBuilder& builder, const ProxyServer& proxyServer) argument
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()));
/external/webkit/LayoutTests/dom/html/level2/html/
H A DHTMLDocument18.js24 var builder = null; variable
39 // creates test document builder, may throw exception
41 builder = createConfiguredBuilder();
55 catchInitializationError(builder, ex);
85 if(checkInitialization(builder, "HTMLDocument18") != null) return;
H A DhasFeature01.js24 var builder = null; variable
39 // creates test document builder, may throw exception
41 builder = createConfiguredBuilder();
49 catchInitializationError(builder, ex);
79 if(checkInitialization(builder, "hasFeature01") != null) return;
H A DhasFeature02.js24 var builder = null; variable
39 // creates test document builder, may throw exception
41 builder = createConfiguredBuilder();
49 catchInitializationError(builder, ex);
79 if(checkInitialization(builder, "hasFeature02") != null) return;
H A DhasFeature05.js24 var builder = null; variable
39 // creates test document builder, may throw exception
41 builder = createConfiguredBuilder();
49 catchInitializationError(builder, ex);
79 if(checkInitialization(builder, "hasFeature05") != null) return;
H A DhasFeature06.js24 var builder = null; variable
39 // creates test document builder, may throw exception
41 builder = createConfiguredBuilder();
49 catchInitializationError(builder, ex);
79 if(checkInitialization(builder, "hasFeature06") != null) return;
/external/webkit/LayoutTests/dom/xhtml/level2/html/
H A DHTMLDocument18.js24 var builder = null; variable
39 // creates test document builder, may throw exception
41 builder = createConfiguredBuilder();
55 catchInitializationError(builder, ex);
85 if(checkInitialization(builder, "HTMLDocument18") != null) return;
H A DhasFeature01.js24 var builder = null; variable
39 // creates test document builder, may throw exception
41 builder = createConfiguredBuilder();
49 catchInitializationError(builder, ex);
79 if(checkInitialization(builder, "hasFeature01") != null) return;
H A DhasFeature02.js24 var builder = null; variable
39 // creates test document builder, may throw exception
41 builder = createConfiguredBuilder();
49 catchInitializationError(builder, ex);
79 if(checkInitialization(builder, "hasFeature02") != null) return;
H A DhasFeature05.js24 var builder = null; variable
39 // creates test document builder, may throw exception
41 builder = createConfiguredBuilder();
49 catchInitializationError(builder, ex);
79 if(checkInitialization(builder, "hasFeature05") != null) return;
H A DhasFeature06.js24 var builder = null; variable
39 // creates test document builder, may throw exception
41 builder = createConfiguredBuilder();
49 catchInitializationError(builder, ex);
79 if(checkInitialization(builder, "hasFeature06") != null) return;

Completed in 983 milliseconds

1234567891011>>