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

12345678

/macosx-10.10/WebCore-7600.1.25/platform/
H A DUUID.cpp46 StringBuilder builder; local
47 builder.reserveCapacity(36);
48 appendUnsignedAsHexFixedSize(randomData[0], builder, 8, Lowercase);
49 builder.append("-");
50 appendUnsignedAsHexFixedSize(randomData[1] >> 16, builder, 4, Lowercase);
51 builder.append("-4");
52 appendUnsignedAsHexFixedSize(randomData[1] & 0x00000fff, builder, 3, Lowercase);
53 builder.append("-");
54 appendUnsignedAsHexFixedSize((randomData[2] >> 30) | 0x8, builder, 1, Lowercase);
55 appendUnsignedAsHexFixedSize((randomData[2] >> 16) & 0x00000fff, builder,
[all...]
H A DPODInterval.h138 StringBuilder builder; local
139 builder.append("[PODInterval (");
140 builder.append(ValueToString<T>::string(low()));
141 builder.append(", ");
142 builder.append(ValueToString<T>::string(high()));
143 builder.append("), data=");
144 builder.append(ValueToString<UserData>::string(data()));
145 builder.append(", maxHigh=");
146 builder.append(ValueToString<T>::string(maxHigh()));
147 builder
[all...]
/macosx-10.10/WebCore-7600.1.25/svg/
H A DSVGRect.h34 StringBuilder builder; local
35 builder.appendNumber(type.x());
36 builder.append(' ');
37 builder.appendNumber(type.y());
38 builder.append(' ');
39 builder.appendNumber(type.width());
40 builder.append(' ');
41 builder.appendNumber(type.height());
42 return builder.toString();
H A DSVGPointList.cpp31 StringBuilder builder; local
36 builder.append(' '); // FIXME: Shouldn't we use commas to seperate?
39 builder.appendNumber(point.x());
40 builder.append(' ');
41 builder.appendNumber(point.y());
44 return builder.toString();
H A DSVGTransform.cpp174 StringBuilder builder; local
175 builder.append(prefix);
176 builder.appendNumber(m_matrix.a());
177 builder.append(' ');
178 builder.appendNumber(m_matrix.b());
179 builder.append(' ');
180 builder.appendNumber(m_matrix.c());
181 builder.append(' ');
182 builder.appendNumber(m_matrix.d());
183 builder
191 StringBuilder builder; local
200 StringBuilder builder; local
214 StringBuilder builder; local
228 StringBuilder builder; local
[all...]
H A DSVGNumberList.cpp48 StringBuilder builder; local
53 builder.append(' ');
55 builder.appendNumber(at(i));
58 return builder.toString();
/macosx-10.10/JavaScriptCore-7600.1.17/runtime/
H A DDateConversion.cpp42 static inline void appendNumber(StringBuilder& builder, int value) argument
46 builder.append('-');
53 builder.append('0');
54 builder.append(valueString);
58 void appendNumber<2>(StringBuilder& builder, int value) argument
61 builder.append(static_cast<char>('0' + value / 10));
62 builder.append(static_cast<char>('0' + value % 10));
70 StringBuilder builder; local
73 builder.append(weekdayName[(t.weekDay() + 6) % 7]);
76 builder
[all...]
/macosx-10.10/WebKit2-7600.1.25/UIProcess/InspectorServer/efl/
H A DWebInspectorServerEfl.cpp82 StringBuilder builder; local
83 builder.append('[');
89 builder.appendLiteral(", ");
90 builder.appendLiteral("{ \"id\": ");
91 builder.appendNumber(it->key);
92 builder.appendLiteral(", \"title\": \"");
93 builder.append(webPage->pageLoadState().title());
94 builder.appendLiteral("\", \"url\": \"");
95 builder.append(webPage->pageLoadState().activeURL());
96 builder
[all...]
/macosx-10.10/CPANInternal-159.1/Class-Std-0.011/
H A DBuild.PL5 my $builder = Module::Build->new(
18 $builder->create_build_script();
/macosx-10.10/CPANInternal-159.1/Class-Std-Utils-v0.0.3/
H A DBuild.PL5 my $builder = Module::Build->new(
19 $builder->create_build_script();
/macosx-10.10/CPANInternal-159.1/Config-Std-0.900/
H A DBuild.PL5 my $builder = Module::Build->new(
30 $builder->create_build_script();
/macosx-10.10/CPANInternal-159.1/Config-Std-0.901/
H A DBuild.PL5 my $builder = Module::Build->new(
30 $builder->create_build_script();
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.25/
H A DBuild.PL5 my $builder = Module::Build->new(
18 $builder->create_build_script();
/macosx-10.10/WebKit2-7600.1.25/UIProcess/InspectorServer/gtk/
H A DWebInspectorServerGtk.cpp60 StringBuilder builder; local
61 builder.appendLiteral("<!DOCTYPE html><html><head></head><body>Error: ");
62 builder.appendNumber(error->code);
63 builder.appendLiteral(", ");
64 builder.append(error->message);
65 builder.appendLiteral(" occurred during fetching inspector resource files.</body></html>");
66 CString cstr = builder.toString().utf8();
95 StringBuilder builder; local
96 builder.appendLiteral("[ ");
101 builder
[all...]
/macosx-10.10/WebCore-7600.1.25/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.appendNumber(proxyServer.port());
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/efl/tests/UnitTestUtils/
H A DEWK2UnitTestEnvironment.cpp58 StringBuilder builder; local
59 builder.appendLiteral(TEST_RESOURCES_DIR "/");
60 builder.append(resource);
61 return builder.toString().utf8();
66 StringBuilder builder; local
67 builder.appendLiteral(TEST_THEME_DIR "/");
68 builder.append(theme);
69 return builder.toString().utf8();
/macosx-10.10/CPANInternal-159.1/HTTP-Proxy-0.300/
H A DBuild.PL5 my $builder = Module::Build->new(
28 $builder->create_build_script();
/macosx-10.10/WebCore-7600.1.25/bindings/js/
H A DJSCryptoKeyCustom.cpp40 JSCryptoAlgorithmBuilder builder(exec);
41 impl().buildAlgorithmDescription(builder);
42 return builder.result();
/macosx-10.10/llvmCore-3425.0.34/unittests/Transforms/Utils/
H A DLocal.cpp23 IRBuilder<> builder(C);
29 builder.SetInsertPoint(bb0);
30 PHINode *phi = builder.CreatePHI(Type::getInt32Ty(C), 2);
31 BranchInst *br0 = builder.CreateCondBr(builder.getTrue(), bb0, bb1);
33 builder.SetInsertPoint(bb1);
34 BranchInst *br1 = builder.CreateBr(bb0);
46 builder.SetInsertPoint(bb0);
47 phi = builder.CreatePHI(Type::getInt32Ty(C), 0);
51 builder
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/inspector/
H A DIdentifiersFactory.cpp56 StringBuilder builder; local
57 builder.appendNumber(s_processId);
58 builder.append('.');
59 builder.append(id);
60 return builder.toString();
/macosx-10.10/Security-57031.1.35/Security/sec/securityd/
H A DSecTrustServer.c642 static bool SecPathBuilderGetNext(SecPathBuilderRef builder);
643 static bool SecPathBuilderValidatePath(SecPathBuilderRef builder);
644 static bool SecPathBuilderDidValidatePath(SecPathBuilderRef builder);
645 static bool SecPathBuilderComputeDetails(SecPathBuilderRef builder);
646 static bool SecPathBuilderReportResult(SecPathBuilderRef builder);
649 static bool SecPathBuilderIsAnchor(SecPathBuilderRef builder,
656 static void SecPathBuilderLeafCertificateChecks(SecPathBuilderRef builder, argument
661 builder->leafDetails = CFArrayCreate(kCFAllocatorDefault,
664 SecPVCRef pvc = &builder->path;
665 SecPVCSetPath(pvc, path, builder
669 SecPathBuilderInit(SecPathBuilderRef builder, CFArrayRef certificates, CFArrayRef anchors, bool anchorsOnly, CFArrayRef policies, CFAbsoluteTime verifyTime, CFArrayRef accessGroups, SecPathBuilderCompleted completed, const void *context) argument
750 SecPathBuilderRef builder = malloc(sizeof(*builder)); local
756 SecPathBuilderDestroy(SecPathBuilderRef builder) argument
776 SecPathBuilderCanAccessNetwork(SecPathBuilderRef builder) argument
780 SecPathBuilderSetCanAccessNetwork(SecPathBuilderRef builder, bool allow) argument
801 SecPathBuilderIsAnchor(SecPathBuilderRef builder, SecCertificateRef certificate) argument
821 SecPathBuilderIsPartial(SecPathBuilderRef builder, SecCertificatePathRef path) argument
857 SecPathBuilderProccessParents(SecPathBuilderRef builder, SecCertificatePathRef partial, CFArrayRef parents) argument
909 SecPathBuilderRef builder = (SecPathBuilderRef)context; local
919 SecPathBuilderGetNext(SecPathBuilderRef builder) argument
1039 SecPathBuilderReject(SecPathBuilderRef builder) argument
1097 SecPathBuilderAccept(SecPathBuilderRef builder) argument
1119 SecPathBuilderValidatePath(SecPathBuilderRef builder) argument
1131 SecPathBuilderDidValidatePath(SecPathBuilderRef builder) argument
1142 SecPathBuilderComputeDetails(SecPathBuilderRef builder) argument
1185 SecPathBuilderReportResult(SecPathBuilderRef builder) argument
1234 SecPathBuilderStep(SecPathBuilderRef builder) argument
1278 SecPathBuilderGetQueue(SecPathBuilderRef builder) argument
1303 SecPathBuilderRef builder = SecPathBuilderCreate(certificates, anchors, local
[all...]
/macosx-10.10/ICU-531.30/icuSources/common/
H A Drbbirb.cpp241 RBBIRuleBuilder builder(rules, parseError, status);
245 builder.fScanner->parse();
253 builder.fSetBuilder->build();
259 builder.fForwardTables = new RBBITableBuilder(&builder, &builder.fForwardTree);
260 builder.fReverseTables = new RBBITableBuilder(&builder, &builder.fReverseTree);
261 builder
[all...]
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSFontFeatureValue.cpp44 StringBuilder builder; local
45 builder.append('\'');
46 builder.append(m_tag);
47 builder.appendLiteral("' ");
48 builder.appendNumber(m_value);
49 return builder.toString();
/macosx-10.10/llvmCore-3425.0.34/examples/HowToUseJIT/
H A DHowToUseJIT.cpp73 // Create a basic block builder with default parameters. The builder will
75 IRBuilder<> builder(BB);
78 Value *One = builder.getInt32(1);
86 Value *Add = builder.CreateAdd(One, ArgX);
89 builder.CreateRet(Add);
103 // Tell the basic block builder to attach itself to the new basic block
104 builder.SetInsertPoint(BB);
107 Value *Ten = builder.getInt32(10);
110 CallInst *Add1CallRes = builder
[all...]
/macosx-10.10/JavaScriptCore-7600.1.17/ftl/
H A DFTLAbbreviations.h162 static inline LValue buildPhi(LBuilder builder, LType type) { return llvm->BuildPhi(builder, type, ""); } argument
179 static inline LValue buildPhi(LBuilder builder, LType type, ValueFromBlock value1) argument
181 LValue result = buildPhi(builder, type);
186 LBuilder builder, LType type, ValueFromBlock value1, ValueFromBlock value2)
188 LValue result = buildPhi(builder, type);
193 static inline LValue buildAlloca(LBuilder builder, LType type) { return llvm->BuildAlloca(builder, type, ""); } argument
194 static inline LValue buildAdd(LBuilder builder, LValue left, LValue right) { return llvm->BuildAdd(builder, lef argument
185 buildPhi( LBuilder builder, LType type, ValueFromBlock value1, ValueFromBlock value2) argument
195 buildSub(LBuilder builder, LValue left, LValue right) argument
196 buildMul(LBuilder builder, LValue left, LValue right) argument
197 buildDiv(LBuilder builder, LValue left, LValue right) argument
198 buildRem(LBuilder builder, LValue left, LValue right) argument
199 buildNeg(LBuilder builder, LValue value) argument
200 buildFAdd(LBuilder builder, LValue left, LValue right) argument
201 buildFSub(LBuilder builder, LValue left, LValue right) argument
202 buildFMul(LBuilder builder, LValue left, LValue right) argument
203 buildFDiv(LBuilder builder, LValue left, LValue right) argument
204 buildFRem(LBuilder builder, LValue left, LValue right) argument
205 buildFNeg(LBuilder builder, LValue value) argument
206 buildAnd(LBuilder builder, LValue left, LValue right) argument
207 buildOr(LBuilder builder, LValue left, LValue right) argument
208 buildXor(LBuilder builder, LValue left, LValue right) argument
209 buildShl(LBuilder builder, LValue left, LValue right) argument
210 buildAShr(LBuilder builder, LValue left, LValue right) argument
211 buildLShr(LBuilder builder, LValue left, LValue right) argument
212 buildNot(LBuilder builder, LValue value) argument
213 buildLoad(LBuilder builder, LValue pointer) argument
214 buildStore(LBuilder builder, LValue value, LValue pointer) argument
215 buildSExt(LBuilder builder, LValue value, LType type) argument
216 buildZExt(LBuilder builder, LValue value, LType type) argument
217 buildFPToSI(LBuilder builder, LValue value, LType type) argument
218 buildFPToUI(LBuilder builder, LValue value, LType type) argument
219 buildSIToFP(LBuilder builder, LValue value, LType type) argument
220 buildUIToFP(LBuilder builder, LValue value, LType type) argument
221 buildIntCast(LBuilder builder, LValue value, LType type) argument
222 buildFPCast(LBuilder builder, LValue value, LType type) argument
223 buildIntToPtr(LBuilder builder, LValue value, LType type) argument
224 buildPtrToInt(LBuilder builder, LValue value, LType type) argument
225 buildBitCast(LBuilder builder, LValue value, LType type) argument
226 buildICmp(LBuilder builder, LIntPredicate cond, LValue left, LValue right) argument
227 buildFCmp(LBuilder builder, LRealPredicate cond, LValue left, LValue right) argument
228 buildInsertElement(LBuilder builder, LValue vector, LValue element, LValue index) argument
231 buildFence(LBuilder builder, LAtomicOrdering ordering, SynchronizationScope scope = CrossThread) argument
236 buildCall(LBuilder builder, LValue function, const LValue* args, unsigned numArgs) argument
241 buildCall(LBuilder builder, LValue function, const VectorType& vector) argument
245 buildCall(LBuilder builder, LValue function) argument
249 buildCall(LBuilder builder, LValue function, LValue arg1) argument
253 buildCall(LBuilder builder, LValue function, LValue arg1, LValue arg2) argument
258 buildCall(LBuilder builder, LValue function, LValue arg1, LValue arg2, LValue arg3) argument
263 buildCall(LBuilder builder, LValue function, LValue arg1, LValue arg2, LValue arg3, LValue arg4) argument
268 buildCall(LBuilder builder, LValue function, LValue arg1, LValue arg2, LValue arg3, LValue arg4, LValue arg5) argument
273 buildCall(LBuilder builder, LValue function, LValue arg1, LValue arg2, LValue arg3, LValue arg4, LValue arg5, LValue arg6) argument
278 buildCall(LBuilder builder, LValue function, LValue arg1, LValue arg2, LValue arg3, LValue arg4, LValue arg5, LValue arg6, LValue arg7) argument
283 buildCall(LBuilder builder, LValue function, LValue arg1, LValue arg2, LValue arg3, LValue arg4, LValue arg5, LValue arg6, LValue arg7, LValue arg8) argument
289 buildExtractValue(LBuilder builder, LValue aggVal, unsigned index) argument
290 buildSelect(LBuilder builder, LValue condition, LValue taken, LValue notTaken) argument
291 buildBr(LBuilder builder, LBasicBlock destination) argument
292 buildCondBr(LBuilder builder, LValue condition, LBasicBlock taken, LBasicBlock notTaken) argument
293 buildSwitch(LBuilder builder, LValue value, LBasicBlock fallThrough, unsigned numCases) argument
296 buildSwitch(LBuilder builder, LValue value, const VectorType& cases, LBasicBlock fallThrough) argument
303 buildRet(LBuilder builder, LValue value) argument
304 buildUnreachable(LBuilder builder) argument
[all...]

Completed in 327 milliseconds

12345678