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

123456

/macosx-10.10.1/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...]
H A DConsoleClient.cpp42 static void appendURLAndPosition(StringBuilder& builder, const String& url, unsigned lineNumber, unsigned columnNumber) argument
47 builder.append(url);
50 builder.append(':');
51 builder.appendNumber(lineNumber);
55 builder.append(':');
56 builder.appendNumber(columnNumber);
60 static void appendMessagePrefix(StringBuilder& builder, MessageSource source, MessageType type, MessageLevel level) argument
123 builder.append(sourceString);
124 builder.append(' ');
125 builder
130 StringBuilder builder; local
153 StringBuilder builder; local
[all...]
H A DJSONObject.cpp258 static void appendStringToStringBuilder(StringBuilder& builder, const CharType* data, int length) argument
264 builder.append(data + start, i - start);
269 builder.append('\\');
270 builder.append('t');
273 builder.append('\\');
274 builder.append('r');
277 builder.append('\\');
278 builder.append('n');
281 builder.append('\\');
282 builder
306 escapeStringToBuilder(StringBuilder& builder, const String& message) argument
314 appendQuotedString(StringBuilder& builder, const String& value) argument
352 appendStringifiedValue(StringBuilder& builder, JSValue value, JSObject* holder, const PropertyNameForFunctionCall& propertyName) argument
480 appendNextProperty(Stringifier& stringifier, StringBuilder& builder) argument
[all...]
/macosx-10.10.1/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.1/CPANInternal-159.1/Class-Std-0.011/
H A DBuild.PL5 my $builder = Module::Build->new(
18 $builder->create_build_script();
/macosx-10.10.1/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.1/CPANInternal-159.1/Config-Std-0.900/
H A DBuild.PL5 my $builder = Module::Build->new(
30 $builder->create_build_script();
/macosx-10.10.1/CPANInternal-159.1/Config-Std-0.901/
H A DBuild.PL5 my $builder = Module::Build->new(
30 $builder->create_build_script();
/macosx-10.10.1/CPANInternal-159.1/HTTP-Proxy-0.25/
H A DBuild.PL5 my $builder = Module::Build->new(
18 $builder->create_build_script();
/macosx-10.10.1/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.1/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.1/CPANInternal-159.1/HTTP-Proxy-0.300/
H A DBuild.PL5 my $builder = Module::Build->new(
28 $builder->create_build_script();
/macosx-10.10.1/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.1/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.1/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...]
H A DSecTrustServer.h62 /* Returns a new trust path builder and policy evaluation engine instance. */
68 /* Returns true if it's ok to perform network operations for this builder. */
69 bool SecPathBuilderCanAccessNetwork(SecPathBuilderRef builder);
71 /* Disable or enable network access for this builder if allow is false
73 void SecPathBuilderSetCanAccessNetwork(SecPathBuilderRef builder, bool allow);
79 bool SecPathBuilderStep(SecPathBuilderRef builder);
81 /* Return the dispatch queue to be used by this builder. */
82 dispatch_queue_t SecPathBuilderGetQueue(SecPathBuilderRef builder);
/macosx-10.10.1/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.1/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.1/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...]
/macosx-10.10.1/llvmCore-3425.0.34/examples/BrainF/
H A DBrainF.cpp48 delete builder;
78 builder = new IRBuilder<>(BasicBlock::Create(C, label, brainf_func));
82 BasicBlock* BB = builder->GetInsertBlock();
101 CallInst *memset_call = builder->
108 ptr_arrmax = builder->
113 curhead = builder->CreateGEP(ptr_arr,
204 CallInst *getchar_call = builder->CreateCall(getchar_func, tapereg);
209 Value *tape_1 = builder->
213 builder->CreateStore(tape_1, curhead);
220 LoadInst *tape_0 = builder
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/examples/ExceptionDemo/
H A DExceptionDemo.cpp866 /// @param builder builder instance
874 llvm::IRBuilder<> &builder,
894 stringVar = builder.CreateAlloca(stringConstant->getType());
895 builder.CreateStore(stringConstant, stringVar);
898 llvm::Value *cast = builder.CreatePointerCast(stringVar,
899 builder.getInt8PtrTy());
900 builder.CreateCall(printFunct, cast);
908 /// @param builder builder instanc
872 generateStringPrint(llvm::LLVMContext &context, llvm::Module &module, llvm::IRBuilder<> &builder, std::string toPrint, bool useGlobal = true) argument
916 generateIntegerPrint(llvm::LLVMContext &context, llvm::Module &module, llvm::IRBuilder<> &builder, llvm::Function &printFunct, llvm::Value &toPrint, std::string format, bool useGlobal = true) argument
968 createFinallyBlock(llvm::LLVMContext &context, llvm::Module &module, llvm::IRBuilder<> &builder, llvm::Function &toAddTo, std::string &blockName, std::string &functionId, llvm::BasicBlock &terminatorBlock, llvm::BasicBlock &unwindResumeBlock, llvm::Value **exceptionCaughtFlag, llvm::Value **exceptionStorage, llvm::Value **caughtResultStorage) argument
1044 createCatchBlock(llvm::LLVMContext &context, llvm::Module &module, llvm::IRBuilder<> &builder, llvm::Function &toAddTo, std::string &blockName, std::string &functionId, llvm::BasicBlock &terminatorBlock, llvm::Value &exceptionCaughtFlag) argument
1097 createCatchWrappedInvokeFunction(llvm::Module &module, llvm::IRBuilder<> &builder, llvm::FunctionPassManager &fpm, llvm::Function &toInvoke, std::string ourId, unsigned numExceptionsToCatch, unsigned exceptionTypesToCatch[]) argument
1364 createThrowExceptionFunction(llvm::Module &module, llvm::IRBuilder<> &builder, llvm::FunctionPassManager &fpm, std::string ourId, int32_t nativeThrowType, llvm::Function &nativeThrowFunct) argument
1482 createUnwindExceptionTest(llvm::Module &module, llvm::IRBuilder<> &builder, llvm::FunctionPassManager &fpm, std::string nativeThrowFunctName) argument
1619 createStandardUtilityFunctions(unsigned numTypeInfos, llvm::Module &module, llvm::IRBuilder<> &builder) argument
[all...]
/macosx-10.10.1/WebKit-7600.1.25/win/
H A DWebKitStatistics.cpp144 StringBuilder builder; local
146 builder.appendNumber(slot.value);
147 builder.append('\t');
148 builder.append(slot.key);
149 builder.append('\n');
151 *output = BString(builder.toString()).release();
/macosx-10.10.1/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter5/
H A Dcodegen.ml11 let builder = builder context var
25 | '+' -> build_fadd lhs_val rhs_val "addtmp" builder
26 | '-' -> build_fsub lhs_val rhs_val "subtmp" builder
27 | '*' -> build_fmul lhs_val rhs_val "multmp" builder
30 let i = build_fcmp Fcmp.Ult lhs_val rhs_val "cmptmp" builder in
31 build_uitofp i double_type "booltmp" builder
47 build_call callee args "calltmp" builder
53 let cond_val = build_fcmp Fcmp.One cond zero "ifcond" builder in
57 let start_bb = insertion_block builder i
[all...]
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Controllers/
H A DFormatterSourceMap.js35 WebInspector.FormatterSourceMap.fromBuilder = function(builder)
37 return new WebInspector.FormatterSourceMap(builder.originalLineEndings, builder.formattedLineEndings, builder.mapping);
/macosx-10.10.1/llvmCore-3425.0.34/examples/OCaml-Kaleidoscope/Chapter6/
H A Dcodegen.ml11 let builder = builder context var
28 build_call callee [|operand|] "unop" builder
34 | '+' -> build_fadd lhs_val rhs_val "addtmp" builder
35 | '-' -> build_fsub lhs_val rhs_val "subtmp" builder
36 | '*' -> build_fmul lhs_val rhs_val "multmp" builder
39 let i = build_fcmp Fcmp.Ult lhs_val rhs_val "cmptmp" builder in
40 build_uitofp i double_type "booltmp" builder
50 build_call callee [|lhs_val; rhs_val|] "binop" builder
65 build_call callee args "calltmp" builder
[all...]

Completed in 287 milliseconds

123456