Searched refs:Body (Results 1 - 25 of 38) sorted by relevance

12

/macosx-10.10.1/CPANInternal-159.1/SOAP-Lite-1.11/t/
H A D03-server.t27 <soap:Body>
32 </soap:Body>
45 <soap:Body>
50 </soap:Body>
68 <soap:Body>
73 </soap:Body>
93 <soap:Body>
98 </soap:Body>
130 <soap:Body>
135 </soap:Body>
[all...]
H A D38-packager.t35 <SOAP-ENV:Body>
44 </SOAP-ENV:Body>
102 <SOAP-ENV:Body>
111 </SOAP-ENV:Body>
150 <SOAP-ENV:Body>
159 </SOAP-ENV:Body>
H A D013-array-deserialization.t27 <soapenv:Body>
63 </soapenv:Body>
H A D04-attach-cid-encoded.t47 <soap:Body>
57 </soap:Body>
112 <soap:Body>
118 </soap:Body>
156 <soap:Body>
162 </soap:Body>
196 <soap:Body>
202 </soap:Body>
H A D02-payload.t39 <soap:Body>
49 </soap:Body>
63 <soap:Body>
64 <soap:Fault><faultcode>soap:Client</faultcode><faultstring>Application Error</faultstring><detail>Invalid Password</detail></soap:Fault></soap:Body></soap:Envelope>
94 <soap:Body>
110 </soap:Body>
114 # should return STRING '/Envelope/Body/[1]/[1]'
133 $deserialized->match('//Body/[1]/[1]'); # match path and change current node on success
148 <soap:Body>
154 </soap:Body>
[all...]
H A D04-attach.t46 <soap:Body>
56 </soap:Body>
113 <soap:Body>
119 </soap:Body>
160 <soap:Body>
166 </soap:Body>
202 <soap:Body>
208 </soap:Body>
249 <soap:Body>
255 </soap:Body>
[all...]
H A D01-core.t32 ok($serialized =~ m!<soap:Body><namesp(\d):testMethod><test xsi:type="xsd:int">123</test></namesp\1:testMethod></soap:Body>!);
38 ok($serialized =~ m!<soap:Envelope(?: xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"| xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"| xmlns:xsd="http://www.w3.org/2001/XMLSchema"| soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"| xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"){5}><soap:Body><testMethod xmlns="urn:Test"><test xsi:type="xsd:int">123</test></testMethod></soap:Body></soap:Envelope>!);
59 ok($serialized =~ m!<soap:Body><testMethod xmlns="urn:Test"><test xsi:type="xsd:int">123</test></testMethod></soap:Body>!);
264 my $input = '<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/1999/XMLSchema" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"><soap:Body><getFooResponse xmlns="http://example.com/v1"><getFooReturn><id>100</id><complexFoo><arrayFoo>one</arrayFoo><arrayFoo>two</arrayFoo></complexFoo></getFooReturn></getFooResponse></soap:Body></soap:Envelope>';
275 $input = '<?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/1999/XMLSchema" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"><soap:Body><getFooResponse xmlns="http://example.com/v1"><getFooReturn><id>100</id><complexFoo><arrayFoo>one</arrayFoo></complexFoo></getFooReturn></getFooResponse></soap:Body></soa
[all...]
H A D05-customxml.t24 $r = $deserialized->valueof('/Envelope/Body');
47 <Body>
203 </Body>
/macosx-10.10.1/CPANInternal-159.1/SOAP-Lite-1.11/examples/
H A Dcustomschema.pl29 <soap:Body soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/">
75 </soap:Body>
/macosx-10.10.1/llvmCore-3425.0.34/tools/lli/
H A DRecordingMemoryManager.h68 void deallocateFunctionBody(void *Body);
H A DRecordingMemoryManager.cpp70 void RecordingMemoryManager::deallocateFunctionBody(void *Body) { argument
/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter7/
H A Dtoy.cpp174 ExprAST *Start, *End, *Step, *Body; member in class:ForExprAST
178 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
185 ExprAST *Body; member in class:VarExprAST
189 : VarNames(varnames), Body(body) {}
224 ExprAST *Body; member in class:FunctionAST
227 : Proto(proto), Body(body) {}
381 ExprAST *Body = ParseExpression(); local
382 if (Body == 0) return 0;
384 return new ForExprAST(IdName, Start, End, Step, Body);
426 ExprAST *Body local
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp154 ExprAST *Start, *End, *Step, *Body; member in class:ForExprAST
158 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
178 ExprAST *Body; member in class:FunctionAST
181 : Proto(proto), Body(body) {}
335 ExprAST *Body = ParseExpression(); local
336 if (Body == 0) return 0;
338 return new ForExprAST(IdName, Start, End, Step, Body);
606 if (Body->Codegen() == 0)
707 if (Value *RetVal = Body->Codegen()) {
/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp169 ExprAST *Start, *End, *Step, *Body; member in class:ForExprAST
173 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
206 ExprAST *Body; member in class:FunctionAST
209 : Proto(proto), Body(body) {}
363 ExprAST *Body = ParseExpression(); local
364 if (Body == 0) return 0;
366 return new ForExprAST(IdName, Start, End, Step, Body);
710 if (Body->Codegen() == 0)
815 if (Value *RetVal = Body->Codegen()) {
/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/ExecutionEngine/
H A DJITMemoryManager.h142 virtual void deallocateFunctionBody(void *Body) = 0;
/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp142 ExprAST *Body; member in class:FunctionAST
145 : Proto(proto), Body(body) {}
454 if (Value *RetVal = Body->Codegen()) {
/macosx-10.10.1/CPANInternal-159.1/SOAP-Lite-1.11/examples/XML/
H A Dcustomxml.pl10 -> valueof('/Envelope/Body');
23 <Body>
179 </Body>
/macosx-10.10.1/vim-55/runtime/syntax/
H A Dslrnsc.vim40 syn keyword slrnscItem contained Age Bytes Date Expires From Has-Body Lines Message-Id Newsgroup References Subject Xref
44 syn match slrnscScoreItem contained "^\s*\~\=\(Age\|Bytes\|Has-Body\|Lines\):\s*\d\+\s*$" skipempty nextgroup=slrnscScoreItem contains=slrnscOper,slrnscItem,slrnscDelim,slrnscNumber
/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp131 ExprAST *Body; member in class:FunctionAST
134 : Proto(proto), Body(body) {}
/macosx-10.10.1/llvmCore-3425.0.34/unittests/ExecutionEngine/JIT/
H A DJITTest.cpp135 DeallocateFunctionBodyCall(const void *Body) : Body(Body) {} argument
136 const void *Body; member in struct:__anon10554::RecordingJITMemoryManager::DeallocateFunctionBodyCall
139 virtual void deallocateFunctionBody(void *Body) { argument
140 deallocateFunctionBodyCalls.push_back(DeallocateFunctionBodyCall(Body));
141 Base->deallocateFunctionBody(Body);
447 FunctionsDeallocated.insert(RJMM->deallocateFunctionBodyCalls[i].Body);
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools2toc/
H A Dexport_html.tcl121 Body
160 proc Body {} { procedure
/macosx-10.10.1/llvmCore-3425.0.34/lib/MC/MCParser/
H A DAsmParser.cpp61 StringRef Body; member in struct:__anon10081::Macro
66 Name(N), Body(B), Parameters(P) {}
232 bool expandMacro(raw_svector_ostream &OS, StringRef Body,
1522 bool AsmParser::expandMacro(raw_svector_ostream &OS, StringRef Body, argument
1532 while (!Body.empty()) {
1534 std::size_t End = Body.size(), Pos = 0;
1539 if (Body[Pos] != '$' || Pos + 1 == End)
1542 char Next = Body[Pos + 1];
1547 if (Body[Pos] == '\\' && Pos + 1 != End)
1553 OS << Body
1805 StringRef Body = M->Body; local
3313 StringRef Body = StringRef(BodyStart, BodyEnd - BodyStart); local
3416 StringRef Body = StringRef(BodyStart, BodyEnd - BodyStart); local
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp149 ExprAST *Body; member in class:FunctionAST
152 : Proto(proto), Body(body) {}
462 if (Value *RetVal = Body->Codegen()) {
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools2idx/
H A Dexport_html.tcl138 Body
177 proc Body {} { procedure
/macosx-10.10.1/llvmCore-3425.0.34/lib/ExecutionEngine/JIT/
H A DJITMemoryManager.cpp548 void deallocateFunctionBody(void *Body) { argument
549 if (Body) deallocateBlock(Body);

Completed in 160 milliseconds

12