HomeSort by relevance Sort by last modified time
    Searched refs:To (Results 76 - 100 of 546) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCommonTreeAdaptor.h 13 // 3. The name of the author may not be used to endorse or promote products
17 // IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 // NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
44 - (void) setTokenBoundaries:(id<ANTLRTree>)t From:(id<ANTLRToken>)startToken To:(id<ANTLRToken>)stopToken;
59 - (void)replaceChildren:(id<ANTLRTree>)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id<ANTLRTree>)t;
ANTLRTreeAdaptor.h 13 // 3. The name of the author may not be used to endorse or promote products
17 // IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 // NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
58 * to some applications; default implementation stores ptr to it in
67 To:(id<ANTLRToken>)aStopToken
70 /** Is tree considered a nil node used to make lists of child nodes? */
76 /** If oldRoot is a nil root, just copy or move the children to newRoot.
97 * Be advised that it's ok for newRoot to point at oldRoot's
98 * children; i.e., you don't have to copy the list. We ar
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCommonTreeAdaptor.h 13 // 3. The name of the author may not be used to endorse or promote products
17 // IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 // NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
47 - (void) setTokenBoundaries:(ANTLRCommonTree *)t From:(id<ANTLRToken>)startToken To:(id<ANTLRToken>)stopToken;
62 - (void)replaceChildren:(ANTLRCommonTree *)parent From:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(ANTLRCommonTree *)t;
ANTLRTreeAdaptor.h 13 // 3. The name of the author may not be used to endorse or promote products
17 // IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 // NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
54 * to some applications; default implementation stores ptr to it in
63 To:(id<ANTLRToken>)aStopToken
66 /** Is tree considered a nil node used to make lists of child nodes? */
72 /** If oldRoot is a nil root, just copy or move the children to newRoot.
93 * Be advised that it's ok for newRoot to point at oldRoot's
94 * children; i.e., you don't have to copy the list. We ar
    [all...]
ANTLRTree.h 13 // 3. The name of the author may not be used to endorse or promote products
17 // IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 // NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
65 /** Add t as a child to this node. If t is null, do nothing. If t
66 * is nil, add all children of t to this' children.
70 /** Set ith child (0..n-1) to t; t must be non-null and non-nil node */
75 /** Delete children from start to stop and replace with t even if t is
78 * children to set their childindex; could be slow.
80 - (void) replaceChildrenFrom:(NSInteger)startChildIndex To:(NSInteger)stopChildIndex With:(id)t;
83 // Add t as a child to this node. If t is null, do nothing. If
    [all...]
  /external/chromium_org/chrome/browser/resources/task_manager/
measure_time.js 8 * To be included as a first script in main.html
  /external/clang/lib/Tooling/
RefactoringCallbacks.cpp 31 const Stmt &To) {
33 CharSourceRange::getTokenRange(To.getSourceRange()),
73 // If we want to use the 'else'-branch, but it doesn't exist, delete
  /external/chromium_org/third_party/WebKit/Source/wtf/
TypeTraits.h 16 * along with this library; see the file COPYING.LIB. If not, write to
80 // by not converting int's to doubles.
104 template<typename From, typename To> class IsPointerConvertible {
110 static YesType convertCheck(To* x);
221 #define EnsurePtrConvertibleArgDecl(From, To) \
222 typename WTF::EnableIf<WTF::IsPointerConvertible<From, To>::Value, bool>::Type = true
223 #define EnsurePtrConvertibleArgDefn(From, To) \
224 typename WTF::EnableIf<WTF::IsPointerConvertible<From, To>::Value, bool>::Type
237 // The current CodeGeneratorInspector.py generates code which upcasts to JSONValue from undefined types.
StdLibExtras.h 14 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
33 // Use this to declare and define a static local variable (static T;) so that
40 // Use this to declare and define a static local pointer to a ref-counted object so that
43 // as this macro does not lead to an extra memory allocation.
49 // Use this macro to declare and define a debug-only global variable that may have a
69 // The magic number 0x4000 is insignificant. We use it to avoid using NULL, since
73 // STRINGIZE: Can convert any value to quoted string, even expandable macros
78 * The reinterpret_cast<Type1*>([pointer to Type2]) expressions - wher
140 TO to; member in union:WTF::__anon13700
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
type_traits.h 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,
91 template <class From, class To> struct is_convertible;
137 // "int* const", as opposed to "int const*") is cv-qualified if and only if
171 // class and enum types are potentially convertible to int. Therefore,
173 // is convertible to int, it's a enum. Adding cv-qualification to a type
176 // Is-convertible-to-int check is done only if all other checks pass,
306 // don't need to know how it works to use is_convertible. For thos
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treeparser/
LangParser.m 296 [treeAdaptor setTokenBoundaries:retval.tree From:retval.start To:retval.stopToken];
303 retval.tree = (ANTLRCommonTree *)[treeAdaptor errorNode:input From:retval.start To:[input LT:-1] Exception:re];
422 [treeAdaptor setTokenBoundaries:retval.tree From:retval.start To:retval.stopToken];
429 retval.tree = (ANTLRCommonTree *)[treeAdaptor errorNode:input From:retval.start To:[input LT:-1] Exception:re];
495 [treeAdaptor setTokenBoundaries:retval.tree From:retval.start To:retval.stopToken];
502 retval.tree = (ANTLRCommonTree *)[treeAdaptor errorNode:input From:retval.start To:[input LT:-1] Exception:re];
  /external/llvm/include/llvm/Analysis/
LoopIterator.h 9 // This file defines iterators to visit the basic blocks within a loop.
15 // If you want to visit all blocks in a loop and don't need an ordered traveral,
18 // This is intentionally designed to work with ill-formed loops in which the
20 // contained within the loop according to the most recent LoopInfo analysis are
49 /// Map each block to its postorder number. A block is only mapped after it is
51 /// to nonzero after it is finished by postorder traversal.
66 /// Return true if postorder numbers are assigned to all loop blocks.
111 /// Specialize po_iterator_storage to record postorder numbers.
117 bool insertEdge(BasicBlock *From, BasicBlock *To);
135 /// Postorder traversal over the graph. This only needs to be done once
    [all...]
  /external/llvm/lib/Analysis/
AliasDebugger.cpp 10 // This simple pass checks alias analysis users to ensure that if they
35 //A query to a value that didn't exist when the AA was created
36 //means someone forgot to update the AA when creating new values
86 /// should override this to adjust the this pointer as needed for the
125 virtual void copyValue(Value *From, Value *To) {
126 Vals.insert(To);
127 AliasAnalysis::copyValue(From, To);
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTreeAdaptor.h 13 // 3. The name of the author may not be used to endorse or promote products
17 // IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 // NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
58 * to some applications; default implementation stores ptr to it in
67 To:(id<ANTLRToken>)aStopToken
70 /** Is tree considered a nil node used to make lists of child nodes? */
76 /** If oldRoot is a nil root, just copy or move the children to newRoot.
97 * Be advised that it's ok for newRoot to point at oldRoot's
98 * children; i.e., you don't have to copy the list. We ar
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRTreeAdaptor.h 13 // 3. The name of the author may not be used to endorse or promote products
17 // IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
21 // NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
58 * to some applications; default implementation stores ptr to it in
67 To:(id<ANTLRToken>)aStopToken
70 /** Is tree considered a nil node used to make lists of child nodes? */
76 /** If oldRoot is a nil root, just copy or move the children to newRoot.
97 * Be advised that it's ok for newRoot to point at oldRoot's
98 * children; i.e., you don't have to copy the list. We ar
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/examples/treerewrite/output1/
TreeRewriteParser.m 26 // 3. The name of the author may not be used to endorse or promote products
30 // IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
34 // NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
285 [treeAdaptor setTokenBoundaries:retval.tree From:retval.startToken To:retval.stopToken];
291 retval.tree = (ANTLRCommonTree *)[treeAdaptor errorNode:input From:retval.startToken To:[input LT:-1] Exception:re];
335 [treeAdaptor setTokenBoundaries:retval.tree From:retval.startToken To:retval.stopToken];
341 retval.tree = (ANTLRCommonTree *)[treeAdaptor errorNode:input From:retval.startToken To:[input LT:-1] Exception:re];
  /external/chromium/base/
basictypes.h 23 // TODO: Remove these type guards. These are to avoid conflicts with
31 // Mac OS X. In order to not have typedef mismatches, we do the same on LP64.
44 // use 'unsigned' to express "this value should always be positive";
49 // TODO: Remove these type guards. These are to avoid conflicts with
63 // A type to represent a Unicode code-point value. As of Unicode 4.0,
64 // such values require up to 21 bits.
82 // A macro to disallow the copy constructor and operator= functions
91 // TODO(tfarina): Figure out how to fix the usage of this macro in the
95 // A macro to disallow all the implicit constructors, namely the
99 // that wants to prevent anyone from instantiating it. This i
    [all...]
  /external/chromium_org/base/
basictypes.h 26 // Mac OS X. In order to not have typedef mismatches, we do the same on LP64.
36 // NOTE: It is DANGEROUS to compare signed with unsigned types in loop
37 // conditions and other conditional expressions, and it is DANGEROUS to
46 // Do NOT use 'unsigned' to express "this value should always be positive";
63 // A type to represent a Unicode code-point value. As of Unicode 4.0,
64 // such values require up to 21 bits.
82 // Put this in the private: declarations for a class to be uncopyable.
86 // Put this in the private: declarations for a class to be unassignable.
90 // A macro to disallow the copy constructor and operator= functions
99 // TODO(tfarina): Figure out how to fix the usage of this macro in th
    [all...]
  /external/chromium_org/build/git-hooks/
pre-commit 5 echo "You are trying to commit changes to the following submodules:" 1>&2
18 ... to see what's in your index.
20 If you're really and truly trying to roll the version of a submodule, you should
21 commit the new version to DEPS, instead.
28 You are trying to commit a change to .gitmodules. That is not allowed.
29 To make changes to submodule names/paths, edit DEPS.
  /external/chromium_org/third_party/cld/base/
basictypes.h 23 // temporary to avoid conflicts with npapi.h.
29 // The NSPR system headers define 64-bit as |long| when possible. In order to
40 // use 'unsigned' to express "this value should always be positive";
46 // temporary to avoid conflicts with npapi.h.
59 // A type to represent a Unicode code-point value. As of Unicode 4.0,
60 // such values require up to 21 bits.
78 // A macro to disallow the copy constructor and operator= functions
87 // A macro to disallow all the implicit constructors, namely the
91 // that wants to prevent anyone from instantiating it. This is
104 // cases, you have to use the unsafe ARRAYSIZE_UNSAFE() macro below. This i
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/bin/tests/multisect/
multisect1.asm 17 ; label to use for copying this segment at run-time.
22 ; with the VMM (Win3.x/9x kernel). To be relocated
23 ; at run-time to memory dynamically allocated with
  /external/clang/include/clang/AST/
ASTImporter.h 43 /// \brief The contexts we're importing to and from.
46 /// \brief The file managers we're importing to and from.
49 /// \brief Whether to perform a minimal import.
56 /// to the corresponding types in the "to" context.
60 /// context to the corresponding declarations in the "to" context.
64 /// context to the corresponding statements in the "to" context.
68 /// manager to the corresponding FileIDs in the "to" source manager
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
BasicBlockUtils.h 18 // FIXME: Move to this file: BasicBlock::removePredecessor, BB::splitBasicBlock
40 /// when all entries to the PHI nodes in a block are guaranteed equal, such as
46 /// a result. This includes tracing the def-use list from the PHI to see if
51 /// MergeBlockIntoPredecessor - Attempts to merge a block into its predecessor,
63 // updated to point to the new instruction.
69 // instruction specified by To.
71 void ReplaceInstWithInst(Instruction *From, Instruction *To);
73 /// SplitCriticalEdge - If this edge is a critical edge, insert a new node to
79 /// If MergeIdenticalEdges is true (not the default), *all* edges from TI to th
    [all...]
  /prebuilts/tools/common/cglib/
Android.mk 9 # Unless required by applicable law or agreed to in writing, software
19 # Note: To use cglib, please also add target asm-3-tools.
  /external/chromium_org/chrome/renderer/resources/extensions/
tag_watcher.js 32 // Expose a function to watch the |tagName| introduction via mutation observer.
34 // We employee mutation observer to watch on any introduction of |tagName|
36 // reporting error due to lack of permission).
37 // Think carefully about when to call this. On one hand, mutation observer
38 // functions on document, so we need to make sure document is finished
39 // parsing. To satisfy this, document.readyState has to be "interactive" or
40 // after. On the other hand, we intend to do this as early as possible so that
41 // developer would have no chance to bring in any conflicted property. To mee
    [all...]

Completed in 1676 milliseconds

1 2 34 5 6 7 8 91011>>