/external/clang/tools/libclang/ |
CIndexCXX.cpp | 101 ClassTemplatePartialSpecializationDecl *> Result 103 if (Result.is<ClassTemplateDecl *>()) 104 Template = Result.get<ClassTemplateDecl *>(); 106 Template = Result.get<ClassTemplatePartialSpecializationDecl *>();
|
/external/iputils/ |
ipg | 17 local result 21 result=`cat ${PGDEV} | fgrep "Result: OK:"` 22 if [ "$result" = "" ]; then 23 cat ${PGDEV} | fgrep Result:
|
/external/llvm/lib/Object/ |
Archive.cpp | 118 error_code Archive::Child::getName(StringRef &Result) const { 123 Result = name; 127 Result = name; 150 Result = StringRef(addr, End); 152 Result = addr; 159 Result = Data.substr(sizeof(ArchiveMemberHeader), name_size) 165 Result = name.substr(0, name.size() - 1); 167 Result = name; 171 error_code Archive::Child::getMemoryBuffer(OwningPtr<MemoryBuffer> &Result, 177 Result.reset(MemoryBuffer::getMemBuffer 433 Archive::child_iterator result; local [all...] |
/external/llvm/lib/Target/NVPTX/ |
NVPTXUtilities.h | 69 std::vector<T> Result; 70 Result.push_back(A); 72 Result.push_back(Val); 74 return Result;
|
/external/llvm/tools/llvm-link/ |
llvm-link.cpp | 60 Module* Result = 0; 62 Result = ParseIRFile(FN, Err, Context); 63 if (Result) return Result; // Load successful!
|
/external/skia/src/animator/ |
SkOperandInterpolator.h | 36 Result timeToValues(SkMSec time, SkOperand values[]) const;
|
/frameworks/base/tools/layoutlib/bridge/src/android/animation/ |
AnimationThread.java | 21 import com.android.ide.common.rendering.api.Result; 22 import com.android.ide.common.rendering.api.Result.Status; 80 public abstract Result preAnimation(); 105 Result result = preAnimation(); local 106 if (result.isSuccess() == false) { 107 mListener.done(result); 141 result = mSession.acquire(250); 142 if (result.isSuccess() == false) { 143 mListener.done(result); [all...] |
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
RenderAction.java | 19 import static com.android.ide.common.rendering.api.Result.Status.ERROR_LOCK_INTERRUPTED; 20 import static com.android.ide.common.rendering.api.Result.Status.ERROR_TIMEOUT; 21 import static com.android.ide.common.rendering.api.Result.Status.SUCCESS; 28 import com.android.ide.common.rendering.api.Result; 95 public Result init(long timeout) { 96 // acquire the lock. if the result is null, lock was just acquired, otherwise, return 97 // the result. 98 Result result = acquireLock(timeout); local 99 if (result != null) 162 Result result = acquireLock(timeout); local [all...] |
/external/chromium_org/third_party/re2/re2/ |
variadic_function.h | 10 template <typename Result, typename Param0, typename Param1, typename Arg, 11 Result (*Func)(Param0, Param1, const Arg* const [], int count)> 14 Result operator()(Param0 p0, Param1 p1) const { 18 Result operator()(Param0 p0, Param1 p1, const Arg& a0) const { 23 Result operator()(Param0 p0, Param1 p1, const Arg& a0, const Arg& a1) const { 28 Result operator()(Param0 p0, Param1 p1, const Arg& a0, const Arg& a1, 34 Result operator()(Param0 p0, Param1 p1, const Arg& a0, const Arg& a1, 40 Result operator()(Param0 p0, Param1 p1, const Arg& a0, const Arg& a1, 46 Result operator()(Param0 p0, Param1 p1, const Arg& a0, const Arg& a1, 52 Result operator()(Param0 p0, Param1 p1, const Arg& a0, const Arg& a1 [all...] |
/external/regex-re2/re2/ |
variadic_function.h | 10 template <typename Result, typename Param0, typename Param1, typename Arg, 11 Result (*Func)(Param0, Param1, const Arg* const [], int count)> 16 Result operator()(Param0 p0, Param1 p1) const { 20 Result operator()(Param0 p0, Param1 p1, const Arg& a0) const { 25 Result operator()(Param0 p0, Param1 p1, const Arg& a0, const Arg& a1) const { 30 Result operator()(Param0 p0, Param1 p1, const Arg& a0, const Arg& a1, 36 Result operator()(Param0 p0, Param1 p1, const Arg& a0, const Arg& a1, 42 Result operator()(Param0 p0, Param1 p1, const Arg& a0, const Arg& a1, 48 Result operator()(Param0 p0, Param1 p1, const Arg& a0, const Arg& a1, 54 Result operator()(Param0 p0, Param1 p1, const Arg& a0, const Arg& a1 [all...] |
/external/chromium_org/gpu/command_buffer/client/ |
gles2_implementation_unittest_autogen.h | 129 typedef cmds::CheckFramebufferStatus::Result Result; 132 GetExpectedResultMemory(sizeof(cmds::CheckFramebufferStatus::Result)); 139 GLboolean result = gl_->CheckFramebufferStatus(1); local 141 EXPECT_TRUE(result); 529 typedef cmds::GetBooleanv::Result Result; 530 Result::Type result = 0; local 535 .WillOnce(SetMemory(result1.ptr, SizedResultHelper<Result::Type>(1)) 547 Result::Type result = 0; local 564 Result::Type result = 0; local 581 Result::Type result = 0; local 602 Result::Type result = 0; local 619 Result::Type result = 0; local 637 Result::Type result = 0; local 654 Result::Type result = 0; local 673 Result::Type result = 0; local 690 Result::Type result = 0; local 710 Result::Type result = 0; local 728 Result::Type result = 0; local 767 GLboolean result = gl_->IsBuffer(1); local 787 GLboolean result = gl_->IsEnabled(1); local 807 GLboolean result = gl_->IsFramebuffer(1); local 827 GLboolean result = gl_->IsProgram(1); local 847 GLboolean result = gl_->IsRenderbuffer(1); local 867 GLboolean result = gl_->IsShader(1); local 887 GLboolean result = gl_->IsTexture(1); local 1674 GLboolean result = gl_->IsVertexArrayOES(1); local [all...] |
/external/llvm/utils/TableGen/ |
CodeGenInstruction.cpp | 374 // Add the prefix to the result. 414 /// successful match, with ResOp set to the result operand to be used. 415 bool CodeGenInstAlias::tryAliasOpMatch(DagInit *Result, unsigned AliasOpNo, 419 Init *Arg = Result->getArg(AliasOpNo); 425 if (Result->getArgName(AliasOpNo).empty()) 426 PrintFatalError(Loc, "result argument #" + utostr(AliasOpNo) + 428 ResOp = ResultOperand(Result->getArgName(AliasOpNo), ADI->getDef()); 440 ResOp = ResultOperand(Result->getArgName(AliasOpNo), ADI->getDef()); 465 if (!Result->getArgName(AliasOpNo).empty()) 466 PrintFatalError(Loc, "result fixed register argument must [all...] |
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
ElemTextLiteral.java | 79 * Set the characters that will be output to the result tree.. 81 * @param v Array of characters that will be output to the result tree 89 * Get the characters that will be output to the result tree.. 91 * @return Array of characters that will be output to the result tree 194 * Copy the text literal to the result tree. 210 rth.processingInstruction(javax.xml.transform.Result.PI_DISABLE_OUTPUT_ESCAPING, ""); 217 rth.processingInstruction(javax.xml.transform.Result.PI_ENABLE_OUTPUT_ESCAPING, "");
|
/external/chromium/chrome/browser/printing/ |
print_job_worker.h | 99 void GetSettingsWithUIDone(PrintingContext::Result result); 106 void GetSettingsDone(PrintingContext::Result result);
|
/external/chromium/chrome/browser/remoting/ |
directory_add_request_unittest.cc | 17 void(DirectoryAddRequest::Result, 29 DirectoryAddRequest::Result expected_result,
|
/external/chromium_org/chrome/browser/captive_portal/ |
captive_portal_tab_reloader.h | 33 // Only supports SSL main frames which end at error pages as a result of 36 // login page. SSL requests, however, may be silently blackholed, or result 51 // provisional load starts, it gets a captive portal result, or the load 59 // response to receiving a captive portal result other than 86 // unless this is a login tab. Each load will eventually result in a call to 109 virtual void OnCaptivePortalResults(Result previous_result, Result result);
|
/external/chromium_org/chrome/browser/printing/ |
print_job_worker.h | 107 void GetSettingsWithUIDone(PrintingContext::Result result); 114 void GetSettingsDone(PrintingContext::Result result);
|
/external/chromium_org/content/browser/renderer_host/input/ |
synthetic_gesture_controller.cc | 44 SyntheticGesture::Result result = local 48 if (result == SyntheticGesture::GESTURE_RUNNING) { 53 StopGesture(*pending_gesture_queue_.front(), result); 72 const SyntheticGesture& gesture, SyntheticGesture::Result result) { 73 DCHECK_NE(result, SyntheticGesture::GESTURE_RUNNING); 77 gesture_target_->OnSyntheticGestureCompleted(result);
|
/external/chromium_org/crypto/ |
p224_spake.h | 36 enum Result { 63 Result ProcessMessage(const base::StringPiece& message); 69 // The key established as result of the key exchange. Must be called
|
/external/chromium_org/net/dns/ |
dns_response.h | 86 enum Result { 151 Result ParseToAddressList(AddressList* addr_list, base::TimeDelta* ttl) const;
|
mdns_client.h | 30 // Used to signify what type of result the transaction has recieved. 31 enum Result { 52 // Transaction should return only one result, and stop listening after it. 53 // Note that single result transactions will signal when their timeout is 54 // reached, whereas multi-result transactions will not. 64 typedef base::Callback<void(Result, const RecordParsed*)>
|
/external/chromium_org/printing/ |
printing_context.cc | 45 PrintingContext::Result PrintingContext::OnError() { 50 PrintingContext::Result PrintingContext::UpdatePrintSettings(
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/ |
AMDILIntrinsicInfo.cpp | 50 std::string Result(names[IntrID - Intrinsic::num_intrinsics]); 51 return Result;
|
/external/clang/include/clang/Lex/ |
PreprocessorLexer.h | 86 virtual void IndirectLex(Token& Result) = 0; 138 /// return a result EOD token. 139 void LexIncludeFilename(Token &Result);
|
/external/junit/src/org/junit/runner/ |
Result.java | 13 * A <code>Result</code> collects and summarizes information from running multiple 17 public class Result implements Serializable { 74 public void testRunFinished(Result result) throws Exception {
|