OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:look
(Results
1626 - 1650
of
8798
) sorted by null
<<
61
62
63
64
65
66
67
68
69
70
>>
/external/chromium_org/native_client_sdk/src/build_tools/tests/
sdktools_test.py
169
# sdktools.tgz has no built-in directories to
look
for. Instead, just
look
/external/chromium_org/native_client_sdk/src/doc/
Makefile
166
@echo "Link check complete;
look
for any errors in the above output " \
171
@echo "Testing of doctests in the sources finished,
look
at the " \
rest-devsite-examples.rst
10
``:backlinks: none`` are required to make the devsite
look
consistent;
200
Look
, ma! I'm expandable!
/external/chromium_org/native_client_sdk/src/doc/devguide/coding/
application-structure.rst
151
SDK (run ``make`` in the example subdirectories) and
look
at the generated
178
Native Client modules: A closer
look
/external/chromium_org/native_client_sdk/src/examples/demo/nacl_io/
nacl_io_demo.c
221
* Given a function name,
look
up its handler function.
222
* @param[in] function_name The function name to
look
up.
/external/chromium_org/net/spdy/
spdy_session_pool.cc
127
//
Look
up the IP address for this session so that we can match
157
//
Look
up the key's from the resolver's cache.
/external/chromium_org/remoting/tools/
zip2msi.py
8
The structure of the input archive or directory should
look
like this:
34
"bind_path" specifies the path where to
look
for binary files referenced by
/external/chromium_org/sandbox/win/src/
filesystem_policy.cc
177
// - go to the broker if the path doesn't
look
like the paths that we push on
181
// It is possible to add a rule to go to the broker in any case; it would
look
/external/chromium_org/third_party/WebKit/Source/web/
WebSearchableFormData.cpp
149
//
Look
for a suitable search text field in a given HTMLFormElement
262
//
Look
for a suitable search text field in the form when a
/external/chromium_org/third_party/WebKit/Tools/TestResultServer/static-dashboards/
webtreemap.js
154
// XXX why do I need an extra -1/-2 here for width/height to
look
right?
173
// layout doesn't
look
very good.
/external/chromium_org/third_party/cld/encodings/compact_lang_det/win/
cld_utf8statetable.cc
17
//
Look
up property of one UTF-8 character and advance over it
75
//
Look
up property of one UTF-8 character and advance over it
/external/chromium_org/third_party/freetype/src/psnames/
psmodule.c
141
/*
Look
for a non-initial dot in the glyph name in order to */
157
/* now
look
up the glyph in the Adobe Glyph List */
/external/chromium_org/third_party/icu/source/common/
rbbirpt.h
124
, {doSlash, 47 /* / */, 49,0, TRUE} // 47
look
-ahead
222
"
look
-ahead",
/external/chromium_org/third_party/icu/source/i18n/
anytrans.cpp
138
ch = text.char32At(start - 1); //
look
back
150
ch = text.char32At(limit); //
look
ahead
/external/chromium_org/third_party/icu/source/test/intltest/
ucdtest.cpp
200
/*
Look
inside ICU_DATA first */
205
// at the time ICU was built, and
look
there.
/external/chromium_org/third_party/libjingle/source/talk/base/
move.h
42
// macro parameter so that the move constructor and move operator= don't
look
149
// scoped_ptr<> that would make it
look
like it should work. C++11 does not
/external/chromium_org/third_party/mesa/src/src/gallium/include/state_tracker/
st_api.h
390
*
Look
up and return the info of a resource for EGLImage.
410
*
Look
up and return the info of an EGLImage.
/external/chromium_org/third_party/openssl/openssl/crypto/ocsp/
ocsp_cl.c
233
/*
Look
single response matching a given certificate ID */
284
/* This function combines the previous ones:
look
up a certificate ID and
/external/chromium_org/third_party/opus/src/silk/
structs.h
157
opus_int la_pitch; /*
Look
-ahead for pitch analysis (samples) */
158
opus_int la_shape; /*
Look
-ahead for noise shape analysis (samples) */
/external/chromium_org/third_party/skia/src/gpu/gl/
GrGpuGL_program.cpp
160
// we rearrange it to
look
like this:
168
// we rearrange it to
look
like this:
/external/chromium_org/third_party/yasm/source/patched-yasm/
INSTALL
151
A warning: not all `configure' scripts
look
for a site script.
175
Look
for the package's source code in directory DIR. Usually
/external/chromium_org/tools/gyp/pylib/gyp/
MSVSUtil.py
130
-
Look
for an explicit path in the VCLinkerTool configuration block.
131
-
Look
for an 'msvs_large_pdb_path' variable.
/external/chromium_org/ui/views/controls/button/
text_button.h
80
// platform's native theme
look
. This handles normal/disabled/hot/pressed
101
// buttons, and checkboxes, that do not depend on native components for
look
and
/external/clang/lib/StaticAnalyzer/Checkers/
MallocOverflowSecurityChecker.cpp
62
/*
Look
for a linear combination with a single variable, and at least
146
// No points-to analysis, just
look
at the member
/external/eigen/doc/
I03_InsideEigenExample.dox
35
Look
at the line of code
67
So let us
look
line by line at our example program, and let's follow Eigen as it compiles it.
94
Let's
look
at this constructor, in src/Core/DenseStorage.h. You can see that there are many partial template specializations of DenseStorages here, treating separately the cases where dimensions are Dynamic or fixed at compile-time. The partial specialization that we are looking at is:
163
This means that we can put almost all the methods and operators in the base class MatrixBase, and have only the bare minimum in the subclasses. If you
look
at the subclasses in Eigen, like for instance the CwiseBinaryOp class, they have very few methods. There are coeff() and sometimes coeffRef() methods for access to the coefficients, there are rows() and cols() methods returning the number of rows and columns, but there isn't much more than that. All the meat is in MatrixBase, so it only needs to be coded once for all kinds of expressions, matrices, and vectors.
250
Let's now
look
at the implementation of this operator=. It resides in the file src/Core/Assign.h.
395
First, writePacket() here is a method on the left-hand side VectorXf. So we go to src/Core/Matrix.h to
look
at its definition:
427
OK, that explains how writePacket() works. Now let's
look
into the packet() call. Remember that we are analyzing this line of code inside copyPacket():
457
We let you
look
up the definition of internal::ploadt in GenericPacketMath.h and the internal::pload in src/Core/arch/SSE/PacketMath.h. It is very similar to the above for internal::pstore.
Completed in 1440 milliseconds
<<
61
62
63
64
65
66
67
68
69
70
>>