HomeSort by relevance Sort by last modified time
    Searched refs:FUNCTION (Results 26 - 50 of 152) sorted by null

12 3 4 5 6 7

  /external/eigen/lapack/
ilazlr.f 21 * INTEGER FUNCTION ILAZLR( M, N, A, LDA )
79 INTEGER FUNCTION ILAZLR( M, N, A, LDA )
dlamch.f 11 * DOUBLE PRECISION FUNCTION DLAMCH( CMACH )
64 DOUBLE PRECISION FUNCTION DLAMCH( CMACH )
168 DOUBLE PRECISION FUNCTION DLAMC3( A, B )
slamch.f 11 * REAL FUNCTION SLAMCH( CMACH )
68 REAL FUNCTION SLAMCH( CMACH )
171 REAL FUNCTION SLAMC3( A, B )
  /external/chromium_org/third_party/openssl/openssl/apps/
progs.h 62 } FUNCTION;
63 DECLARE_LHASH_OF(FUNCTION);
65 FUNCTION functions[] = {
  /external/openssl/apps/
progs.h 62 } FUNCTION;
63 DECLARE_LHASH_OF(FUNCTION);
65 FUNCTION functions[] = {
  /external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/
AstUtil.java 66 if (node.getType() == Token.FUNCTION) {
79 // reader.onloadend = function() {...}
MethodAnnotationChecker.java 31 case Token.FUNCTION:
68 String.format("Duplicate function argument name: %s", paramName));
116 if (node.getType() != Token.FUNCTION) {
127 private void checkFunctionAnnotation(FunctionRecord function) {
128 String functionName = getFunctionName(function.functionNode);
133 && (function.isTopLevelFunction()
134 || (function.enclosingType != null
135 && isPlainTopLevelFunction(function.enclosingFunctionRecord)));
136 Comment jsDocNode = AstUtil.getJsDocNode(function.functionNode);
138 boolean isReturningFunction = valueReturningFunctions.contains(function);
    [all...]
ProtoFollowsExtendsChecker.java 35 case Token.FUNCTION:
90 if (node.getType() == Token.FUNCTION) {
97 FunctionRecord function = getState().getCurrentFunctionRecord(); local
98 InheritanceEntry extendedType = getExtendedTypeToCheck(function);
103 functionsMissingSuperCall.add(function);
108 FunctionRecord function = getState().getCurrentFunctionRecord(); local
109 if (!functionsMissingSuperCall.contains(function)) {
112 InheritanceEntry extendedType = getExtendedTypeToCheck(function);
116 reportErrorAtNodeStart(AstUtil.getFunctionNameNode(function.functionNode),
118 function.name, extendedType.superTypeName))
    [all...]
ReturnAnnotationChecker.java 62 if (node.getType() != Token.FUNCTION) {
73 private void checkFunctionAnnotation(FunctionRecord function) {
74 String functionName = getFunctionName(function.functionNode);
79 && (function.isTopLevelFunction()
80 || (function.enclosingType != null
81 && isPlainTopLevelFunction(function.enclosingFunctionRecord)));
82 Comment jsDocNode = AstUtil.getJsDocNode(function.functionNode);
84 boolean isReturningFunction = valueReturningFunctions.contains(function);
86 function.enclosingType != null && function.enclosingType.isInterface
    [all...]
FunctionReceiverChecker.java 20 + "@suppressReceiverCheck annotation on function declaration.";
41 case Token.FUNCTION: {
68 "Member function can only be bound to 'this' as the receiver");
84 FunctionRecord function = getState().getCurrentFunctionRecord(); local
85 if (function == null) {
88 if (function.isTopLevelFunction()) {
95 nestedFunctionsByName.put(getContext().getNodeText(nameNode), function); local
100 FunctionRecord function = getState().getCurrentFunctionRecord(); local
101 if (function == null) {
104 if (!function.isTopLevelFunction() && !function.isConstructor)
    [all...]
  /external/chromium_org/tools/json_schema_compiler/
cpp_util.py 33 """Translates a namespace name or function name into something more
67 PropertyType.FUNCTION: 'base::Value::TYPE_DICTIONARY',
  /external/owasp/sanitizer/src/main/org/owasp/html/
CssGrammar.java 101 case FUNCTION:
CssTokens.java 188 /** A function name and opening bracket. */
189 FUNCTION,
438 // or more of the following tokens: <ident>, <function>,
544 // ambiguously a function.
    [all...]
  /external/chromium_org/third_party/sqlite/src/src/
date.c 15 ** There is only one exported symbol in this file - the function
54 ** On recent Windows platforms, the localtime_s() function is available
98 ** The function returns the number of successful conversions.
703 ** Process time function arguments. argv[0] is a date-time stamp.
975 ** This function returns the same value as time('now').
989 ** This function returns the same value as date('now').
1003 ** This function returns the same value as datetime('now').
1023 ** This function uses the C-library functions time(), gmtime()
1025 ** as the user-data for the function.
1065 ** This function registered all of the above C functions as SQ
    [all...]
alter.c 25 ** This function is used by SQL generated to implement the
87 ** This C function implements an SQL user function that is used by SQL code
150 /* This function is used by SQL generated to implement the
231 FUNCTION(sqlite_rename_table, 2, 0, 0, renameTableFunc),
233 FUNCTION(sqlite_rename_trigger, 2, 0, 0, renameTriggerFunc),
236 FUNCTION(sqlite_rename_parent, 3, 0, 0, renameParentFunc),
249 ** This function is used to create the text of expressions of the form:
329 ** pTab->zName if this function is being called to code part of an
376 ** If the table is a system table, this function leaves an error messag
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSGrammar.y 117 case FUNCTION:
262 %token <string> FUNCTION
356 %type <value> function
1652 function: label
    [all...]
  /external/chromium_org/third_party/skia/third_party/lua/src/
luac.c 117 #define FUNCTION "(function()end)();"
124 *size=sizeof(FUNCTION)-1;
125 return FUNCTION;
388 (f->linedefined==0)?"main":"function",s,
394 printf("%d local%s, %d constant%s, %d function%s\n",
  /external/chromium_org/v8/src/
runtime-profiler.cc 25 // Number of times a function has to be seen on the stack before it is
28 // If the function optimization was disabled due to high deoptimization count,
29 // but the function is hot and has been seen on the stack this number of times,
30 // then we try to reenable optimization for this function.
32 // If a function does not have enough type info (according to
41 // Maximum size in bytes of generate code for a function to allow OSR.
48 // Maximum size in bytes of generated code for a function to be optimized
78 void RuntimeProfiler::Optimize(JSFunction* function, const char* reason) {
79 ASSERT(function->IsOptimizable());
81 if (FLAG_trace_opt && function->PassesFilter(FLAG_hydrogen_filter))
160 JSFunction* function = frame->function(); local
    [all...]
  /external/eigen/blas/
lsame.f 1 LOGICAL FUNCTION LSAME(CA,CB)
  /external/owasp/sanitizer/src/tests/org/owasp/html/
CssFuzzerTest.java 197 CssTokens.TokenType.FUNCTION, Pattern.compile(IDENT + "[(]"));
280 case FUNCTION:
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/script_formatter_worker/
JavaScriptFormatter.js 36 FormatterWorker.JavaScriptFormatter = function(tokenizer, builder)
45 format: function()
54 _peek: function()
62 _next: function()
77 _consume: function(token)
87 _expect: function(token)
94 _expectSemicolon: function()
103 _hasLineTerminatorBeforeNext: function()
111 _parseSourceElements: function(endToken)
119 _parseStatementOrBlock: function()
    [all...]
  /external/mdnsresponder/mDNSShared/
DebugServices.h 170 #define kDebugOutputTypeCustom 0x63757374U // 'cust' - 1st param = function ptr, 2nd param = context
209 @abstract Function ptr for a custom callback to print debug output.
466 /*! @function translate_errno
522 Note: This does not work in a global scope so it must be inside a function.
544 function name, etc.) using the default debugging output method.
575 function name, etc.) and a custom explanation string using the default debugging output method.
607 function name, etc.) using the default debugging output method.
642 function name, etc.) and a custom explanation string using the default debugging output method.
727 function name, etc.) using the default debugging output method then jumps to a label.
754 function name, etc.) and a custom explanation string using the default debugging output method then jumps t (…)
    [all...]
  /external/chromium_org/skia/ext/
recursive_gaussian_convolution_unittest.cc 125 RecursiveFilter recursive_filter(kernel_sigma, RecursiveFilter::FUNCTION);
176 RecursiveFilter recursive_filter(kernel_sigma, RecursiveFilter::FUNCTION);
  /frameworks/native/include/input/
InputEventLabels.h 161 DEFINE_KEYCODE(FUNCTION),
378 DEFINE_FLAG(FUNCTION),
  /external/chromium_org/third_party/skia/tests/
CanvasTest.cpp 18 * function of the form:
30 * The definition of the test step function should be followed by an
275 #define TEST_STEP(NAME, FUNCTION) \
279 FUNCTION (canvas, reporter, this); \
285 #define TEST_STEP_NO_PDF(NAME, FUNCTION) \
290 FUNCTION (canvas, reporter, this); \
    [all...]

Completed in 685 milliseconds

12 3 4 5 6 7