HomeSort by relevance Sort by last modified time
    Searched refs:Function (Results 101 - 125 of 1432) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncFalse.java 28 * Execute the False() function.
31 public class FuncFalse extends Function
36 * Execute the function. The function must return
FuncTrue.java 28 * Execute the True() function.
31 public class FuncTrue extends Function
36 * Execute the function. The function must return
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8CustomElementLifecycleCallbacks.cpp 52 PassRefPtr<V8CustomElementLifecycleCallbacks> V8CustomElementLifecycleCallbacks::create(ScriptExecutionContext* scriptExecutionContext, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> enteredDocument, v8::Handle<v8::Function> leftDocument, v8::Handle<v8::Function> attributeChanged)
67 static CustomElementLifecycleCallbacks::CallbackType flagSet(v8::Handle<v8::Function> enteredDocument, v8::Handle<v8::Function> leftDocument, v8::Handle<v8::Function> attributeChanged)
90 V8CustomElementLifecycleCallbacks::V8CustomElementLifecycleCallbacks(ScriptExecutionContext* scriptExecutionContext, v8::Handle<v8::Object> prototype, v8::Handle<v8::Function> created, v8::Handle<v8::Function> enteredDocument, v8::Handle<v8::Function> leftDocument, v8::Handle<v8::Function> attributeChanged
    [all...]
V8ObjectConstructor.cpp 37 v8::Local<v8::Object> V8ObjectConstructor::newInstance(v8::Handle<v8::Function> function)
39 if (function.IsEmpty())
42 return V8ScriptRunner::instantiateObject(function);
53 v8::Local<v8::Object> V8ObjectConstructor::newInstance(v8::Handle<v8::Function> function, int argc, v8::Handle<v8::Value> argv[])
55 if (function.IsEmpty())
58 return V8ScriptRunner::instantiateObject(function, argc, argv);
61 v8::Local<v8::Object> V8ObjectConstructor::newInstanceInDocument(v8::Handle<v8::Function> function, int argc, v8::Handle<v8::Value> argv[], Document* document
    [all...]
V8ObjectConstructor.h 70 static v8::Local<v8::Object> newInstance(v8::Handle<v8::Function>);
72 static v8::Local<v8::Object> newInstance(v8::Handle<v8::Function>, int, v8::Handle<v8::Value> argv[]);
73 static v8::Local<v8::Object> newInstanceInDocument(v8::Handle<v8::Function>, int, v8::Handle<v8::Value> argv[], Document*);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8CustomXPathNSResolver.cpp 63 v8::Handle<v8::Function> lookupNamespaceURIFunc;
66 // Check if the resolver has a function property named lookupNamespaceURI.
70 lookupNamespaceURIFunc = v8::Handle<v8::Function>::Cast(lookupNamespaceURI);
86 v8::Handle<v8::Function> function = lookupNamespaceURIFunc.IsEmpty() ? v8::Handle<v8::Function>::Cast(m_resolver) : lookupNamespaceURIFunc; local
88 v8::Handle<v8::Value> retval = ScriptController::callFunctionWithInstrumentation(0, function, m_resolver, argc, argv);
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
AMDILIntrinsicInfo.h 40 Function *getDeclaration(Module *M, unsigned int ID,
  /external/guava/guava-gwt/src-super/com/google/common/cache/super/com/google/common/cache/
CacheLoader.java 22 import com.google.common.base.Function;
76 * Returns a {@code CacheLoader} which creates values by applying a {@code Function} to the key.
78 public static <K, V> CacheLoader<K, V> from(Function<K, V> function) {
79 return new FunctionToCacheLoader<K, V>(function);
84 private final Function<K, V> computingFunction;
86 public FunctionToCacheLoader(Function<K, V> computingFunction) {
  /external/llvm/include/llvm/Support/
CFG.h 10 // This file defines specializations of GraphTraits that allow Function and
19 #include "llvm/IR/Function.h"
253 // Provide specializations of GraphTraits to be able to treat a function as a
283 // Provide specializations of GraphTraits to be able to treat a function as a
285 // a function is considered to be when traversing the predecessor edges of a BB
317 // GraphTraits specializations for function basic block graphs (CFGs)
320 // Provide specializations of GraphTraits to be able to treat a function as a
322 // except that the root node is implicitly the first node of the function.
324 template <> struct GraphTraits<Function*> : public GraphTraits<BasicBlock*> {
325 static NodeType *getEntryNode(Function *F) { return &F->getEntryBlock();
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
UnifyFunctionExitNodes.h 13 // in the function, the getReturnBlock/getUnwindBlock methods will return a null
34 // We can preserve non-critical-edgeness when we unify function exit nodes
44 virtual bool runOnFunction(Function &F);
  /external/llvm/lib/Target/Mips/
MipsOs16.cpp 22 // Figure out if we need float point based on the function signature.
26 bool needsFPFromSig(Function &F) {
48 // Figure out if the function will need floating point operations
50 bool needsFP(Function &F) {
53 for (Function::const_iterator BB = F.begin(), E = F.end(); BB != E; ++BB)
76 Function &F_ = *CI->getCalledFunction();
  /external/llvm/lib/Target/R600/
AMDILIntrinsicInfo.h 41 Function *getDeclaration(Module *M, unsigned int ID,
  /external/llvm/lib/Transforms/Scalar/
BasicBlockPlacement.cpp 12 // start of the function, and hopefully increase the number of fall-through
14 // function, this pass basically orders blocks in depth-first order
33 #include "llvm/IR/Function.h"
48 virtual bool runOnFunction(Function &F);
70 Function::iterator InsertPos;
87 bool BlockPlacement::runOnFunction(Function &F) {
111 // remove the block from the function then readd it, which causes a bunch of
113 Function::BasicBlockListType &Blocks = BB->getParent()->getBasicBlockList();
  /external/llvm/unittests/IR/
ValueTest.cpp 11 #include "llvm/IR/Function.h"
39 Function *F = M->getFunction("f");
VerifierTest.cpp 14 #include "llvm/IR/Function.h"
28 OwningPtr<Function> F(Function::Create(FTy, GlobalValue::ExternalLinkage));
68 Function *F = cast<Function>(M.getOrInsertFunction("foo", FTy));
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILIntrinsicInfo.h 40 Function *getDeclaration(Module *M, unsigned int ID,
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/function/
strfns.py 23 class _MemEq(gdb.Function):
48 class _StrLen(gdb.Function):
65 class _StrEq(gdb.Function):
85 class _RegEx(gdb.Function):
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.7/share/gdb/python/gdb/function/
strfns.py 23 class _MemEq(gdb.Function):
48 class _StrLen(gdb.Function):
65 class _StrEq(gdb.Function):
85 class _RegEx(gdb.Function):
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/model/
GLCall.java 20 import com.android.ide.eclipse.gltrace.GLProtoBuf.GLMessage.Function;
37 /** Marker name provided by a {@link Function#glPushGroupMarkerEXT} call. */
40 /** Size argument in a {@link Function#glVertexAttribPointerData} call. */
43 /** Type argument in a {@link Function#glVertexAttribPointerData} call. */
46 /** Data argument in a {@link Function#glVertexAttribPointerData} call. */
64 /** The actual GL Function called. */
65 private final Function mFunction;
86 Function function, boolean hasFb, int contextId,
92 mFunction = function;
    [all...]
  /external/chromium_org/chrome/renderer/extensions/
render_view_observer_natives.cc 23 v8::Handle<v8::Function> cb)
48 ScopedPersistent<v8::Function> callback_;
76 new LoadWatcher(context(), view, args[1].As<v8::Function>());
  /external/guava/guava/src/com/google/common/collect/
ByFunctionOrdering.java 22 import com.google.common.base.Function;
31 * function on those elements.
36 final Function<F, ? extends T> function; field in class:ByFunctionOrdering
40 Function<F, ? extends T> function, Ordering<T> ordering) {
41 this.function = checkNotNull(function);
46 return ordering.compare(function.apply(left), function.apply(right))
    [all...]
  /external/llvm/include/llvm/Analysis/
ConstantFolding.h 29 class Function;
37 /// this function can only fail when attempting to fold instructions like loads
51 /// null is returned. Note that this function can fail when attempting to
93 /// the specified function.
94 bool canConstantFoldCallTo(const Function *F);
96 /// ConstantFoldCall - Attempt to constant fold a call to the specified function
98 Constant *ConstantFoldCall(Function *F, ArrayRef<Constant *> Operands,
InlineCost.h 24 class Function;
40 /// \brief Represents the cost of inlining a function.
44 /// smaller values increase the likelihood of the function being inlined.
118 /// Note that threshold is passed into this function. Only costs below the
123 /// Also note that calling this function *dynamically* computes the cost of
128 /// This allows you to calculate the cost of inlining a function via a
134 InlineCost getInlineCost(CallSite CS, Function *Callee, int Threshold);
137 bool isInlineViable(Function &Callee);
  /external/llvm/lib/Analysis/
InstCount.cpp 17 #include "llvm/IR/Function.h"
40 void visitFunction (Function &F) { ++TotalFuncs; }
58 virtual bool runOnFunction(Function &F);
75 // function.
77 bool InstCount::runOnFunction(Function &F) {
  /external/llvm/lib/Target/Hexagon/
HexagonRemoveSZExtArgs.cpp 10 // Pass that removes sign extends for function parameters. These parameters
18 #include "llvm/IR/Function.h"
36 virtual bool runOnFunction(Function &F);
55 bool HexagonRemoveExtendArgs::runOnFunction(Function &F) {
57 for (Function::arg_iterator AI = F.arg_begin(), AE = F.arg_end(); AI != AE;

Completed in 1217 milliseconds

1 2 3 45 6 7 8 91011>>