HomeSort by relevance Sort by last modified time
    Searched full:integral (Results 1 - 25 of 1168) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/compile/slang/tests/F_set_target_api_foo/
stderr.txt.expect 1 error: invalid integral value 'foo' in '-target-api foo'
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/tr1/
exp_integral.tcc 63 * @brief Return the exponential integral @f$ E_1(x) @f$
67 * The exponential integral is given by
72 * @param __x The argument of the exponential integral function.
73 * @return The exponential integral.
101 * @brief Return the exponential integral @f$ E_1(x) @f$
104 * The exponential integral is given by
109 * @param __x The argument of the exponential integral function.
110 * @return The exponential integral.
137 * @brief Return the exponential integral @f$ E_n(x) @f$
140 * The exponential integral is given b
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/tr1/
exp_integral.tcc 63 * @brief Return the exponential integral @f$ E_1(x) @f$
67 * The exponential integral is given by
72 * @param __x The argument of the exponential integral function.
73 * @return The exponential integral.
101 * @brief Return the exponential integral @f$ E_1(x) @f$
104 * The exponential integral is given by
109 * @param __x The argument of the exponential integral function.
110 * @return The exponential integral.
137 * @brief Return the exponential integral @f$ E_n(x) @f$
140 * The exponential integral is given b
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/tr1/
exp_integral.tcc 63 * @brief Return the exponential integral @f$ E_1(x) @f$
67 * The exponential integral is given by
72 * @param __x The argument of the exponential integral function.
73 * @return The exponential integral.
101 * @brief Return the exponential integral @f$ E_1(x) @f$
104 * The exponential integral is given by
109 * @param __x The argument of the exponential integral function.
110 * @return The exponential integral.
137 * @brief Return the exponential integral @f$ E_n(x) @f$
140 * The exponential integral is given b
    [all...]
  /prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/tr1/
exp_integral.tcc 63 * @brief Return the exponential integral @f$ E_1(x) @f$
67 * The exponential integral is given by
72 * @param __x The argument of the exponential integral function.
73 * @return The exponential integral.
101 * @brief Return the exponential integral @f$ E_1(x) @f$
104 * The exponential integral is given by
109 * @param __x The argument of the exponential integral function.
110 * @return The exponential integral.
137 * @brief Return the exponential integral @f$ E_n(x) @f$
140 * The exponential integral is given b
    [all...]
  /prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/tr1/
exp_integral.tcc 63 * @brief Return the exponential integral @f$ E_1(x) @f$
67 * The exponential integral is given by
72 * @param __x The argument of the exponential integral function.
73 * @return The exponential integral.
101 * @brief Return the exponential integral @f$ E_1(x) @f$
104 * The exponential integral is given by
109 * @param __x The argument of the exponential integral function.
110 * @return The exponential integral.
137 * @brief Return the exponential integral @f$ E_n(x) @f$
140 * The exponential integral is given b
    [all...]
  /prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/tr1/
exp_integral.tcc 63 * @brief Return the exponential integral @f$ E_1(x) @f$
67 * The exponential integral is given by
72 * @param __x The argument of the exponential integral function.
73 * @return The exponential integral.
101 * @brief Return the exponential integral @f$ E_1(x) @f$
104 * The exponential integral is given by
109 * @param __x The argument of the exponential integral function.
110 * @return The exponential integral.
137 * @brief Return the exponential integral @f$ E_n(x) @f$
140 * The exponential integral is given b
    [all...]
  /prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/include/tr1/
exp_integral.tcc 63 * @brief Return the exponential integral @f$ E_1(x) @f$
67 * The exponential integral is given by
72 * @param __x The argument of the exponential integral function.
73 * @return The exponential integral.
101 * @brief Return the exponential integral @f$ E_1(x) @f$
104 * The exponential integral is given by
109 * @param __x The argument of the exponential integral function.
110 * @return The exponential integral.
137 * @brief Return the exponential integral @f$ E_n(x) @f$
140 * The exponential integral is given b
    [all...]
  /external/clang/test/SemaCXX/
enum-bitfield.cpp 17 enum E : Z(); // expected-error{{integral constant expression must have integral or unscoped enumeration type, not 'Z'}}
new-array-size-conv.cpp 6 operator int () const { return ValueLength; } // expected-note 3{{conversion to integral type 'int' declared here}}
22 (void)new int[ValueInt(10)]; // expected-warning{{implicit conversion from array size expression of type 'ValueInt' to integral type 'int' is a C++11 extension}}
24 (void)new int[ValueBoth()]; // expected-error{{ambiguous conversion of array size expression of type 'ValueBoth' to an integral or enumeration type}}
26 (void)new int[TwoValueInts()]; // expected-error{{ambiguous conversion of array size expression of type 'TwoValueInts' to an integral or enumeration type}}
switch-0x.cpp 5 explicit operator int(); // expected-note{{conversion to integral type}}
constant-expression.cpp 3 // In several places, C++ requires expressions that evaluate to an integral
6 // initializers, and as integral or enumeration non-type template arguments.
7 // An integral constant-expression can involve only literals, enumerators,
8 // const variables or static data members of integral or enumeration types
10 // literals can appear only if they are cast to integral or enumeration types.
91 case (1/0, 1): // expected-error {{not an integral constant expression}} expected-note {{division by zero}}
92 case (int)(1/0, 2.0): // expected-error {{not an integral constant expression}} expected-note {{division by zero}}
93 case __imag(1/0): // expected-error {{not an integral constant expression}} expected-note {{division by zero}}
94 case (int)__imag((double)(1/0)): // expected-error {{not an integral constant expression}} expected-note {{division by zero}}
103 S<p> s; // expected-error {{not an integral constant expression}
    [all...]
  /external/webkit/LayoutTests/fast/dom/NodeList/script-tests/
nodelist-item-call-as-function.js 1 description('This tests that items in a NodeList can be retrieved directly by calling as a function with an integral index parameter, starting from 0.<br>It means NodeList[0] and NodeList(0) both work.');
  /external/clang/test/SemaObjC/
objc-container-subscripting-2.m 19 array[f] = array; // expected-error {{indexing expression is invalid because subscript type 'float' is not an integral or Objective-C pointer type}}
20 return array[3.14]; // expected-error {{indexing expression is invalid because subscript type 'double' is not an integral or Objective-C pointer type}}
  /external/clang/test/Parser/
cxx0x-lambda-expressions.cpp 40 int a4[1] = {[&b] = 1 }; // expected-error{{integral constant expression must have integral or unscoped enumeration type, not 'const int *'}}
42 int a6[1] = {[this] = 1 }; // expected-error{{integral constant expression must have integral or unscoped enumeration type, not 'C *'}}
  /external/clang/test/Sema/
static-assert.c 3 _Static_assert("foo", "string is nonzero"); // expected-error {{static_assert expression is not an integral constant expression}}
bitfield.c 16 float xx : 4; // expected-error {{bit-field 'xx' has non-integral type}}
26 float : 12; // expected-error {{anonymous bit-field has non-integral type 'float'}}
40 double : 2; // expected-error{{anonymous bit-field has non-integral type 'double'}}
  /external/webkit/LayoutTests/fast/dom/NodeList/
nodelist-item-call-as-function-expected.txt 1 This tests that items in a NodeList can be retrieved directly by calling as a function with an integral index parameter, starting from 0.
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/
stdint.h 30 /* Exact integral types. */
133 /* Largest integral types. */
157 /* Limits of integral types. */
159 /* Minimum of signed integral types. */
164 /* Maximum of signed integral types. */
170 /* Maximum of unsigned integral types. */
177 /* Minimum of signed integral types having a minimum size. */
182 /* Maximum of signed integral types having a minimum size. */
188 /* Maximum of unsigned integral types having a minimum size. */
195 /* Minimum of fast signed integral types having a minimum size. *
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/
stdint.h 30 /* Exact integral types. */
133 /* Largest integral types. */
157 /* Limits of integral types. */
159 /* Minimum of signed integral types. */
164 /* Maximum of signed integral types. */
170 /* Maximum of unsigned integral types. */
177 /* Minimum of signed integral types having a minimum size. */
182 /* Maximum of signed integral types having a minimum size. */
188 /* Maximum of unsigned integral types having a minimum size. */
195 /* Minimum of fast signed integral types having a minimum size. *
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/
stdint.h 30 /* Exact integral types. */
133 /* Largest integral types. */
157 /* Limits of integral types. */
159 /* Minimum of signed integral types. */
164 /* Maximum of signed integral types. */
170 /* Maximum of unsigned integral types. */
177 /* Minimum of signed integral types having a minimum size. */
182 /* Maximum of signed integral types having a minimum size. */
188 /* Maximum of unsigned integral types having a minimum size. */
195 /* Minimum of fast signed integral types having a minimum size. *
    [all...]
  /external/clang/test/CXX/expr/expr.const/
p5-0x.cpp 3 // If an expression of literal class type is used in a context where an integral
5 // non-explicit conversion function to an integral or unscoped enumeration type
46 // an integral constant expression
53 // value [...] shall be an integral constant expression.
63 // integral constant expression
69 // [dcl.array]p1: If the constant-expression is present, it shall be an integral
78 // [class.bit]p1: The constasnt-expression shall be an integral constant
  /bionic/libm/src/
s_truncf.c 18 * Return x rounded toward 0 to integral value
43 if((i0&i)==0) return x; /* x is integral */
49 else return x; /* x is integral */
  /external/kernel-headers/original/linux/
resource.h 27 long ru_ixrss; /* integral shared memory size */
28 long ru_idrss; /* integral unshared data size */
29 long ru_isrss; /* integral unshared stack size */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
resource.h 27 long ru_ixrss; /* integral shared memory size */
28 long ru_idrss; /* integral unshared data size */
29 long ru_isrss; /* integral unshared stack size */

Completed in 847 milliseconds

1 2 3 4 5 6 7 8 91011>>