/external/icu4c/i18n/unicode/ |
tztrans.h | 39 * @param to The time zone rule used after the transition. 42 TimeZoneTransition(UDate time, const TimeZoneRule& from, const TimeZoneRule& to); 52 * @param source The TimeZoneTransition object to be copied. 73 * @param right The object to be copied. 81 * @param that The object to be compared with. 90 * @param that The object to be compared with. 136 * @param to The time zone rule used after the transition. 139 void setTo(const TimeZoneRule& to); 144 * @param to The time zone rule used after the transition. 147 void adoptTo(TimeZoneRule* to); [all...] |
/external/nist-sip/java/gov/nist/core/ |
ServerLogger.java | 4 * This code has been contributed to the public domain. 11 * not limited to the correctness, accuracy, reliability or usefulness of 14 * Permission to use this software is contingent upon your acceptance 34 void logMessage(SIPMessage message, String from, String to, boolean sender, long time); 36 void logMessage(SIPMessage message, String from, String to, String status, 39 void logMessage(SIPMessage message, String from, String to, String status,
|
/external/nist-sip/java/gov/nist/javax/sip/parser/ |
ReferToParser.java | 6 * Pursuant to title 15 Untied States Code Section 105, works of NIST 7 * employees are not subject to copyright protection in the United States 8 * and are considered to be in the public domain. As a result, a formal 9 * license is not needed to use the software. 17 * not limited to the correctness, accuracy, reliability or usefulness of 20 * Permission to use this software is contingent upon your acceptance 32 * To Header parser. 45 * @param referTo String to set 64 String to[] = local 65 { "Refer-To: <sip:dave@denver.example.org?" [all...] |
/external/nist-sip/java/gov/nist/javax/sip/parser/extensions/ |
ReferredByParser.java | 22 * @param referBy String to set 41 String to[] = local 50 for (int i = 0; i < to.length; i++) { 51 ReferredByParser tp = new ReferredByParser(to[i]);
|
/external/skia/tools/ |
compare_baselines.py | 3 committed to the Skia repository. 5 Launch with --help to see more information. 26 To update the checked-in baselines across all platforms, follow these steps: 40 baseline images; if you want to check in new baseline images (ones that the 42 to use download_baselines.py's --add-new-files option. 47 committed to the Skia repository. Relies on skdiff to do the low-level 56 OPTION_PATH_TO_SKDIFF = '--path-to-skdiff' 62 """Copy all files from source_dir into dest_dir, adding prefix to the name 67 @param dest_dir where to save the copied file [all...] |
/external/valgrind/main/exp-bbv/tests/amd64-linux/ |
rep_prefix.S | 5 # The answer is validated to hw perf counters. 10 cld # we want these to happen forward 15 # Check for them, to make sure our rep detection 18 # have to check for SSE2 capability somehow? 52 mov $0xd, %al # set eax to d 159 # first set up the areas to compare 322 jmp exit # no error, skip to exit 327 mov $1, %rdi # print to stdout 328 mov $error_string, %rsi # string to print
|
/external/valgrind/main/gdbserver_tests/ |
mssnapshot.stderrB.exp | 2 vgdb-error value changed from 0 to 999999 10 v.set gdb_output : set valgrind output to gdb 11 v.set log_output : set valgrind output to log 12 v.set mixed_output : set valgrind output to log, interactive output to gdb 22 monitor command request to kill this process
|
/device/generic/goldfish/opengl/shared/OpenglCodecCommon/ |
Android.mk | 1 # This build script corresponds to a library containing many definitions 2 # common to both the guest and the host. They relate to
|
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/Runtime/ |
TokenSource.pm | 7 # until you get a good one; errors are not passed through to the parser. 28 Errors from the lexer are never passed to the parser. Either you want 29 to keep going or you do not upon token recognition error. If you do not 30 want to continue lexing then you do not want to continue parsing. Just 32 toss you all the way out of the recognizers. If you want to continue 33 lexing then you should not throw an exception to the parser--it has already
|
/external/chromium_org/chrome/renderer/resources/extensions/ |
ad_view_deny.js | 7 // Output error message to console when using <adview> tag with no permission. 8 var errorMessage = "You do not have permission to use <adview> tag." + 9 " Be sure to declare 'adview' permission in your manifest.";
|
web_view_deny.js | 7 // Output error message to console when using <webview> tag with no permission. 8 var errorMessage = "You do not have permission to use <webview> tag." + 9 " Be sure to declare 'webview' permission in your manifest.";
|
/external/chromium_org/remoting/webapp/ |
viewer_plugin_proto.js | 6 // with JSCompiler to verify the type-correctness of our code. 16 /** @param {string} message The message to send to the host. */
|
/external/chromium_org/third_party/JSON/JSON-2.59/ |
Makefile.PL | 14 print "We try to look up lib/JSON.pm, but in vain. B module can't install?\n"; 16 print "And see to ExtUtils::MM_Unix.\n"; 28 Welcome to JSON (v.$version) 34 * to version 1.xx * 36 * See to 'INCOMPATIBLE CHANGES TO OLD VERSION' and 'TIPS' * 67 if ($] < 5.006) { # I saw to http://d.hatena.ne.jp/asakusabashi/20051231/p1
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebFontImpl.cpp | 15 * contributors may be used to endorse or promote products derived from 20 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 24 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 93 int from, int to) const 100 runInfo.to = to == -1 ? textRun.length() : to; 124 WebFloatRect WebFontImpl::selectionRectForText(const WebTextRun& run, const WebFloatPoint& leftBaseline, int height, int from, int to) const 127 return m_font.selectionRectForText(run, leftBaseline, height, from, to);
|
/external/chromium_org/third_party/icu/source/i18n/ |
ztrans.cpp | 27 ztrans_open(UDate time, const void* from, const void* to){ 28 return (ZTrans*) new TimeZoneTransition(time,*(TimeZoneRule*)from,*(TimeZoneRule*)to); 82 ztrans_setTo(ZTrans* trans, const void* to) { 83 return ((TimeZoneTransition*)trans)->TimeZoneTransition::setTo(*(TimeZoneRule*)to); 87 ztrans_adoptTo(ZTrans* trans, void* to) { 88 return ((TimeZoneTransition*)trans)->TimeZoneTransition::adoptTo((TimeZoneRule*)to);
|
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/xa/ |
README | 4 * Permission is hereby granted, free of charge, to any person 6 * files (the "Software"), to deal in the Software without 7 * restriction, including without limitation the rights to use, copy, 9 * of the Software, and to permit persons to whom the Software is 10 * furnished to do so, subject to the following conditions: 16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 30 The XA state tracker is intended as a versioned interface to gallium for 35 a number of interfaces to work with [all...] |
/external/emma/ |
Android.mk | 6 # the custom dex'ed emma library ready to put on a device. 24 # the custom emma library to add to an SDK project.
|
/external/icu4c/i18n/ |
ztrans.cpp | 27 ztrans_open(UDate time, const void* from, const void* to){ 28 return (ZTrans*) new TimeZoneTransition(time,*(TimeZoneRule*)from,*(TimeZoneRule*)to); 82 ztrans_setTo(ZTrans* trans, const void* to) { 83 return ((TimeZoneTransition*)trans)->TimeZoneTransition::setTo(*(TimeZoneRule*)to); 87 ztrans_adoptTo(ZTrans* trans, void* to) { 88 return ((TimeZoneTransition*)trans)->TimeZoneTransition::adoptTo((TimeZoneRule*)to);
|
/external/mesa3d/src/gallium/state_trackers/xa/ |
README | 4 * Permission is hereby granted, free of charge, to any person 6 * files (the "Software"), to deal in the Software without 7 * restriction, including without limitation the rights to use, copy, 9 * of the Software, and to permit persons to whom the Software is 10 * furnished to do so, subject to the following conditions: 16 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 30 The XA state tracker is intended as a versioned interface to gallium for 35 a number of interfaces to work with [all...] |
/external/valgrind/main/memcheck/tests/ |
execve1.stderr.exp | 1 Syscall param execve(filename) points to unaddressable byte(s) 6 Syscall param execve(argv[i]) points to unaddressable byte(s) 11 Syscall param execve(envp[i]) points to unaddressable byte(s)
|
/frameworks/base/tools/aidl/ |
generate_java.cpp | 80 FILE* to; local 82 to = stdout; 84 /* open file in binary mode to ensure that the tool produces the 87 to = fopen(filename.c_str(), "wb"); 88 if (to == NULL) { 89 fprintf(stderr, "unable to open %s for write\n", filename.c_str()); 94 document->Write(to); 96 fclose(to);
|
/cts/tools/signature-tools/src/signature/compare/model/impl/ |
SigAnnotationDelta.java | 10 * Unless required by applicable law or agreed to in writing, software 30 public SigAnnotationDelta(IAnnotation from, IAnnotation to) { 31 super(from, to);
|
SigApiDelta.java | 10 * Unless required by applicable law or agreed to in writing, software 29 public SigApiDelta(IApi from, IApi to) { 30 super(from, to);
|
SigDelta.java | 10 * Unless required by applicable law or agreed to in writing, software 31 private T to; field in class:SigDelta 33 public SigDelta(T from, T to) { 35 this.to = to; 43 return to; 47 if (from == null && to != null) { 50 if (from != null && to == null) { 98 builder.append(to); 126 ignore.add("to"); [all...] |
SigParameterDelta.java | 10 * Unless required by applicable law or agreed to in writing, software 32 public SigParameterDelta(IParameter from, IParameter to) { 33 super(from, to);
|