HomeSort by relevance Sort by last modified time
    Searched defs:From (Results 1 - 25 of 47) sorted by null

1 2

  /external/chromium_org/gin/
wrapper_info.cc 9 WrapperInfo* WrapperInfo::From(v8::Handle<v8::Object> object) {
per_context_data.cc 28 PerContextData* PerContextData::From(v8::Handle<v8::Context> context) {
per_isolate_data.cc 32 PerIsolateData* PerIsolateData::From(Isolate* isolate) {
array_buffer.cc 64 static scoped_refptr<Private> From(v8::Isolate* isolate,
86 scoped_refptr<ArrayBuffer::Private> ArrayBuffer::Private::From(
89 CHECK_EQ(WrapperInfo::From(v8::Handle<v8::Object>::Cast(array)),
116 PerIsolateData::From(isolate_)->allocator()->Free(buffer_, length_);
135 private_ = ArrayBuffer::Private::From(isolate, array);
  /external/chromium_org/chrome/browser/guest_view/
guest_view.h 17 static T* From(int embedder_process_id, int guest_instance_id) {
19 GuestViewBase::From(embedder_process_id, guest_instance_id);
guest_view_base.cc 118 GuestViewBase* GuestViewBase::From(int embedder_process_id,
  /external/nist-sip/java/gov/nist/javax/sip/header/
From.java 39 * From SIP Header.
48 public final class From
59 public From() {
63 /** Generate a FROM header from a TO header
65 public From(To to) {
96 * Conveniance accessor function to get the hostPort field from the address.
106 * Get the display name from the address.
114 * Get the tag parameter from the address parm list.
146 * @param t tag to set. From tags are mandatory
    [all...]
  /external/clang/tools/clang-format/
ClangFormat.cpp 77 cl::desc("When reading from stdin, clang-format assumes this\n"
97 "clang-format from an editor integration"),
186 size_t From = 0;
188 while ((Index = Text.find_first_of("\n\r", From)) != StringRef::npos) {
189 llvm::outs() << Text.substr(From, Index - From);
200 From = Index + 1;
202 llvm::outs() << Text.substr(From);
285 "If no arguments are specified, it formats the code from standard input\n"
  /external/chromium_org/mojo/public/cpp/bindings/
array.h 52 static Array From(const U& other) {
string.h 36 static String From(const U& other) {
  /external/chromium_org/tools/cr/cr/
config.py 85 def From(cls, *args, **kwargs):
86 """Builds an unnamed config object from a set of key,value args."""
177 Takes a string from something like an environment variable, and tries to
211 """Bulk set variables from arguments.
213 Intended for internal use by the Set and From methods.
  /art/runtime/verifier/
reg_type_cache.cc 94 return From(loader, descriptor, precise);
159 RegType& RegTypeCache::From(mirror::ClassLoader* loader, const char* descriptor,
251 // All entries are from the global pool, nothing to delete.
286 // Try loading the class from linker.
  /external/ceres-solver/examples/
libmv_homography.cc 14 // used to endorse or promote products derived from this software without
46 // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
58 // the routines from the Libmv library.
150 // The homography matrix H is built from a list of 8 parameters (a, b,...g, h)
163 // Convert from the 8 parameters to a H matrix.
170 // Convert from a H matrix to the 8 parameters.
171 static void From(const Parameterized &h, Parameters *p) {
384 // This matrix has been dumped from a Blender test file of plane tracking.
  /external/chromium_org/gin/modules/
module_registry.cc 82 ModuleRegistry::From(args.isolate()->GetCurrentContext());
89 PerIsolateData* data = PerIsolateData::From(isolate);
123 ModuleRegistry* ModuleRegistry::From(v8::Handle<Context> context) {
124 PerContextData* data = PerContextData::From(context);
222 PerContextData* data = PerContextData::From(isolate->GetCurrentContext());
  /external/clang/include/clang/Analysis/Analyses/
Consumed.h 140 const Stmt *From;
145 ConsumedStateMap() : Reachable(true), From(nullptr) {}
147 : Reachable(Other.Reachable), From(Other.From), VarMap(Other.VarMap),
151 /// they were declared to be in upon return from a function.
180 void setSource(const Stmt *Source) { this->From = Source; }
188 /// \brief Remove the temporary value from our state map.
228 bool isBackEdge(const CFGBlock *From, const CFGBlock *To);
  /external/clang/lib/Rewrite/Frontend/
InclusionRewriter.cpp 34 SourceLocation From;
37 FileChange(SourceLocation From, const Module *Mod) : Mod(Mod), From(From) {
120 // "`3' This indicates that the following text comes from a system header
212 /// Writes out bytes from \p FromFile, starting at \p NextToWrite and ending at
237 /// Print characters from \p FromFile starting at \p NextToWrite up until the
369 // The next byte to be copied from the source file, which may be non-zero if
  /external/clang/lib/StaticAnalyzer/Core/
RangeConstraintManager.cpp 27 /// A Range represents the closed range [from, to]. The caller must
28 /// guarantee that from <= to. Note that Range is immutable, so as not
34 Range(const llvm::APSInt &from, const llvm::APSInt &to)
35 : std::pair<const llvm::APSInt*, const llvm::APSInt*>(&from, &to) {
36 assert(from <= to);
41 const llvm::APSInt &From() const {
48 return &From() == &To() ? &From() : nullptr;
52 ID.AddPointer(&From());
89 /// Construct a new RangeSet representing '{ [from, to] }'
    [all...]
  /external/llvm/lib/TableGen/
SetTheory.cpp 1 //===- SetTheory.cpp - Generate ordered sets from DAG expressions ---------===//
11 // Records from DAG expressions.
166 // (sequence "Format", From, To) Generate a sequence of records by name.
172 PrintFatalError(Loc, "Bad args to (sequence \"Format\", From, To): " +
188 int64_t From, To;
190 From = II->getValue();
192 PrintFatalError(Loc, "From must be an integer: " + Expr->getAsString());
193 if (From < 0 || From >= (1 << 30))
194 PrintFatalError(Loc, "From out of range")
    [all...]
  /external/llvm/lib/Target/R600/
SIAnnotateControlFlow.cpp 156 /// \brief Pop the last saved value from the control flow stack
215 BasicBlock *From = Phi->getIncomingBlock(i);
217 NewPhi->addIncoming(Broken, From);
223 NewPhi->addIncoming(PhiArg, From);
234 BasicBlock *From = Phi->getIncomingBlock(i);
235 if (From == IDom) {
243 TerminatorInst *Insert = From->getTerminator();
  /external/chromium_org/mojo/public/cpp/system/
core.h 30 // Note that though we provide constructors for |Handle|/|...Handle| from a
32 // from a |Handle|. This is for type safety: If we did, you'd then be able to
33 // construct a |MessagePipeHandle| from, e.g., a |DataPipeProducerHandle| (since
120 static ScopedHandleBase<HandleType> From(
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
rtcp_packet.h 39 // rr.From(123);
43 // fir.From(123);
93 // From RFC 3550, RTP: A Transport Protocol for Real-Time Applications.
179 void From(uint32_t ssrc) {
238 void From(uint32_t ssrc) {
378 void From(uint32_t ssrc) {
423 void From(uint32_t ssrc) {
484 void From(uint32_t ssrc) {
523 void From(uint32_t ssrc) {
575 void From(uint32_t ssrc)
    [all...]
  /external/llvm/lib/CodeGen/
SplitKit.cpp 126 // First get all the defs from the interval values. This provides the correct
449 // Can't remat, just insert a copy from parent.
767 // Skip the singly mapped values. There is nothing to gain from hoisting a
    [all...]
StackColoring.cpp 72 ProtectFromEscapedAllocas("protect-from-escaped-allocas",
141 /// Removes all of the lifetime marker instructions from the function.
289 // is a map from blocks to bitvectors where the bitvectors represent which
312 // Forward propagation from begins to ends.
322 // Reverse propagation from ends to begins.
475 const AllocaInst *From = MFI->getObjectAllocation(SI.first);
477 assert(To && From && "Invalid allocation object");
478 Allocas[From] = To;
482 // derived from the alloca being remapped and the target of that remapping.
487 if (From->getType() != To->getType())
    [all...]
  /external/llvm/lib/IR/
Metadata.cpp 226 // removed from the uniquing map.
317 // removed from the uniquing map.
328 // Replace value from this node's operand list.
330 Value *From = *Op;
350 if (From == To)
362 // Remove "this" from the context map. FoldingSet doesn't have to reprofile
558 /// eraseFromParent - Drop all references and remove the node from parent
664 // Otherwise, we're removing metadata from an instruction.
748 /// clearMetadataHashEntries - Clear all hashtable-based metadata from
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
ast.py 5 from compiler.consts import CO_VARARGS, CO_VARKEYWORDS
530 class From(Node):
544 return "From(%s, %s, %s)" % (repr(self.modname), repr(self.names), repr(self.level))
    [all...]

Completed in 912 milliseconds

1 2