HomeSort by relevance Sort by last modified time
    Searched defs:Function (Results 51 - 75 of 102) sorted by null

1 23 4 5

  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/python-yasm/pyxelator/
genpyx.py 152 class Function(object):
177 if isinstance(node,Function):
433 """ used in Function; may lack an identifier """
ir.py 236 class Function(genpyx.Function, Node):
241 #return "function (%s), returning"%\
244 #return "function returning"
284 return Function(*self.arg_types()+[self[-1]]) # XX self[-1].ctype
302 if isinstance(node,Function):
522 if len(self)>1 and type(self[1])==Function: # isinstance ??
524 function = property(get_function) variable in class:Declarator
566 return self.pointer and self.deref().function
578 " i am a pointer to a function whose last arg is void*
    [all...]
  /external/chromium_org/tools/json_schema_compiler/
model.py 97 - |functions| a map of function names to their model.Function
98 - |events| a map of event names to their model.Function
139 generated code (for example, function results), or
141 example, function parameters)
162 - |functions| a map of function names to their model.Function
252 elif json_type == 'function':
253 self.property_type = PropertyType.FUNCTION
254 # Sometimes we might have an unnamed function, e.g. if it's a propert
    [all...]
  /external/chromium_org/v8/src/
runtime.h     [all...]
runtime.js 10 // it does not push the function onto the stack. This means that you
25 var $Function = global.Function;
30 function EQUALS(y) {
83 function STRICT_EQUALS(x) {
103 function COMPARE(x, ncr) {
146 function ADD(x) {
166 function STRING_ADD_LEFT(y) {
181 function STRING_ADD_RIGHT(y) {
197 function SUB(y)
    [all...]
types.h 43 // Function < Object
51 // Function(R, S, T0, T1, ...) < Function
54 // Both structural Array and Function types are invariant in all parameters;
56 // There is no subtyping relation between Array, Function, or Context types
200 V(Function, 1u << 18 | REPRESENTATION(kTaggedPtr)) \
343 static FunctionHandle Function(
347 static TypeHandle Function(TypeHandle result, Region* region) {
348 return Function(result, Any(region), 0, region);
350 static TypeHandle Function(
352 FunctionHandle function = Function(result, Any(region), 1, region); local
358 FunctionHandle function = Function(result, Any(region), 2, region); local
366 FunctionHandle function = Function(result, Any(region), 3, region); local
    [all...]
  /external/chromium_org/v8/test/webkit/fast/js/
Object-getOwnPropertyNames.js 26 function argumentsObject() { return arguments; };
37 // Function objects
38 "new Function()": "['arguments', 'caller', 'length', 'name', 'prototype']",
39 "(function(){var x=new Function();x.__proto__=[1,2,3];return x;})()": "['arguments', 'caller', 'length', 'name', 'prototype']",
44 "(function(){var x=new String('');x.__proto__=[1,2,3];return x;})()": "['length']",
50 "(function(){var x=[];x.__proto__=[1,2,3];return x;})()": "['length']",
53 "(function(){var x=new Date();x.__proto__=[1,2,3];return x;})()": "[]",
56 "(function(){var x=new RegExp();x.__proto__=[1,2,3];return x;})()": "['global', 'ignoreCase', 'lastIndex', 'multiline', 'source']",
61 "(function(){arguments.__proto__=[1,2,3];return arguments;})()": "['callee', 'length']"
    [all...]
  /external/llvm/bindings/python/llvm/
core.py 28 "Function",
231 self.function = self.module.last
233 self.function = self.module.first
239 if not isinstance(self.function, Function):
241 result = self.function
243 self.function = self.function.prev
245 self.function = self.function.nex
    [all...]
  /external/llvm/tools/llvm-readobj/
ARMWinEHPrinter.cpp 19 // | Function Entry Address |
38 // describing how to unwind the function (c.f. Decoder::decodeOpcodes).
41 // | Function Entry Address |
63 // epilogue of the function.
603 ErrorOr<SymbolRef> Function = getRelocatedSymbol(COFF, Section, Offset);
604 if (!Function)
605 Function = getSymbol(COFF, RF.BeginAddress, /*FunctionOnly=*/true);
611 if (!RF.BeginAddress && !Function)
618 if (Function) {
619 Function->getName(FunctionName)
    [all...]
  /external/llvm/unittests/ExecutionEngine/MCJIT/
MCJITCAPITest.cpp 152 Function = nullptr;
169 Function = LLVMAddFunction(Module, "simple_function",
171 LLVMSetFunctionCallConv(Function, LLVMCCallConv);
173 LLVMBasicBlockRef entry = LLVMAppendBasicBlock(Function, "entry");
195 Function = LLVMAddFunction(Module, "simple_function",
198 LLVMBasicBlockRef entry = LLVMAppendBasicBlock(Function, "entry");
224 Function = LLVMAddFunction(Module, "getGlobal",
226 LLVMSetFunctionCallConv(Function, LLVMCCallConv);
228 LLVMBasicBlockRef Entry = LLVMAppendBasicBlock(Function, "entry");
327 LLVMValueRef Function;
    [all...]
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
statetracker.py 322 """Computes the edit distance and list from the function params to the docs.
328 params: The parameter list for the function declaration.
530 class Function(object):
531 """Data about a JavaScript function.
534 block_depth: Block depth the function began at.
535 doc: The DocComment associated with the function.
536 has_return: If the function has a return value.
537 has_this: If the function references the 'this' object.
538 is_assigned: If the function is part of an assignment.
539 is_constructor: If the function is a constructor
    [all...]
  /external/chromium_org/third_party/closure_linter/closure_linter/
statetracker.py 428 # Handles the case of a comment on "function foo () {}"
446 """Computes the edit distance and list from the function params to the docs.
452 params: The parameter list for the function declaration.
652 class Function(object):
653 """Data about a JavaScript function.
656 block_depth: Block depth the function began at.
657 doc: The DocComment associated with the function.
658 has_return: If the function has a return value.
659 has_this: If the function references the 'this' object.
660 is_assigned: If the function is part of an assignment
    [all...]
  /external/chromium_org/third_party/mesa/src/src/mesa/drivers/osmesa/
osmesa.c 189 * function. Otherwise, return NULL.
290 * Return pointer to an optimized triangle function if possible.
325 /* Override for the swrast triangle-selection function. Try to use one
705 /* Initialize device driver function table */
887 * _mesa_add_renderbuffer() function will create a "wrapper" renderbuffer
908 * osmesa_renderbuffer_storage() function to get called.
    [all...]
  /external/llvm/include/llvm/IR/
Function.h 1 //===-- llvm/Function.h - Class to represent a single function --*- C++ -*-===//
10 // This file contains the declaration of the Function class, which represents a
11 // single function/procedure in LLVM.
13 // A function basically consists of a list of basic blocks, a list of arguments,
36 : public SymbolTableListTraits<BasicBlock, Function> {
49 static ValueSymbolTable *getSymTab(Function *ItemParent);
55 : public SymbolTableListTraits<Argument, Function> {
66 static ValueSymbolTable *getSymTab(Function *ItemParent);
71 class Function : public GlobalObject, public ilist_node<Function>
    [all...]
  /external/llvm/lib/MC/MCAnalysis/
MCModuleYAML.cpp 40 // 1- A StringMatcher function for thousands of entries would incur
114 struct Function {
121 std::vector<Function> Functions;
132 LLVM_YAML_IS_SEQUENCE_VECTOR(llvm::MCModuleYAML::Function)
154 template <> struct MappingTraits<MCModuleYAML::Function> {
155 static void mapping(IO &IO, MCModuleYAML::Function &Fn);
206 void MappingTraits<MCModuleYAML::Function>::mapping(IO &IO,
207 MCModuleYAML::Function &F) {
336 MCModuleYAML::Function &F = YAMLModule.Functions.back();
401 typedef std::vector<MCModuleYAML::Function>::const_iterator FuncIt
    [all...]
  /external/mesa3d/src/mesa/drivers/osmesa/
osmesa.c 189 * function. Otherwise, return NULL.
290 * Return pointer to an optimized triangle function if possible.
325 /* Override for the swrast triangle-selection function. Try to use one
705 /* Initialize device driver function table */
887 * _mesa_add_renderbuffer() function will create a "wrapper" renderbuffer
908 * osmesa_renderbuffer_storage() function to get called.
    [all...]
  /external/deqp/modules/gles3/functional/
es3fPrimitiveRestartTests.cpp 82 enum Function
91 PrimitiveRestartCase (Context& context, const char* name, const char* description, PrimitiveType primType, IndexType indexType, Function function, bool beginWithRestart, bool endWithRestart, bool duplicateRestarts);
122 Function m_function;
131 PrimitiveRestartCase::PrimitiveRestartCase (Context& context, const char* name, const char* description, PrimitiveType primType, IndexType indexType, Function function, bool beginWithRestart, bool endWithRestart, bool duplicateRestarts)
135 , m_function (function)
506 // Draw with the appropriate GLES3 draw function.
686 for (int function = 0; function < (int)PrimitiveRestartCase::FUNCTION_LAST; function++
    [all...]
  /external/giflib/
gif_lib.h 55 int Function; /* The block function code */
251 int Function,
  /external/clang/include/clang/Sema/
Overload.h 41 OR_No_Viable_Function, ///< No viable function found.
43 OR_Deleted ///< Succeeded, but refers to a deleted function.
63 ICK_Function_To_Pointer, ///< Function-to-pointer (C++ 4.3)
146 /// function-to-pointer conversion.
183 /// \brief Whether we're binding to a function lvalue.
190 /// non-static member function without a ref-qualifier.
259 /// a conversion function (12.3.2), the initial standard
261 /// object parameter of the conversion function.
273 /// conversion function was resolved from an overloaded set having
281 /// ConversionFunction - The function that will perform th
    [all...]
  /external/clang/lib/Sema/
AnalysisBasedWarnings.cpp 201 // Skip function calls which are qualified with a templated class.
246 // If the exit block is unreachable, skip processing the function.
410 enum { Function, Block, Lambda } funMode;
433 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(Func))
434 isTemplateInstantiation = Function->isTemplateInstantiation();
442 D.funMode = Function;
478 if (funMode == Function) {
497 /// function that should return a value. Check that we don't fall off the end
498 /// of a noreturn function. We assume that functions and blocks not marked
533 // FIXME: Function try bloc
    [all...]
SemaAccess.cpp 92 // the class has access. A local class of a member function
93 // may access the same names that the member function itself
111 FunctionDecl *Function = cast<FunctionDecl>(DC);
112 Functions.push_back(Function->getCanonicalDecl());
113 if (Function->getFriendObjectKind())
114 DC = Function->getLexicalDeclContext();
116 DC = Function->getDeclContext();
489 /// Determines whether the given friend function matches anything in
508 /// Determines whether the given friend function template matches
767 // non-static member function is a protected member of its namin
    [all...]
  /external/deqp/modules/gles2/functional/
es2fShaderTextureFunctionTests.cpp 21 * \brief Texture access function tests.
48 enum Function
60 inline bool functionHasProj (Function function)
62 return function == FUNCTION_TEXTUREPROJ ||
63 function == FUNCTION_TEXTUREPROJ3 ||
64 function == FUNCTION_TEXTUREPROJLOD ||
65 function == FUNCTION_TEXTUREPROJLOD3;
68 inline bool functionHasLod (Function function)
77 Function function; member in struct:deqp::gles2::Functional::__anon24525::TextureLookupSpec
422 Function function = m_lookupSpec.function; local
    [all...]
  /external/clang/lib/CodeGen/
CGObjCGNU.cpp 44 /// Class that lazily initialises the runtime function. Avoids inserting the
45 /// types and the function declaration into a module if they're not used, and
51 llvm::Constant *Function;
57 : CGM(nullptr), FunctionName(nullptr), Function(nullptr) {}
59 /// Initialises the lazy function with the name, return type, and the types
66 Function = nullptr;
79 if (!Function) {
85 Function =
91 return Function;
93 operator llvm::Function*() {
    [all...]
  /external/chromium_org/gpu/command_buffer/
build_gles2_cmd_buffer.py 1265 # A function info object specifies the type and other special data for the
1266 # command that will be generated. A base function info object is generated by
1267 # parsing the "cmd_buffer_functions.txt", one for each function in the
1268 # file. These function info objects can be augmented and their values can be
1271 # Must match function names specified in "cmd_buffer_functions.txt".
1275 # decoder_func: defines which function to call in the decoder to execute the
1278 # gl_test_func: GL function that is expected to be called when testing.
1280 # them based on the GL function arguments.
1281 # gen_cmd: Whether or not this function geneates a command. Default = True.
1299 # gen_func: Name of function that generates GL resource for correspondin
    [all...]
  /external/chromium_org/v8/test/cctest/
test-types.cc 147 SignedFunction1 = Type::Function(SignedSmall, SignedSmall, region);
148 NumberFunction1 = Type::Function(Number, Number, region);
149 NumberFunction2 = Type::Function(Number, Number, Number, region);
150 MethodFunction = Type::Function(String, Object, 0, region);
232 return Type::Function(result, receiver, 0, region_);
236 TypeHandle type = Type::Function(result, receiver, 1, region_);
242 return Type::Function(result, arg1, arg2, region_);
303 case 7: { // function
307 TypeHandle type = Type::Function(result, receiver, arity, region_);
649 void Function() {
    [all...]

Completed in 1803 milliseconds

1 23 4 5