HomeSort by relevance Sort by last modified time
    Searched refs:To (Results 126 - 150 of 225) sorted by null

1 2 3 4 56 7 8 9

  /external/webkit/LayoutTests/storage/
test-authorizer.js 51 // (according to http://www.sqlite.org/tempfiles.html), it doesn't, and I'm not aware
52 // of any other way to trigger this operation. So we'll skip it for now.
72 executeStatement(tx, "ALTER TABLE Test RENAME TO TestTable;", "SQLITE_ALTER_TABLE");
73 // Rename the table back to its original name
74 executeStatement(tx, "ALTER TABLE TestTable RENAME To Test;", "SQLITE_ALTER_TABLE");
83 // There is no SQL/Javascript API to add user-defined functions to SQLite,
92 // Not sure how to test this: temp indexes are automatically dropped when
102 // Not sure how to test this: we cannot create a virtual table because we do not
103 // have SQL/Javascript APIs to register a module that implements a virtual table
    [all...]
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-reference.js 71 + "<p>To use this " + thing + ", your application must specify API Level " + minLevel + " or higher in its manifest "
72 + "and be compiled against a version of the Android library that supports an equal or higher API Level. To reveal this "
154 // person who figures out how to remove this line and have the link
188 // perform api level toggling because new nodes are new to the DOM
260 // perform api level toggling because because the whole tree is new to the DOM
302 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
303 * 'null' to simply toggle.
329 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed
    [all...]
  /external/elfutils/src/
ldscript.c 17 along with this program; if not, write to the Free Software
29 /* All symbols defined below should begin with yy or YY, to avoid
32 There are some unavoidable exceptions within include files to
159 /* Some helper functions we need to construct the data structures
279 /* The size of an array large to enough to hold all stacks, each with
285 /* Copy COUNT objects from FROM to TO. The source and destination do
289 # define YYCOPY(To, From, Count) \
290 __builtin_memcpy (To, From, (Count) * sizeof (*(From))
    [all...]
  /external/icu4c/data/locales/
resfiles.mk 4 # A list of txt's to build
9 # Instead of changing this file [unless you want to check it back in],
16 # * To add an additional locale to the list:
20 # * To REPLACE the default list and only build with a few
33 # All aliases (to not be included under 'installed'), but not including root.
124 ti_ER.txt ti_ET.txt to.txt to_TO.txt tr.txt\
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 26 // - Pointers that point to two completely different objects in memory never
29 // is two pointers to constant memory. Even if they are equal, constant
30 // memory is never stored to, so there will never be any dependencies.
59 AliasAnalysis *AA; // Previous Alias Analysis to chain to.
62 /// InitializeAliasAnalysis - Subclasses must call this method to initialize
76 virtual ~AliasAnalysis(); // We want to be subclassed
79 /// size arguments in alias queries to indicate that the caller does not
83 /// getTargetData - Return a pointer to the current TargetData object, or
146 /// to check to see if two pointers might alias
    [all...]
AliasSetTracker.h 11 // are used to classify a collection of pointer references into a maximal number
13 // object refers to memory disjoint from the other sets.
40 Value *Val; // The pointer this record corresponds to.
64 // We don't have a TBAAInfo yet. Set it to NewTBAAInfo.
117 // RefCount - Number of nodes pointing to this AliasSet plus the number of
118 // AliasSets forwarding to it.
121 /// AccessType - Keep track of whether this alias set merely refers to the
123 /// both. The lattice goes from "NoModRef" to either Refs or Mods, then to
133 /// Lattice goes from MustAlias to MayAlias
    [all...]
  /external/mesa3d/src/glsl/glcpp/
glcpp-parse.c 28 Bison output files to be licensed under the GNU General Public
37 /* All symbols defined below should begin with yy or YY, to avoid
40 There are some unavoidable exceptions within include files to
75 * Permission is hereby granted, free of charge, to any person obtaining a
77 * to deal in the Software without restriction, including without limitation
78 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
79 * and/or sell copies of the Software, and to permit persons to whom the
80 * Software is furnished to do so, subject to the following conditions
    [all...]
  /external/clang/include/clang/AST/
DeclBase.h 90 /// \brief A placeholder type used to construct an empty shell of a
96 /// declarations may appear. According to C99 6.2.3, there are
117 /// but note that it's ill-formed to find a non-tag.
159 /// ObjCDeclQualifier - 'Qualifiers' written next to the return and
165 /// in, inout, and out are mutually exclusive and apply only to
167 /// apply only to method parameters (?). oneway applies only to
168 /// results. All of these expect their corresponding parameter to
439 /// (in addition to the "used" bit set by \c setUsed()) when determining
453 /// the given declaration (e.g., preferring 'unavailable' to
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp 31 /// EvalInfo - This is a private struct used by the evaluator to capture
41 /// indicates whether the subexpression is "evaluated" or not according to C
162 // Require the base expression to be a global l-value.
165 // We have a non-null base expression. These are generally known to
166 // be true, but if it'a decl-ref to a weak symbol it can be null at
223 // Determine whether we are converting to unsigned or signed.
270 // Unhandled nodes conservatively default to having side effects.
295 // We don't want to evaluate BlockExprs multiple times, as they generate
502 // Reference parameters can refer to anything even if they have an
680 // Now figure out the necessary offset to add to the baseLV to get fro
    [all...]
  /external/clang/lib/CodeGen/
CGCleanup.cpp 13 // A "cleanup" is a piece of code which needs to be executed whenever
15 // conditionalized to occur only on exceptional control flow, only on
39 // These automatically dominate and don't need to be saved.
70 /// necessary to restore it to usability at the current insertion
220 /// else fixups that we try to add to that cleanup will end up in the
221 /// wrong place. We *could* try to shrink fixup depths, but that's
224 // We expect this to only be called when there's still an innermost
238 // Create a variable to decide whether the cleanup needs to be run
    [all...]
  /external/llvm/lib/Analysis/
RegionInfo.cpp 79 assert(exit && "No exit to replace!");
236 // Only do verification when user wants to, otherwise this expensive
322 void Region::transferChildrenTo(Region *To) {
324 (*I)->parent = To;
325 To->children.push_back(*I);
369 assert(I != children.end() && "Region does not exit. Unable to remove.");
616 // Tried to create regions from entry to lastExit. Next time take a
617 // shortcut from entry to lastExit.
626 // Iterate over the dominance tree in post order to start with the smal
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/stack/
SIPClientTransaction.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
39 import gov.nist.javax.sip.header.To;
93 * | | 2xx to TU |
95 * 300-699 +---------------+ |1xx to TU |
97 * resp. to TU | 1xx V
    [all...]
SIPDialog.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
56 import gov.nist.javax.sip.header.To;
114 * 180 contained a To tag.
119 * Tracks dialogs. A dialog is a peer to peer association of communicating SIP entities. For
121 * that has a To tag). The SIP Protocol stores enough state in the message structure to extract
1930 To to = new To(); local
2067 To to = (To) dialogRequest.getTo(); local
2475 To to = new To(); local
    [all...]
TCPMessageChannel.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
44 * Niklas Uhrberg suggested that a mechanism be added to limit the number of simultaneous open
53 * It starts a message parser in its own thread and talks to the message parser via a pipe. The
71 protected InputStream myClientInputStream; // just to pass to thread
    [all...]
TLSMessageChannel.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
30 * JAIN sipStack. Niklas Uhrberg suggested that a mechanism be added to
60 * starts a message parser in its own thread and talks to the message parser via a pipe. The
79 private InputStream myClientInputStream; // just to pass to thread
    [all...]
  /external/chromium/chrome/browser/resources/
new_new_tab.js 5 // To avoid creating tons of unnecessary nodes. We assume we cannot fit more
58 // necessary to restore the maxiview here. It will happen if the section
65 hideSection(section); // To hide the maxiview.
160 // We need to store the foreign sessions so we can update the layout on a
254 // We need to store the recent items so we can update the layout on a resize.
309 a.className = 'window'; // To get the icon from the CSS .window rule.
310 a.href = ''; // To make underline show up.
343 // TODO(jstritar): Remove the small-layout class and revert back to the
367 // Stores some information about each section necessary to layout. A new
382 // Get all sections to be layed out
    [all...]
  /external/blktrace/doc/
blktrace.tex 17 % along with this program; if not, write to the Free Software
32 information about request queue operations up to user space. There are
36 \item[Kernel patch] A patch to the Linux kernel which includes the
37 kernel event logging interfaces, and patches to areas within the block
38 layer to emit event traces. If you run a 2.6.17-rc1 or newer kernel,
39 you don't need to patch blktrace support as it is already included.
60 blktrace. Some of the specific instructions below may need to be tailored
61 to your environment.
65 As noted above, the kernel patch along with the blktrace and blkparse utilities are stored in a git repository. One simple way to get going would be:
96 \emph{Support for tracing block io actions.} To do this, ru
    [all...]
  /external/clang/lib/Sema/
SemaAccess.cpp 90 // A member of a class can also access all the names to which
230 /// Checks whether one class might instantiate to the other.
232 const CXXRecordDecl *To) {
234 if (From->getDeclName() != To->getDeclName())
238 const DeclContext *ToDC = To->getDeclContext()->getPrimaryContext();
247 /// Properly indicates when it couldn't be determined due to
250 /// This should probably be donated to AST or at least Sema.
319 // Asks whether the type in 'context' can ever instantiate to the type
350 // There isn't any way that I know of to add qualifiers
455 // If the class's context can't instantiate to the friend'
    [all...]
SemaExprCXX.cpp 42 // Determine where to perform name lookup.
49 // this appears to be ill-formed:
63 // code; the C++0x version has to wait until we get a proper spec.
96 // code below is permitted to look at the prefix of the
109 // Nothing left to do.
130 // lookups shall find a name that refers to (possibly
147 // have one) and, if that fails to find a match, in the scope (if
148 // we're allowed to look there).
210 // We're referring to an unresolved class template
276 // If the type of the type-id is a class type or a reference to a clas
    [all...]
  /build/tools/droiddoc/templates-sdk/assets/
android-developer-reference.js 78 + "<p>To use this " + thing + ", your application must specify API Level \"" + $("body").attr("class") + "\" or higher in its manifest "
79 + "and be compiled against a version of the Android library that supports an equal or higher API Level. To reveal this "
101 // Handle provisional api levels; if this item's level is the provisional one, set it to the max
175 // person who figures out how to remove this line and have the link
209 // perform api level toggling because new nodes are new to the DOM
281 // perform api level toggling because because the whole tree is new to the DOM
323 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
324 * 'null' to simply toggle.
350 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed
    [all...]
  /external/chromium/third_party/libjingle/source/talk/
main.scons 5 # Use 'import talk' in any .scons file to get access to it.
6 # Add any new helper functions to it; unittest are available
12 # To add a new platform clone and modify the root_env object. Remember to add
13 # the new environment object to the envs list otherwise it will not be included
23 # The build files/directories to 'build'.
49 '$OBJ_ROOT', # generated headers are relative to here
53 # Temp flag while porting to hammer.
91 # Flags for debug and optimization are added to CCFLAGS instea
    [all...]
  /external/doclava/res/assets/templates/assets/
doclava-developer-reference.js 73 + "<p>To use this " + thing + ", your application must specify API Level " + minLevel + " or higher in its manifest "
74 + "and be compiled against a version of the library that supports an equal or higher API Level. To reveal this "
156 // person who figures out how to remove this line and have the link
190 // perform api level toggling because new nodes are new to the DOM
262 // perform api level toggling because because the whole tree is new to the DOM
304 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed.
305 * 'null' to simply toggle.
331 * @param expand 'true' to ensure it's expanded. 'false' to ensure it's closed
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombine.h 37 /// getComplexity: Assign a complexity or rank value to LLVM Values...
54 /// to the instcombine worklist.
75 /// Worklist - All of the instructions that need to be simplified.
196 // visitInstruction - Specify what to return for unhandled instructions...
200 bool ShouldChangeType(Type *From, Type *To) const;
207 /// ShouldOptimizeCast - Return true if the cast from "V to Ty" actually
208 /// results in any code being generated and is interesting to optimize out. If
210 /// to do the simplification first.
226 // in the program. Add the new instruction to the worklist.
245 // ReplaceInstUsesWith - This method is to be used when an instruction i
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAG.cpp 82 /// As such, this method can be used to do an exact bit-for-bit comparison of
92 // PPC long double cannot be converted to any other type.
140 // Okay, we have at least one ~0 value, check to see if the rest match or are
180 // Okay, we have at least one 0 value, check to see if the rest match or are
211 /// getSetCCSwappedOperands - Return the operation corresponding to (Y op X)
214 // To perform this operation, we just need to swap the L and G bits of the
223 /// getSetCCInverse - Return the operation corresponding to !(X op Y), where
260 /// returns SETCC_INVALID if it is not possible to represent the resultant
284 /// function returns zero if it is not possible to represent the resultan
    [all...]
  /external/clang/www/demo/
index.cgi 15 open( STDERR, ">&STDOUT" ) or die "can't redirect stderr to stdout";
61 open( FILE, ">$name" ) or barf("Can't write to $name: $!");
99 $input =~ s@\b(add|sub|mul|div|rem|and|or|xor|setne|seteq|setlt|setgt|setle|setge|phi|tail|call|cast|to|shl|shr|vaarg|vanext|ret|br|switch|invoke|unwind|malloc|alloca|free|load|store|getelementptr|begin|end|true|false|declare|global|constant|const|internal|uninitialized|external|implementation|linkonce|weak|appending|null|to|except|not|target|endian|pointersize|big|little|volatile)\b@<span class="llvm_keyword">$1</span>@g;
101 # Add links to the FAQ.
110 new Mail::Send( Subject => "LLVM Demo Page Run", To => $recipient );
340 # Add a newline to the source here to avoid a warning from gcc.
343 # Avoid security hole due to #including bad stuff.
433 # Get the source presented by the user to CGI, convert newline sequences to simple \n
    [all...]

Completed in 1988 milliseconds

1 2 3 4 56 7 8 9